@charset "UTF-8";
/* CSS Document */


@media screen and (max-width:959px){
	
/*header
************************************************************************/
header{
	width:100%;
	height:120px;
}
header #header_back{
	width:170%;/*headerの背景画像のサイズを調整できる*/
}
header #header_container{
	width:100%;
	height:120px;
	margin:0 auto;
	position:relative;
}
header #header_container #si_logo{
	position:absolute;
	top:50%;
	left:16px;
	transform:translate(16px,-50%);
	width:220px;/*ロゴサイズを調整できる*/
}
header #header_container #light{
	width:50px;/*飾りの電球のサイズを調整できる*/
	position:absolute;
	top:50%;
	left:133px;
	transform:translate(133px,-50%);
}




/*ハンバーガー
************************************************************************/
#hamburger_container{
	display:block;
}
/*label*/
.menu-btn {
	position: fixed;
    top: 35px;
    right: 20px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: white;
}
.menu-btn div{
	height: 50px;
    width: 50px;
	position:absolute;
	top:23px;
	left:13px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #0088C2;
	position:absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}


/*input*/
#hamburger_btn:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#hamburger_btn:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#hamburger_btn:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#hamburger_btn {
    display: none;
}


/*メニュー*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: white;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
	width:80%;
	height:auto;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
.menu-content ul li {
    border-bottom: solid 1px #0088C2;
	width:100%;
	margin:0 auto;
	text-align:center;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    color:#0088C2;
    padding:13px 0;
}
#hamburger_btn:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}










/*main
************************************************************************/
main{
	width:100%;
	margin-top:30px;
	height:auto;
}
main aside{
	float:none;
	width:80%;
	margin:0 auto;
}
main article{
	float:none;
	width:80%;
	margin:0 auto;
}


/*aside　更新情報
******************/
aside h3{
	width:100%;
	height:30px;
	font-size:16px;
	line-height:30px;
}
aside #updateinfo{
	width:100%;
	height:400px;/*更新情報のボックスの高さを調整できる*/
	padding:15px;
}
aside #updateinfo dl{
	margin-bottom:15px;
}
aside #updateinfo dl dt{
	font-size:14px;/*更新日の文字サイズを調整できる*/
	margin-bottom:6px;
}
aside #updateinfo dl .new{
	font-size:15px;/*新連載の文字サイズを調整できる*/
	color:red;/*新連載の文字色を調整できる*/
	margin-bottom:3px;
}
aside #updateinfo dl .text_id{
	font-size:15px;/*更新内容の文字サイズを調整できる*/
	line-height:20px;
	text-indent:-15px;
	padding-left:15px;
}




/*article　項目
****************/
article #flex_contaiter{
	display:block;
	width:100%;
	margin-top:80px;
	height:auto;
}
article .item{
	height:70px;
	width:100%;
	font-size:22px;
	line-height:26px;
	margin-bottom:15px;
}

article .item .btn{
	text-align:center;
	height:70px;
	vertical-align:middle;
	padding:0px;
	border-radius: 12px;
}
article .item .btn br{
	display:none;
}



/*footer
************************************************************************/

footer{
	width:100%;
	margin-top:80px;
	padding-bottom:120px;
}
footer ul{
	margin:0 auto;
	display:flex;
	width:80%;
	flex-wrap:wrap;
	justify-content:space-between;
	/*width:40%;*/
}
footer ul li{
	border:none;
	padding:0px;
	width:45%;
	height:40px;
	line-height:40px;
	border-bottom:1px solid #383835;
}
footer ul li:nth-child(5),footer ul li:nth-child(6) {
	border-bottom:none;
}
footer ul li a{
	color:#383835;
	font-size:14px;
}




























@media screen and (max-width:519px){
	
/*header
************************************************************************/
header{
	width:100%;
	height:90px;
}
header #header_back{
	width:100%;/*headerの背景画像のサイズを調整できる*/
}
header #header_container{
	width:100%;
	height:90px;
	margin:0 auto;
	position:relative;
}
header #header_container #si_logo{
	position:absolute;
	top:50%;
	left:8px;
	transform:translate(8px,-50%);
	width:150px;/*ロゴサイズを調整できる*/
}
header #header_container #light{
	width:40px;/*飾りの電球のサイズを調整できる*/
	position:absolute;
	top:50%;
	left:88px;
	transform:translate(88px,-50%);
}




