/* line 2, scss/core/_style-mixin-reset.scss */
* {
  margin: 0;
  padding: 0;
}

/* line 6, scss/core/_style-mixin-reset.scss */
ul {
  list-style: none;
}

/* line 9, scss/core/_style-mixin-reset.scss */
img {
  border: none;
  vertical-align: bottom;
}

/* line 13, scss/core/_style-mixin-reset.scss */
a {
  border: none;
}

/* line 17, scss/core/_style-mixin-reset.scss */
body {
  font-family: 'Hiragino Kaku Gothic Pro W3','Hiragino Kaku Gothic Pro','Meiryo',Meiryo,'MS PGothic',sans-serif;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0;
}

/* line 25, scss/core/_style-mixin-reset.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 16, scss/graph.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
/* line 27, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollbar {
  -ms-touch-action: none;
  touch-action: none;
  /* MSPointer events - direct all pointer events to js */
}

/* line 28, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollbar.mCS_no_scrollbar {
  -ms-touch-action: auto;
  touch-action: auto;
}

/* line 30, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

/* line 39, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
/* line 54, scss/_jquery.mCustomScrollbar.scss */
.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

/* line 56, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

/* non-visible scrollbar */
/* line 58, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

/* line 63, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

/* RTL direction/left-side scrollbar */
/* line 65, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

/* line 75, scss/_jquery.mCustomScrollbar.scss */
.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

/* scrollbar position: outside */
/* line 77, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0;
}

/* line 83, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
/* line 85, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

/* line 94, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

/* line 96, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

/* line 103, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1;
}

/* line 110, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

/* line 119, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */
}

/* line 122, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */
}

/* line 125, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

/* line 136, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
/* line 147, scss/_jquery.mCustomScrollbar.scss */
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

/* line 152, scss/_jquery.mCustomScrollbar.scss */
.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

/* line 154, scss/_jquery.mCustomScrollbar.scss */
.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* non-visible scrollbar */
/* line 156, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 165, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

/* scrollbar position: outside */
/* line 168, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}

/* line 170, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}

/* line 176, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0;
}

/* line 182, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

/* line 188, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto;
}

/* line 194, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0;
}

/* line 200, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

/* line 211, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}

/* line 213, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
/* line 224, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

/* line 237, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
}

/* line 242, scss/_jquery.mCustomScrollbar.scss */
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

/* line 244, scss/_jquery.mCustomScrollbar.scss */
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

/* non-visible horizontal scrollbar */
/* line 247, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
/* line 250, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

/* RTL direction/left-side scrollbar */
/* line 254, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
/* line 257, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

/* line 259, scss/_jquery.mCustomScrollbar.scss */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

/* line 264, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 269, scss/_jquery.mCustomScrollbar.scss */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 274, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0;
}

/* non-visible horizontal scrollbar */
/* line 280, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
/* line 290, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* line 302, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/* 
----------------------------------------
6.1 THEMES 
----------------------------------------
*/
/* default theme ("light") */
/* line 340, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools {
  opacity: 1.0;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* line 342, scss/_jquery.mCustomScrollbar.scss */
.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

/* line 345, scss/_jquery.mCustomScrollbar.scss */
.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* line 372, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(mCSB_buttons.png);
  /* css sprites */
  background-repeat: no-repeat;
  opacity: 1.0;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* line 381, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /* 
  sprites locations 
  light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
  dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
  */
}

/* line 390, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /* 
  sprites locations
  light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
  dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
  */
}

/* line 399, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /* 
  sprites locations 
  light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
  dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
  */
}

/* line 408, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /* 
  sprites locations 
  light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
  dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
  */
}

/* line 417, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* line 422, scss/_jquery.mCustomScrollbar.scss */
.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* line 27, scss/graph.scss */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  /* line 33, scss/graph.scss */
  html {
    font-size: 87.5%;
  }
}
@media screen and (min-width: 1024px) {
  /* line 37, scss/graph.scss */
  html {
    font-size: 100%;
  }
}
/* line 40, scss/graph.scss */
body {
  font-size: 1.4rem;
  overflow-x: hidden;
}

/* line 69, scss/graph.scss */
#tooltip_wraps {
  position: relative;
  width: 0px;
  height: 0px;
}

