@charset "UTF-8";
#wrapper{
    overflow-x: hidden;
}
 /* -----------------------------------------------------------
	reset
----------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html, body {
	height: 100%;
}
table, tr, th, td{
	font-size: 100%;
	font: inherit;
	vertical-align: middle;
}
i{
	font-style:italic;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align:top;
	border: 0;
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

 /* -----------------------------------------------------------
	共通装飾等
----------------------------------------------------------- */
body{
font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ Pro W4", "Hiragino Maru Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 0.9em;
	line-height: 1.6em;
	color: #333;
	width: 100%;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width:768px){
    body{
padding-top: 65px;
    }   
}
a{
    color: #333;
    text-decoration:none;
}
#sub-container a {
     text-decoration: underline;
     color: #C7000A;
}
.description a {
    text-decoration: underline;
    color: #C7000A;
}
#sub-container a:hover{
    color: #333;
     text-decoration: underline;
}
.inner{
	max-width:980px;
	margin:0 auto;
	width:100%;
	box-sizing: border-box;
}
img{
	-webkit-backface-visibility: hidden;
}
a:hover img{
	filter: alpha(opacity=70);
	opacity: 0.70;
}
.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }

@media screen and (max-width:980px){
.inner{
	width:95%;
	margin:0 auto;
}
img{
max-width: 100%;
height: auto;
width /***/:auto;　
}
}

/* -----------------------------------------------------------
	プログレスバー
----------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #EEEEEE;
  z-index: 99999999999;
}
.progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #C7000A;
  height: 100%;
  width: 0;
}
@media screen and (max-width:768px){
.progress {
  height:4px;
}
}

/* -----------------------------------------------------------
	固定サイドバー
----------------------------------------------------------- */
#sidebar {
	padding:24px 0 24px 0;
    box-sizing: border-box;
	width: 220px;
	height: 100%;
	position: fixed;
	background: #fff;
	text-align: left;
    z-index:9999;
    overflow-y: auto;
    box-shadow: 1px 1px 2px #ccc;
}
#sidebar h1{
    width: 172px;
    height: 140px;
    margin-left: 24px;
    margin-bottom: 60px;
}
#sidebar h1 img{
    width: 100%;
}
#sidebar .sns{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
#sidebar .sns li{
    margin: 8px;
}
#global-nav ul {
	list-style: none;
	margin-left: 0;
    margin-top: 0;
}
#global-nav > ul > li {
	position: relative;
    overflow: hidden;
	display: block;
}
#global-nav p,
#global-nav a {
	text-decoration: none;
	display: block;
	padding: 10px 24px;
	-moz-transition: background-color .3s linear;
	-webkit-transition: background-color .3s linear;
	transition: background-color .3s linear;
}
#global-nav .sub-menu.is-active > p,
#global-nav p:hover,
#global-nav .sub-menu.is-active > a,
#global-nav a:hover {
	color: #fff;
	background-color: #000 !important;
}
#global-nav .sub-menu-nav a,
#global-nav .sub-menu:hover .sub-menu-nav {
	width: auto;
}

/* sub-menu icon */
#global-nav .sub-menu > p,
#global-nav .sub-menu > a {
	position: relative;
    cursor: pointer;
}
#global-nav .sub-menu > p:after {
	content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 4px solid #000;
}
#global-nav .sub-menu.current > p:after {
    border-left: 4px solid #fff;
}
#global-nav .sub-menu.current >  p{
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(left,  #ffffff 0%, #ffffff 89%, #000000 89%, #000000 100%, #000000 100%, #000000 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #ffffff 0%,#ffffff 89%,#000000 89%,#000000 100%,#000000 100%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #ffffff 0%,#ffffff 89%,#000000 89%,#000000 100%,#000000 100%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
transition:0.3s linear;
}