/*ハンバーガー
************************************************************************/
#hamburger_container{
	display:block;
}
/*label*/
.menu-btn {
    top: 25px;
    right: 10px;
    height: 37px;
    width: 37px;
}
.menu-btn div{
	height: 37px;
    width: 37px;
	position:absolute;
	top:17px;
	left:7px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 23px;
    border-radius: 2px;
    background-color: #0088C2;
    position: absolute;
}
.menu-btn span:before {
    bottom: 7px;
}
.menu-btn span:after {
    top: 7px;
}
/*メニュー*/
.menu-content ul {
	width:85%;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    color:#0088C2;
    padding:12px 0;
}











/*main
************************************************************************/
main{
	width:100%;
	margin-top:30px;
	height:auto;
}
main aside{
	float:none;
	width:80%;
	margin:0 auto;
}
main article{
	float:none;
	width:85%;
	margin:0 auto;
}


/*aside　更新情報
******************/
aside h3{
	height:26px;
	font-size:15px;
	line-height:26px;
}
aside #updateinfo{
	height:310px;/*更新情報のボックスの高さを調整できる*/
	padding:12px;
}
aside #updateinfo dl{
	margin-bottom:10px;
}
aside #updateinfo dl dt{
	font-size:13px;/*更新日の文字サイズを調整できる*/
	margin-bottom:6px;
}
aside #updateinfo dl .new{
	font-size:14px;/*新連載の文字サイズを調整できる*/
	color:red;/*新連載の文字色を調整できる*/
	margin-bottom:3px;
}
aside #updateinfo dl .text_id{
	font-size:14px;/*更新内容の文字サイズを調整できる*/
	line-height:19px;
	text-indent:-14px;
	padding-left:14px;
}




/*article　項目
****************/
article #flex_contaiter{
	display:block;
	width:100%;
	margin-top:60px;
	height:auto;
}
article .item{
	height:70px;
	width:100%;
	font-size:20px;
	line-height:24px;
	margin-bottom:15px;
}

article .item .btn{
	text-align:center;
	height:70px;
	vertical-align:middle;
	padding:0px;
	border-radius: 10px;
}
article .item .btn br{
	display:block;
}

/*ここからボタンの色指定*/
.color_1:hover{
	letter-spacing: 3px;
}
.color_2:hover{
	letter-spacing: 3px;
}
.color_3:hover{
	letter-spacing: 3px;
}
.color_4:hover{
	letter-spacing: 3px;
}
.color_5:hover{
	letter-spacing: 3px;
}
.color_6:hover{
	letter-spacing: 3px;
}
.color_7:hover{
	letter-spacing: 3px;
}
.color_8:hover{
	letter-spacing: 3px;
}
.color_9:hover{
	letter-spacing: 3px;
}
.color_10:hover{
	letter-spacing: 3px;
}
.color_11:hover{
	letter-spacing: 3px;
}
.color_12:hover{
	letter-spacing: 3px;
}
.color_13:hover{
	letter-spacing: 3px;
}
.color_14:hover{
	letter-spacing: 3px;
}
.color_15:hover{
	letter-spacing: 3px;
}
.color_16:hover{
	letter-spacing: 3px;
}
/*ここまで*/


/*footer
************************************************************************/
footer{
	width:100%;
	margin-top:80px;
	padding-bottom:120px;
}
footer ul{
	margin:0 auto;
	display:flex;
	width:90%;
	flex-wrap:wrap;
	justify-content:space-between;
	/*width:40%;*/
}
footer ul li{
	border:none;
	padding:0px;
	width:47%;
	height:40px;
	line-height:40px;
	border-bottom:1px solid #383835;
}
footer ul li a{
	font-size:13px;
}

}












@media screen and (max-width:400px){
/*メニュー*/
.menu-content ul {
	width:85%;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    color:#0088C2;
    padding:8px 0;
}
}







