/* line 74, scss/graph.scss */
#tooltip {
  position: absolute;
  z-index: 10;
  visibility: hidden;
  padding: 10px 15px;
  border: 3px solid #fff;
  border-radius: 7px;
  background-color: #e0e5ec;
  color: #2c2c2c;
  font-size: 12px;
  width: 165px;
  z-index: 999;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /*&.fukidashi_right{
  	.fukidashi_top{
  		display: none;
  	}
  	.fukidashi_bottom{
  		left:auto;
  		right:20px;
  	}
  }*/
}
/* line 88, scss/graph.scss */
#tooltip p {
  position: solid !important;
}
/* line 91, scss/graph.scss */
#tooltip .title {
  font-size: 13px;
  font-weight: bold;
}
/* line 95, scss/graph.scss */
#tooltip .fukidashi_top, #tooltip .fukidashi_bottom {
  position: absolute;
  width: 14px;
  height: 12px;
}
/* line 100, scss/graph.scss */
#tooltip .fukidashi_top {
  background: url(/common/special/award/2014/sp/img/graph/tooltip_fukidashi_top.png) no-repeat center top;
  top: -12px;
  left: 20px;
  display: none;
}
/* line 106, scss/graph.scss */
#tooltip .fukidashi_bottom {
  background: url(/common/special/award/2014/sp/img/graph/tooltip_fukidashi_bottom.png) no-repeat center top;
  bottom: -12px;
  left: 20px;
  right: auto;
}
/* line 113, scss/graph.scss */
#tooltip.top .fukidashi_top {
  display: block;
}
/* line 116, scss/graph.scss */
#tooltip.top .fukidashi_bottom {
  display: none;
}

/* line 133, scss/graph.scss */
#wrapper {
  width: 100%;
  padding: 0;
}

/* line 138, scss/graph.scss */
#footer {
  margin-top: 0;
}

/* line 142, scss/graph.scss */
#contents {
  background: #38ace3;
}

/* line 146, scss/graph.scss */
#contents_wrap {
  background: #fff;
  -webkit-box-shadow: 3px 3px 0px #208cbf;
  box-shadow: 3px 3px 0px #208cbf;
}

/* line 152, scss/graph.scss */
#head_bar {
  background: #222222;
}
/* line 154, scss/graph.scss */
#head_bar table, #head_bar tbody, #head_bar tr, #head_bar td {
  vertical-align: middle;
}
/* line 157, scss/graph.scss */
#head_bar .title_wrap td {
  padding: 10px;
}
/* line 161, scss/graph.scss */
#head_bar .btn_wrap {
  background: #eceff3;
}
/* line 164, scss/graph.scss */
#head_bar .btn_wrap td {
  width: 38%;
  padding: 2% 3%;
}
/* line 169, scss/graph.scss */
#head_bar .title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
/* line 176, scss/graph.scss */
#head_bar .backchartbtn {
  width: 67%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_back_btn.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#head_bar .backchartbtn:before {
  content: "";
  display: block;
  padding-top: 21%;
}
/* line 57, scss/graph.scss */
#head_bar .backchartbtn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 179, scss/graph.scss */
#head_bar .snsbtns {
  width: 100%;
}
/* line 38, scss/core/_utility.scss */
#head_bar .snsbtns:after {
  content: "";
  display: block;
  clear: both;
}
/* line 182, scss/graph.scss */
#head_bar .snsbtns li {
  float: right;
  margin-left: 5px;
}
/* line 185, scss/graph.scss */
#head_bar .snsbtns li:nth-child(3) {
  width: 16%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_sns_tw.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#head_bar .snsbtns li:nth-child(3):before {
  content: "";
  display: block;
  padding-top: 99%;
}
/* line 57, scss/graph.scss */
#head_bar .snsbtns li:nth-child(3) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 188, scss/graph.scss */
#head_bar .snsbtns li:nth-child(2) {
  width: 16%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_sns_g.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#head_bar .snsbtns li:nth-child(2):before {
  content: "";
  display: block;
  padding-top: 99%;
}
/* line 57, scss/graph.scss */
#head_bar .snsbtns li:nth-child(2) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 191, scss/graph.scss */
#head_bar .snsbtns li:nth-child(1) {
  width: 16%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_sns_fb.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#head_bar .snsbtns li:nth-child(1):before {
  content: "";
  display: block;
  padding-top: 99%;
}
/* line 57, scss/graph.scss */
#head_bar .snsbtns li:nth-child(1) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}