#global-nav .sub-menu.current > p:hover,
#global-nav .sub-menu.is-active p{
	color: #fff;
	background: #000 !important;
}
/* sub-menu */
#global-nav .sub-menu-nav h2{
    font-size: 1.4rem;
    font-weight: bold;
    width: 100%;
    padding:46px 24px 0 26px;
}
#global-nav .sub-menu-nav h3{
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    padding:20px 0 0 0;
}
#global-nav .sub-menu-nav {
	position: fixed;
	background:url("../images/common/sub-menu_bg.png"),url("../images/common/submenu_bg.png") no-repeat bottom right;
	color: #fff;
	top: 0;
	padding-top: 0;
    padding-bottom: 50px;
	left: 220px;
	width: 0;
	overflow: hidden;
	-moz-transition: width .2s ease-out;
	-webkit-transition: width .2s ease-out;
	transition: width .2s ease-out;
    height: 600px;
}
#global-nav .sub-menu-nav ul{
    float: left;
    padding: 10px 24px 24px 24px;
}
#global-nav .sub-menu-nav ul li a{
	padding:8px 8px 3px 8px;
    display: block;
}
#global-nav .sub-menu.is-active > p:after,
#global-nav .sub-menu.is-active > a:after,
#global-nav .sub-menu > p:hover:after,
#global-nav .sub-menu > a:hover:after{
	border-left: 4px solid #fff;
}
#global-nav .sub-menu-nav a {
	color: #fff;
}
#global-nav .sub-menu-nav a:hover {
	color: #000;
	background: #fff !important;
    text-decoration: none;
}

/* sub-menu2 */
#global-nav .sub-menu2 > p {
	position: relative;
    cursor: pointer;
}
#global-nav .sub-menu2.is-active2 > p {
	color: #fff;
    background: #000;
}

/* sub-menu2 icon */
#global-nav .sub-menu2  > p:after {
	content:url("../images/common/plus.png");
	position: absolute;
	top:25%;
	right:8px;
	margin: auto;
}
#global-nav .sub-menu2.is-active2 > p:after {
	content:url("../images/common/minus.png");
    position: absolute;
	top:25%;
	right:8px;
	margin: auto;
}
#global-nav .sub-menu2 > p.is-active2 {
    background: #000;
    color: #fff;
}
#global-nav .sub-menu2 > p:hover:after{
content:url("../images/common/plus_w.png");
}
#global-nav .sub-menu2.is-active2 > p:after,
#global-nav .sub-menu2 > p.is-active2:after {
	content:url("../images/common/minus.png");
}

/* sub-menu2 */
#global-nav .sub-menu-nav2 {
	font-size: 14px;
	display: none;
}
#global-nav .sub-menu-nav2 a {
	padding:8px 24px;
    background: #ccc;
    border-bottom: 1px #fff solid;
}
#global-nav .sub-menu-nav2 a:hover {
	background: #fff;
    color: #fff;
}
#global-nav .sub-menu-nav2 a:after:hover {
	content:url("../images/common/minus.png");
    position: absolute;
	top:25%;
	right:8px;
	margin: auto;
}
main{
    margin-left:  220px;
    box-sizing: border-box;
}
@media screen and (max-width:768px){
#sidebar {
    display: none;
    }
main{
    margin-left:  0;
}
}

/* -----------------------------------------------------------
	ヘッダー
----------------------------------------------------------- */
header #headnav{
background: #000;
    padding:16px 16px 8px 16px;
    box-sizing: border-box;
}
header #headnav ul{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
}
header #headnav li{
    margin-right: 24px;
    z-index:999;
}
header #headnav li a{
    color: #fff;
    padding-left:25px;
}
header #headnav li:first-child a{
    background: url("../images/common/ic_kikin.png") no-repeat left 3px;
}
header #headnav li:nth-child(2) a{
    background: url("../images/common/ic_access.png") no-repeat left 3px;
}
header #headnav li:nth-child(3) a{
    background: url("../images/common/ic_contact.png") no-repeat left 3px;
}
header #headnav li:nth-child(4) a{
    background: url("../images/common/ic_sitemap.png") no-repeat left 3px;
}
header #headnav li:last-child a{
    background: url("../images/common/ic_language.png") no-repeat left 3px;
}
header #user{
background: #fff;
    padding:5px 16px 5px 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 999;
}
header #user ul{
    margin-right:40px;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    z-index: 99;
    position:sticky;
}
header #user li{
    width: auto;
    display: table-cell;
    vertical-align: middle;
    line-height: 1.3em;
}
header #user li a{
    display: block;
    padding-right:16px;
    margin-right: 16px;
    border-right: 1px #000 solid;
}
header #user li a:hover{
    text-decoration: underline;
    color: #C7000A;
}
header #user li:last-child a{
  border:none;
}
header #user p {
    height: 100%;
    display: block;
    vertical-align: middle;
    background: #C7000A;
    position: absolute;
    top: 0;
    right: 0;
    padding:0 8px 3px 80px;
    box-sizing: border-box;