/* line 214, scss/graph.scss */
#graphs_wrap {
  padding: 3%;
  background: url(/common/special/award/2014/img/graph/bg.png);
  border-bottom: solid 2px #e0e5ec;
}
/* line 38, scss/core/_utility.scss */
#graphs_wrap:after {
  content: "";
  display: block;
  clear: both;
}
/* line 220, scss/graph.scss */
#graphs_wrap.loading {
  background: url(/common/special/award/2014/img/graph/loading.gif), url(/common/special/award/2014/img/graph/bg.png);
  background-position: center center,top left;
  background-repeat: no-repeat, repeat;
}
/* line 225, scss/graph.scss */
#graphs_wrap.loading #infos {
  visibility: hidden;
}
/* line 229, scss/graph.scss */
#graphs_wrap .info_wrap1 {
  width: 100%;
}
/* line 230, scss/graph.scss */
#graphs_wrap .info_wrap1 table {
  width: 100%;
}
/* line 235, scss/graph.scss */
#graphs_wrap .info_wrap1:last-child {
  border: none;
}
/* line 239, scss/graph.scss */
#graphs_wrap .info_wrap1 #img {
  width: 28%;
  background: url(/common/special/award/2014/img/graph/head_noimg.png);
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 244, scss/graph.scss */
#graphs_wrap .info_wrap1 #img.has_img {
  background: none;
}
/* line 248, scss/graph.scss */
#graphs_wrap .info_wrap1 .name_wrap {
  vertical-align: top;
  margin-bottom: 3%;
}
/* line 251, scss/graph.scss */
#graphs_wrap .info_wrap1 .name_wrap tr, #graphs_wrap .info_wrap1 .name_wrap tbody {
  vertical-align: top;
}
/* line 254, scss/graph.scss */
#graphs_wrap .info_wrap1 .name_wrap tr:nth-child(1) td {
  vertical-align: top;
}
/* line 257, scss/graph.scss */
#graphs_wrap .info_wrap1 .name_wrap tr:nth-child(2) td {
  vertical-align: bottom;
  padding-left: 3%;
}
/* line 262, scss/graph.scss */
#graphs_wrap .info_wrap1 .name_wrap tr {
  border: none;
}
/* line 266, scss/graph.scss */
#graphs_wrap .info_wrap1 #info_title {
  vertical-align: top;
  padding-left: 3%;
}
/* line 272, scss/graph.scss */
#graphs_wrap .info_wrap1 #info_title dl .title {
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: bold;
  padding: 6px 0;
}
/* line 278, scss/graph.scss */
#graphs_wrap .info_wrap1 #info_title dl .artist {
  font-size: 1.3rem;
  line-height: 1.3rem;
  padding-bottom: 10px;
}
/* line 287, scss/graph.scss */
#graphs_wrap .info_wrap1 #jan_btn .jan_btn {
  padding-left: 3%;
}
/* line 290, scss/graph.scss */
#graphs_wrap .info_wrap1 #jan_btn .jan_key_id {
  width: 100%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_buy_btn.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#graphs_wrap .info_wrap1 #jan_btn .jan_key_id:before {
  content: "";
  display: block;
  padding-top: 15%;
}
/* line 57, scss/graph.scss */
#graphs_wrap .info_wrap1 #jan_btn .jan_key_id span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 295, scss/graph.scss */
#graphs_wrap .info_wrap2 {
  border-top: solid 1px #e0e5ec;
  padding: 3% 0 0 0;
}
/* line 296, scss/graph.scss */
#graphs_wrap .info_wrap2 table {
  width: 100%;
}
/* line 302, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo {
  vertical-align: top;
  border-right: solid 1px #e0e5ec;
  width: 32%;
}
/* line 304, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo table, #graphs_wrap .info_wrap2 #info_memo tbody, #graphs_wrap .info_wrap2 #info_memo tr, #graphs_wrap .info_wrap2 #info_memo td {
  vertical-align: top !important;
}
/* line 307, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo table {
  width: 100%;
  height: 100%;
}
/* line 310, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo table tr:nth-child(2) {
  vertical-align: bottom;
}
/* line 312, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo table tr:nth-child(2) td {
  vertical-align: bottom !important;
}
/* line 319, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo .debut_date {
  padding: 0 10% 0 0;
  font-size: 1.1rem;
  color: #515151;
}
/* line 325, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo .video_id {
  padding: 0 10% 0 0;
  margin-bottom: 7%;
}
/* line 328, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo .video_id .over_btn {
  position: relative;
}
/* line 329, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo .video_id .over_btn:before {
  content: "";
  display: block;
  padding-top: 55%;
}
/* line 335, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_memo .video_id .over_btn img {
  margin-top: -55%;
  position: absolute;
}
/* line 342, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank {
  border-right: solid 1px #e0e5ec;
  text-align: center;
  vertical-align: top;
  width: 38%;
}
/* line 347, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .rank_chart span {
  color: #dc2527;
}
/* line 350, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .chartin span {
  color: #1f68cd;
}
/* line 353, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .inside {
  padding: 4% 0;
  font-size: 1.5rem;
  line-height: 25px;
}
/* line 358, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .inside span {
  font-size: 2.7rem;
  font-weight: bold;
  padding-right: 5px;
}
/* line 365, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .outrange {
  display: none;
  color: #686868;
  font-size: 2.0rem;
  padding: 10px 0 14px 0;
}
/* line 374, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .rank_chart_fukidashi, #graphs_wrap .info_wrap2 #info_rank .chartin_fukidashi {
  font-size: 1.0rem;
  line-height: 1.2rem;
  background-color: #e0e5ec;
  height: 90%;
  position: relative;
  width: 50%;
  border-radius: 5px;
  padding: 4%;
  margin: 0 auto 7px auto;
}
/* line 386, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .chartin_fukidashi {
  width: 80%;
}
/* line 389, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_rank .rank_chart_fukidashi:after, #graphs_wrap .info_wrap2 #info_rank .chartin_fukidashi:after {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  border: 7px solid transparent;
  border-top-color: #e0e5ec;
  top: 100%;
  left: 50%;
  margin-left: -10px;
}
/* line 404, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_graph {
  text-align: center;
  width: 30%;
  padding: 0 0 0 2%;
}
/* line 408, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_graph #pie_graph {
  width: 100%;
  display: block;
}
/* line 412, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_graph p {
  width: 100%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_legend.png") no-repeat;
  position: relative;
  line-height: 20px;
}
/* line 52, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_graph p:before {
  content: "";
  display: block;
  padding-top: 8%;
}
/* line 57, scss/graph.scss */
#graphs_wrap .info_wrap2 #info_graph p span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}

/* line 430, scss/graph.scss */
#chart_wrap {
  padding: 2% 2% 2% 2%;
}
/* line 432, scss/graph.scss */
#chart_wrap.loading {
  width: 100%;
  height: 675px;
  background: url(/common/special/award/2014/img/graph/loading.gif);
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 438, scss/graph.scss */
#chart_wrap.loading #chart_wrap_border {
  visibility: collapse;
}
/* line 442, scss/graph.scss */
#chart_wrap #btn_change_rank {
  width: 100%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_memo.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #btn_change_rank:before {
  content: "";
  display: block;
  padding-top: 11%;
}
/* line 57, scss/graph.scss */
#chart_wrap #btn_change_rank span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 446, scss/graph.scss */
#chart_wrap #sihyou {
  margin-top: 0px !important;
}
/* line 449, scss/graph.scss */
#chart_wrap #sihyou_memo {
  display: none;
}
/* line 453, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl {
  padding: 3px;
}
/* line 38, scss/core/_utility.scss */
#chart_wrap #chart_wrap_border #chart_ctrl:after {
  content: "";
  display: block;
  clear: both;
}
/* line 457, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul {
  margin-top: 1px;
}
/* line 38, scss/core/_utility.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul:after {
  content: "";
  display: block;
  clear: both;
}
/* line 460, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li {
  float: left;
  margin-right: 1px;
  background-position: center top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}
/* line 465, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 472, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1) a {
  border: 1px solid #e60027;
}
/* line 477, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).hot_mode {
  width: 24%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_hot100.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).hot_mode:before {
  content: "";
  display: block;
  padding-top: 58.8%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).hot_mode a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 480, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).anime_mode {
  width: 24%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_anime.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).anime_mode:before {
  content: "";
  display: block;
  padding-top: 58.8%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).anime_mode a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 483, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).overseas_mode {
  width: 24%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_overseas.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).overseas_mode:before {
  content: "";
  display: block;
  padding-top: 58.8%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(1).overseas_mode a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 488, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(2) {
  width: 14.81%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_sd.png") no-repeat;
  position: relative;
}
/* line 489, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(2) a {
  border: 1px solid #6f52bf;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(2):before {
  content: "";
  display: block;
  padding-top: 95%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(2) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 494, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(3) {
  width: 14.81%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_air.png") no-repeat;
  position: relative;
}
/* line 495, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(3) a {
  border: 1px solid #00a33b;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(3):before {
  content: "";
  display: block;
  padding-top: 95%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(3) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 500, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(4) {
  width: 14.81%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_lu.png") no-repeat;
  position: relative;
}
/* line 501, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(4) a {
  border: 1px solid #f58500;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(4):before {
  content: "";
  display: block;
  padding-top: 95%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(4) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 506, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(5) {
  width: 14.81%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_tw.png") no-repeat;
  position: relative;
}
/* line 507, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(5) a {
  border: 1px solid #38ace3;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(5):before {
  content: "";
  display: block;
  padding-top: 95%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(5) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 512, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(6) {
  margin-right: 0%;
}
/* line 515, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(6) {
  width: 14.81%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_all.png") no-repeat;
  position: relative;
}
/* line 516, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(6) a {
  border: 1px solid #222222;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(6):before {
  content: "";
  display: block;
  padding-top: 95%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li:nth-child(6) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 521, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li.active {
  background-position: bottom center !important;
}
/* line 526, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ctrl ul li.active img {
  margin-top: -35px;
}
/* line 533, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_wrap_memo {
  margin-left: 13.3%;
  margin-right: 0px;
  margin-top: 3%;
  margin-bottom: 6%;
  height: 233px;
}
/* line 540, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_wrap_memo #chart {
  -webkit-overflow-scrolling: touch;
  height: 230px;
  position: relative;
  overflow-x: scroll;
  /*#tooltip{
  	p{
  		position: solid!important;
  	}
  }*/
}
/* line 547, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_wrap_memo #chart svg {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 551, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_wrap_memo #chart svg .symb_obj {
  cursor: pointer;
}
/* line 560, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_wrap_memo #chart .toucharia_inside div {
  position: absolute;
  background: red;
  width: 10px;
  height: 10px;
  overflow: hidden;
}
/* line 570, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view {
  position: relative;
}
/* line 572, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view .memoris {
  position: absolute;
  top: 0;
  left: 0;
  width: 13.3%;
  height: 92.6%;
  border-right: 3px solid #e0e5ec;
}
/* line 580, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view .memoris_inline {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 585, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p {
  position: absolute;
  color: #666666;
  text-align: right;
  font-size: 0.9rem;
  line-height: 0.9rem;
  /*&.memori_6{
  	top: 0px;
  	left: 13%;
  	width: 3px;
  	height: 92.6%;
  	background: $borderColor;
  }*/
}
/* line 591, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p.memori_0 {
  top: 0px;
  left: 0rem;
  background: #e0e5ec;
  padding: 3px 5px;
  border-radius: 5px;
}
/* line 598, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p.memori_1 {
  top: 1%;
  right: 0.5rem;
}
/* line 602, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p.memori_2 {
  top: 39%;
  right: 0.5rem;
}
/* line 606, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p.memori_3 {
  top: 79%;
  right: 0.5rem;
}
/* line 610, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p.memori_4 {
  top: 87%;
  right: 0.5rem;
  line-height: 1.2rem;
}
/* line 615, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_view p.memori_5 {
  bottom: -7%;
  right: 0rem;
  background: #e0e5ec;
  padding: 3px 5px;
  border-radius: 5px;
}
/* line 635, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap {
  margin: 2% 0;
}
/* line 38, scss/core/_utility.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap:after {
  content: "";
  display: block;
  clear: both;
}
/* line 638, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #PreBtn, #chart_wrap #chart_wrap_border #pre_next_btn_wrap #NextBtn {
  cursor: pointer;
}
/* line 640, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #PreBtn.disabled, #chart_wrap #chart_wrap_border #pre_next_btn_wrap #NextBtn.disabled {
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default;
}
/* line 645, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #PreBtn {
  float: left;
  width: 22%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_prev.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #PreBtn:before {
  content: "";
  display: block;
  padding-top: 33%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #PreBtn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 649, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #NextBtn {
  float: right;
  width: 22%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_next.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #NextBtn:before {
  content: "";
  display: block;
  padding-top: 33%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #pre_next_btn_wrap #NextBtn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 661, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_ttl {
  width: 100%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_txt.png") no-repeat;
  position: relative;
  margin-bottom: 5px;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_ttl:before {
  content: "";
  display: block;
  padding-top: 10%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_ttl span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 666, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table, #chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list tbody, #chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list td, #chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list tr {
  vertical-align: middle;
}
/* line 669, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table {
  margin-bottom: 10px;
  color: #2c2c2c;
  border: solid 2px #e0e5ec;
  border-spacing: 0px;
}
/* line 678, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table table, #chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table td, #chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table tr {
  border: none !important;
  margin: 0 !important;
}
/* line 682, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table tr {
  border-top: 1px solid #e0e5ec;
}
/* line 686, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table tr:last-child {
  border-top: 1px solid #e0e5ec;
}
/* line 690, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table tr:last-child td {
  padding: 2%;
}
/* line 695, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table.list1 .icon {
  background: #222222 url("/common/special/award/2014/sp/img/graph/chart_btn_listicon1.png") center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
/* line 702, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table.list2 .icon {
  background: #222222 url("/common/special/award/2014/sp/img/graph/chart_btn_listicon2.png") center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
/* line 708, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table.list3 .icon {
  background: #222222 url("/common/special/award/2014/sp/img/graph/chart_btn_listicon3.png") center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
/* line 714, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table.list4 .icon {
  background: #222222 url("/common/special/award/2014/sp/img/graph/chart_btn_listicon4.png") center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
/* line 720, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table.has_img .img_url {
  background: none;
}
/* line 723, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .icon {
  width: 7.5%;
  border-right: solid 3px #e0e5ec;
}
/* line 727, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .img_url {
  vertical-align: top;
  padding: 2% 2% 0% 2%;
  width: 21%;
  background: #fff;
  border-right: solid 3px #e0e5ec;
}
/* line 735, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .other {
  vertical-align: top;
  width: 62%;
  padding: 2% 2% 0% 0%;
}
/* line 743, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table.has_img .img_url img {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
/* line 746, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles {
  border-right: dotted 1px #e0e5ec;
}
/* line 749, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles td:nth-child(1) {
  width: 78%;
  vertical-align: top;
}
/* line 753, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles td:nth-child(2) {
  width: 22%;
  padding: 2% 2% 2% 0%;
  vertical-align: top;
}
/* line 758, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles .title {
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
/* line 764, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles .artist {
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #515151;
  margin-bottom: 1rem;
}
/* line 770, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles .debut_date {
  font-size: 1.0rem;
  line-height: 1.0rem;
  color: #515151;
  margin-bottom: 1rem;
}
/* line 776, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles .video_id {
  width: 100%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/youtube_btn.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles .video_id:before {
  content: "";
  display: block;
  padding-top: 133%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .titles .video_id a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 781, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .info td {
  padding: 2% 0 0% 0 !important;
}
/* line 784, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .info .rank_chart {
  font-size: 1.0rem;
  line-height: 1.0rem;
  margin-bottom: 1.0rem;
  float: left;
}
/* line 789, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .info .rank_chart span {
  font-weight: bold;
  color: #dc2527;
}
/* line 794, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .info .chartin {
  font-size: 1.0rem;
  line-height: 1.0rem;
  margin-bottom: 1.0rem;
  float: left;
  border-left: 1px solid #e0e5ec;
  margin-left: 1.0rem;
  padding-left: 1.0rem;
}
/* line 802, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .info .chartin span {
  font-weight: bold;
  color: #407bcd;
}
/* line 809, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song {
  width: 100%;
  border-top: 1px solid #e0e5ec !important;
}
/* line 38, scss/core/_utility.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song:after {
  content: "";
  display: block;
  clear: both;
}
/* line 815, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song .look_song_btn {
  float: left;
  width: 49%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_look.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song .look_song_btn:before {
  content: "";
  display: block;
  padding-top: 16%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song .look_song_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 820, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song .jan_key_id_btn {
  margin-left: 2%;
  float: left;
  width: 49%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_buy.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song .jan_key_id_btn:before {
  content: "";
  display: block;
  padding-top: 16%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song .chart_ohter_song_list table .look_buy_song .jan_key_id_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 832, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .chart_ohter_song_edit_btn {
  width: 69%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/chart_btn_edit.png") no-repeat;
  position: relative;
  margin: 10px auto;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .chart_ohter_song_edit_btn:before {
  content: "";
  display: block;
  padding-top: 16%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .chart_ohter_song_edit_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 837, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns {
  padding: 0px;
  width: 25%;
  margin: 0 auto;
}
/* line 38, scss/core/_utility.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns:after {
  content: "";
  display: block;
  clear: both;
}
/* line 842, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li {
  float: left;
  margin-left: 5px;
}
/* line 845, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(1) {
  margin-left: 0px;
  width: 29%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_sns_tw.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(1):before {
  content: "";
  display: block;
  padding-top: 101%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(1) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 849, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(2) {
  width: 29%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_sns_g.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(2):before {
  content: "";
  display: block;
  padding-top: 101%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(2) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 852, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(3) {
  width: 29%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/head_sns_fb.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(3):before {
  content: "";
  display: block;
  padding-top: 101%;
}
/* line 57, scss/graph.scss */
#chart_wrap #chart_wrap_border #chart_ohter_song #chart_ohter_song_edit .snsbtns li:nth-child(3) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}