background-image:linear-gradient(23deg, #fff 50%, #C7000A 50.5%);
background-image:-webkit-linear-gradient(23deg, #fff 50%, #C7000A 50.5%);
background-image:-moz-linear-gradient(23deg, #fff 50%, #C7000A 50.5%);
background-image:-ms-linear-gradient(23deg, #fff 50%, #C7000A 50.5%);
    z-index:55
}
header #user p a{
   color: #fff;
    padding-left:16px;
    display: inline-block;
    vertical-align: middle;
    background: url("../images/common/ic_search.png") no-repeat left 50%;
}
@media screen and (max-width:992px){
header #user ul{
margin-right: 55px;
    flex-wrap: wrap;
}
}
@media screen and (max-width:768px){
header #headnav,
    header #user{
        display: none;
}
    header h1{
        background: #fff;
        position:fixed;
        z-index: 999999999;
        width: 100%;
        top: 0;
    }
    header h1 img{
        width: 180px;
        margin:13px 24px 3px 16px;
    }
}
/* -----------------------------------------------------------
	フッター
----------------------------------------------------------- */
footer{
    background: #000;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    display:table;
    color: #fff;
}
footer .logo{
    text-align: center;
    width: 368px;
    background: #fff;
    display: table-cell;
    vertical-align: middle;
}
footer .info{
    padding: 32px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
footer .info a{
    color: #fff;
}
footer .info .footnav{
    overflow: hidden;
    display:flex;
    flex-wrap:wrap;
}
footer .info .footnav ul{
   /* float: left;*/
    margin-right: 60px;
    font-size: 0.8rem;
       max-width: 250px;
}
footer .info .footnav li{
    margin-bottom: 6px;
    line-height: 1.2rem;
    margin-top: 6px;
}
footer .copyright{
    padding: 32px 32px 8px 32px;
    font-size: 0.8rem;
}
@media screen and (max-width:768px) {
footer{
    display:block;
}
footer .logo{
    width: 100%;
    display:block;
    padding:29px 16px;
    box-sizing: border-box;
}
footer .logo img{
    width: 279px;
    }
footer .info{
    padding: 24px;
    display:block;
}
footer .info .wrapper {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
footer .info p{
    text-align: left;
    display: inline-block;
    }
footer .info .footnav ul{
    text-align: left;
    display: inline-block;
    float: left;
    margin-right: 25px;
    font-size: 0.8rem;
    margin-top: 24px;
}
footer .info .footnav ul:last-child{
    margin-right: 0;
    }
footer .info .footnav li{
    margin-bottom: 2px;
}
footer .copyright{
    padding: 32px 16px 8px 16px;
    box-sizing: border-box;
    font-size: 0.7rem;
    text-align: center;
}
}

/*トップへ戻る
----------------------------------------*/
#pagetop {
	position: fixed;
	bottom:45px;
	right:24px;
	z-index:99999;
}
#pagetop a {
	display:block;
	background: url(../images/common/pagetop.png);
	width:32px;
	height:21px;
	overflow:hidden;
	text-indent: -9999px;
}
#pagetop a span{
	display:none;
}
#pagetop a:hover {
	filter: alpha(opacity=80); /* IE7以下用 */
	-ms-filter: “alpha(opacity=80)”; /* IE8用 */
	opacity:0.8; /* Firefox 1.5以上, Opera, Safari用 */
}
@media screen and (max-width:768px){

}

/*あなたへのおすすめ
----------------------------------------*/

#recom {
	position: fixed;
    bottom: 85px;
    right: 24px;
    z-index: 99999;
    padding: 8px 10px 8px 10px;
    background-color: #C7000A;
    color: #fff;
    border-radius: 6px;
    width: 128px;
    display: flex;
    align-items: center;
    border: 1px solid #000;
    cursor: pointer;
}
#recom:hover {
	opacity:0.9;
}
#recom img{
	height: 100%;
}
#recom span {
	line-height: 1.2;
    padding-left: 6px;
}
#recom span small {
	font-size: .875em;
}