/* line 867, scss/graph.scss */
.tab #chart_wrap_memo {
  margin-left: 9% !important;
}
/* line 870, scss/graph.scss */
.tab #chart_wrap #chart_wrap_border #chart_view .memoris {
  width: 9% !important;
}

/* line 876, scss/graph.scss */
.modal_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
}

/* line 885, scss/graph.scss */
#other_song_list {
  position: absolute;
  margin: auto 0;
  width: 92%;
  color: #222;
}
/* line 890, scss/graph.scss */
#other_song_list .other_song_list_ttl {
  background: #222;
}
/* line 38, scss/core/_utility.scss */
#other_song_list .other_song_list_ttl:after {
  content: "";
  display: block;
  clear: both;
}
/* line 893, scss/graph.scss */
#other_song_list .other_song_list_ttl h4 {
  width: 90%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/other_song_list_ttl.png") no-repeat;
  position: relative;
  float: left;
}
/* line 52, scss/graph.scss */
#other_song_list .other_song_list_ttl h4:before {
  content: "";
  display: block;
  padding-top: 10%;
}
/* line 57, scss/graph.scss */
#other_song_list .other_song_list_ttl h4 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 897, scss/graph.scss */
#other_song_list .other_song_list_ttl .close_btn {
  width: 10%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/other_song_list_close.png") no-repeat;
  position: relative;
  float: right;
}
/* line 52, scss/graph.scss */
#other_song_list .other_song_list_ttl .close_btn:before {
  content: "";
  display: block;
  padding-top: 98%;
}
/* line 57, scss/graph.scss */
#other_song_list .other_song_list_ttl .close_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 903, scss/graph.scss */
#other_song_list .other_song_list_body {
  background: #fff;
}
/* line 906, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box {
  border: solid 1px #e0e5ec;
  height: 300px;
}
/* line 909, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table, #other_song_list .other_song_list_body .scroll_box tbody, #other_song_list .other_song_list_body .scroll_box tr, #other_song_list .other_song_list_body .scroll_box td {
  vertical-align: middle;
}
/* line 912, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table {
  cursor: pointer;
  padding: 10px;
  color: #515151;
  border-bottom: solid 1px #e0e5ec;
  border-spacing: 0px;
}
/* line 918, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table:nth-child(odd) {
  background: #fafafa;
}
/* line 921, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table:last-child {
  border-bottom: none;
}
/* line 924, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .img_url {
  width: 10%;
  padding-left: 2%;
  background: url(/common/special/award/2014/img/graph/head_noimg.png) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 929, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .img_url img {
  display: none;
}
/* line 933, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table.has_img .img_url {
  background: none;
}
/* line 935, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table.has_img .img_url img {
  display: block;
}
/* line 939, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .titles {
  width: 75%;
  padding: 2%;
}
/* line 942, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .titles .title {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
/* line 948, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .titles .artist {
  font-size: 1.2rem;
  line-height: 1.2rem;
}
/* line 953, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .check_btn {
  width: 15%;
}
/* line 955, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table .check_btn div {
  width: 48px;
  height: 48px;
  overflow: hidden;
}
/* line 961, scss/graph.scss */
#other_song_list .other_song_list_body .scroll_box table.checked .check_btn img {
  margin-top: -48px;
}
/* line 966, scss/graph.scss */
#other_song_list .other_song_list_body .memo {
  padding: 2%;
  text-align: right;
  font-size: 1.2rem;
}
/* line 972, scss/graph.scss */
#other_song_list .other_song_list_footer {
  background: #e3e3e3;
  padding: 3%;
}
/* line 975, scss/graph.scss */
#other_song_list .other_song_list_footer .clear_btn {
  width: 63%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/other_song_list_btn_clear.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#other_song_list .other_song_list_footer .clear_btn:before {
  content: "";
  display: block;
  padding-top: 17%;
}
/* line 57, scss/graph.scss */
#other_song_list .other_song_list_footer .clear_btn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 978, scss/graph.scss */
#other_song_list .other_song_list_footer .ok_btn {
  width: 63%;
  height: auto;
  display: block;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  background: url("/common/special/award/2014/sp/img/graph/other_song_list_btn_ok.png") no-repeat;
  position: relative;
}
/* line 52, scss/graph.scss */
#other_song_list .other_song_list_footer .ok_btn:before {
  content: "";
  display: block;
  padding-top: 17%;
}
/* line 57, scss/graph.scss */
#other_song_list .other_song_list_footer .ok_btn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
/* line 982, scss/graph.scss */
#other_song_list .other_song_list_footer a {
  display: block;
  margin: 0 auto;
}
/* line 985, scss/graph.scss */
#other_song_list .other_song_list_footer a.disabled {
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default;
}
/* line 989, scss/graph.scss */
#other_song_list .other_song_list_footer a:last-child {
  margin-top: 3%;
}