#recom_win {
	/*display: none;*/
	position: fixed;
	bottom:82px;
	right:22px;
	z-index:99999;
	max-width:500px;
	background: #fff;
    border: 3px solid #C7000A;
    border-radius: 18px;
    box-sizing: border-box;
    margin-left: 24px;
}
#recom_close{
    display: block;
    width: 20px;/*枠の大きさ*/
    height: 20px;/*枠の大きさ*/
    /*background: #CCC;*/
    position: relative;
    margin: 10px 20px 5px auto;
    cursor: pointer;
}

#recom_close::before, #recom_close::after{
    content: "";
    display: block;
    width: 100%;/*バツ線の長さ*/
    height: 2px;/*バツ線の太さ*/
    background: #C7000A;
    transform: rotate(45deg);
    transform-origin:0% 50%;
    position: absolute;
    top: calc(14% - 5px);
    left: 14%;
}

#recom_close::after{
    transform: rotate(-45deg);
    transform-origin:100% 50%;
    left: auto;
    right: 14%;
}
#recom_win h2{
	background: #000;
    color: #fff;
    padding: 10px 40px;
    font-size: 1rem;
}
.recom-list{
    margin: 15px 30px;
}
.recom-list li{
    background-image: url(../images/common/arrow01.png);
    background-repeat: no-repeat;
    background-position: 0px 0.4em;
    padding: 1px 0 1px 16px;
    margin-bottom: 8px;
    word-break: break-word;
    font-weight: bold;
    font-size: 1.0em;
}
.recom-list li p{
    font-weight: normal;
    font-size: 1.0em;
}

@media screen and (max-width:768px){
#recom_win {
	/*display: none;*/
	/*bottom:10px;
	right:0;
    margin: 0 10px;*/
}
}


/*右矢印ボタン
----------------------------------------*/
.button-arrow {
    display:inline-block;
    padding: 16px 100px 16px 24px;
    box-sizing: border-box;
    background-color: #C7000A;
    color: #fff !important;
    background-image: url("../images/common/btn_arrow.png");
    background-repeat: no-repeat;
    background-position:right 16px top 50%;
    opacity:1;
    text-decoration:none !important;
}
.button-arrow:hover{
    opacity:0.8;
}
.button-arrow img{
    vertical-align: middle;
    padding-left: 5px;
}
/*ロゴマウスオン
----------------------------------------*/
.effect-bling {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  
}
.effect-bling img{
	max-width:100%;
	width:auto !important;
}
.effect-bling::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.5, 0, 0.8, 0);
}
.effect-bling:hover img{
	opacity:1;
}
.effect-bling:hover::before {
  animation: bling 0.7s linear 0.7;
pointer-events: none;
}
 
@keyframes bling {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 1;
  }
  20% {
    transform: scale(5) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(10) rotate(45deg);
    opacity: 0.5;
  }
  80% {
    transform: scale(20) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(25) rotate(45deg);
    opacity: 0;
  }
}
/*検索部分
----------------------------------------*/
.spsearch{
	margin-top: 6px;
	position:fixed;
	top: 5px;
	right: 62px;
	z-index: 999999999;
	cursor: pointer;
}
#form-search-box{
	position: fixed;
	z-index: -1;
	background: #fff;
	right:0;
	/* color: #fff; */}
.form-actions{
	position:relative;
}
.form-search-reset {position: absolute;/* overflow:hidden; */width: 30px;height: 30px;/* z-index: 2222222222; */right: 10px;top: 50%;cursor:pointer;}
.dli-reset {
  display: block;
  vertical-align: middle;
  color: #c7000a;
  line-height: 1;
  width: 1.8em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
  text-indent: -9999px;
}

.dli-reset::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.form-actions{
}
.form-resulet-list{
}
.form-resulet-list a{
    font-weight:bold;
    font-size:1.1em;
}
.form-resulet-list a{
   position: relative;
   padding-left: 15px;
   display:block;
  }
 

.form-resulet-list a:after {
   content: "";
   position: absolute;
   top: .4em;
   left: 1px;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   width: 8px;
   height: 8px;
   border-top: 2px solid #c7000a;
   border-right: 2px solid #c7000a;
  }
  .form-resulet-list a:hover:after {
     left: 3px;
  }
.form-tag-list li{
	border:1px solid #ccc;
	padding:3px 10px;
	font-size:0.9em;
}
@media screen and (max-width:768px){
.form-tag-list li{
        padding:3px 5px;
        font-size:0.8em;
}
}

.form-search-more a{
	display:block;
    background: #000;
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    font-size: 1.05em;
}
@media screen and (max-width:768px){
.form-search-more a{
    padding: 15px 5px;
    font-size: 1em;
}
}
.form-search-more a span{
	position:relative;
}
.form-search-more a span:before {
    content: "";
    position: absolute;
    top: .4em;
    right: -35px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}
@media screen and (max-width:768px){
.form-search-more a span:before {
    width: 11px;
    height: 11px;
}
}
.form-search-more a span:after {
    content: "";
    position: absolute;
    top: 0.8em;
    right: -36px;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
}
@media screen and (max-width:768px){
.form-search-more a span:after {
    top: 0.7em;
}
}
.form-search-more a:hover span:before {
    right: -37px;
}
.form-search-more a:hover span:after {
    right: -38px;
}
.form-search-relate a{
	display:block;
	background: #eee;
	padding: 15px 10px 15px 0px;
	text-align: center;
	color: #222;
	width: 300px;
	float:right;
	font-size: 1.05em;
}
@media screen and (max-width:768px){
.form-search-relate a{
        padding: 12px 10px 12px 0px;
        font-size: 1.em;
}
}
.form-search-relate a span{
	position:relative;
}
.form-search-relate a span:before {
    content: "";
    position: absolute;
    top: .5em;
    right: -24px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
  }
 
.form-search-relate a span:after {
    content: "";
    position: absolute;
    top: 0.8em;
    right: -24px;
    width: 12px;
    height: 2px;
    background-color: #222;
  }
.form-search-relate a:hover span:before,.form-search-relate a:hover span:after {
    right: -26px;
}
.search-on {
    position: fixed;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    z-index: 999;
}


/** add */
#form-search-box {
	opacity: 0;
    max-height: calc( 100vh - 76px );
    overflow-y: auto;
}
footer {
	z-index: 1;
	margin-left: 220px;
	width: calc(100% - 220px);
}
.sub-menu-nav {
	display: none;
	max-width: 1000px;
}
#global-nav .sub-menu-nav {
	width: auto;
	height: auto;
	min-height: 600px;
    overflow-y:auto;
    max-height: 100vh;
}
@media screen and (max-width:768px){
	footer {
		margin-left: 0;
		width: 100%;
	}
}
.sub-menu-nav h2 {
	text-decoration: underline;
}
.sub-menu-nav ul li {
	position: relative;
}
.sub-menu-nav ul li:after {
	content: "";
	position: absolute;
	top: 0.9em;
	left: -4px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.fadeIn {
	opacity: 0;
	transition: 2s;
}
.fadeIn.is-show {
	opacity: 1;
}

#wrapper {
	opacity: 0;
	overflow-y: hidden;
}
main {
    padding-bottom: 100px;
}
.ranking{
    margin-left: 220px;
    width: calc(100% - 220px);
    position:fixed;
    bottom:0;
    transition-duration:.6s;
}
@media screen and (max-width: 1400px){
.ranking{
    position:static;
}
}
@media screen and (max-width: 768px){
.ranking {
    margin-left: 0;
    width: 100%;
}
}
.drawer-fixed {
    overflow: auto !important;
    height: 100%;
}
/* 印刷用CSS */
@media print{
#sidebar,#main header,.share,.categorylink,footer,#breadcrumb,.progress,#pagetop,#recom,#about .ranking{
	display:none
}
main{
	margin-left:0;
}
#title{
    padding: 80px;
}
#sub-container{
	width:100%;
	margin:0 auto;
}

}
img.icon{
	width:auto !important;
	height:auto !important;
}
.view-all {
    background-color: #666;
    color: #fff;
    padding: 10px 20px;
}
.view-all:hover {
    color: #fff !important;
    opacity: .8;
}

.tag-list a{
    border: 1px solid #ccc;
    padding: 3px 10px;
    font-size: 0.9em;
    text-decoration: none !important;
    margin-right: 1rem;
    margin-bottom: .5rem
}
.tag-list a.on, .tag-list a:hover{
    background-color: #C7000A;
    color: #fff !important;
}
.tag-list-a {
    text-decoration: none !important;
    color: #333 !important;
    display: block !important;
}
a.tag-list-a:hover{
    color:#C7000A !important;
    text-decoration:underline !important;
}
.text-excerpt {
border-left: 2px solid #C7000A;
    padding-left: 1rem;
    margin-left: 1rem;
    margin-top: 0.6rem;
}