/* line 997, scss/graph.scss */
.mCSB_inside .mCSB_container {
  margin-right: 0px;
}

/* line 1002, scss/graph.scss */
.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: #f1f1f1;
  border-radius: 0px;
  width: 17px;
  height: 100%;
}
/* line 1010, scss/graph.scss */
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #bcbcbc;
  position: relative;
  width: 12px;
  height: 100%;
  margin: 1px auto;
  text-align: center;
  border-radius: 0px;
}
/* line 1019, scss/graph.scss */
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background-color: #bcbcbc;
}
/* line 1025, scss/graph.scss */
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #bcbcbc;
}
/* line 1030, scss/graph.scss */
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #bcbcbc;
}

/* line 1040, scss/graph.scss */
#other_info_wrap {
  padding: 0px 3% 3% 3%;
}
/* line 1042, scss/graph.scss */
#other_info_wrap h4 {
  color: #2c2c2c;
  font-size: 1.2rem;
  border-bottom: 2px solid #2c2c2c;
}
/* line 1047, scss/graph.scss */
#other_info_wrap p {
  color: #2c2c2c;
  margin: 10px 0 30px 0;
}

/* line 1057, scss/graph.scss */
#headBlock h1 a {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 1064, scss/graph.scss */
#headBlock h1 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
  z-index: 1000;
}
