  .pointer {
  cursor: pointer;
}

.hover_underline:hover {
  border-bottom: 2px solid rgb(255, 153, 0); 
}

.gray_arrow {
  color: rgb(153, 153, 153);
}

.red {
  color: rgb(204, 0, 0);
}

.bold {
  font-weight: bold;
}

.text_white {
  color: white;
}

.text_small {
  font-size: smaller;
}

.border {
  border: 1px solid rgb(204,204,204);
}

#teiden_information {
  display: flex;
  flex-wrap: wrap;
}

/* 上下 コメント */
@media screen and (max-width: 768px) {
#teiden_information {
  flex-direction: column;
}
}

/* コメント全体表示 */
#comment_all {
  position: relative;
  z-index: 4;
  display: none;
  opacity: 0.9;
  background: white;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.4px;
  border: 1px solid rgb(204,204,204);
}

#teiden_comment_all {
  height: 95%;
  overflow-y: auto;
  white-space: break-spaces;
  margin-top: 0px;
  padding: 0px 5px 5px 5px;
}

/* コメント部分表示 */
#teiden_comment_div {
  position: relative;
  background: white;
  z-index: 3;
  opacity: 0.9;
}

#teiden_comment {
  margin-top: 0px;
  padding: 0px 5px 5px 5px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.4px;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 36px;
  white-space: break-spaces;
}

/* コメント全体表示?閉じるボタン */
.comment_show_hide_button {
  position: absolute;
  right: 0px;
  background: rgb(51, 51, 51);
  color: white;
  font-size: x-small;
  padding: 5px 10px 0px 10px;
  z-index: 5;
}

.sea_color {
  background: rgb(59, 141, 192);
}

.detail_data_color {
  background: rgb(29, 70, 96);
  
}

.container {
  position: relative;
}

/* タイトル横の下三角 */
#teiden_info_right {
  position: absolute;
  top: 8px;
  right: 5px;
}

/* パンくずリスト */
#map_header {
  position: relative;
  font-size: 16px;
}

#map_header > div {
  margin-top: 15px;
}

#map_header .right {
  position: absolute;
  right: 5px;
  bottom: 0px;
  font-size: 13px;
}

#map_header .right span {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 4px;
}

/* 地図の選択できる部分 */
.teiden_svg {
  stroke: rgb(204, 204, 204);
}

/* 地図上の名称 県名など*/
.teiden_svg_text {
  pointer-events : none;
}

.teiden_svg_text_stroke {
  stroke: white;
  stroke-width: 3px;
}

.teiden_svg_text_fill {
  fill: black;
}

/* 地図上の地名のフォントとサイズ */
.teiden_svg_text_kyusyu {
  font-size: 14px;
}

.teiden_svg_text_pref {
  font-size: 14px;
}

.teiden_svg_text_region {
  font-size: 12px;
}

/* 右寄せ 詳細データ マップ */
.right {
  float: right;
}

/* コメント */
@media screen and (min-width: 769px) {
#teiden_top {
  position: relative;
}
}

@media screen and (max-width: 768px) {
#teiden_top {
  position: relative;
  width: 100%;
}
}

/* 左側 コメント 地図 */
@media screen and (min-width: 769px) {
#teiden_left {
  position: relative;
  width: 517px;
}
}

@media screen and (max-width: 768px) {
#teiden_left {
  position: relative;
  width: 100%;
}
}

/* 戻るを囲む要素 */
.teiden_return {
  display: flex;
  flex-direction: row-reverse;
  background: linear-gradient(rgb(149, 149, 149), rgb(208, 208, 208) 30%, rgb(208, 208, 208))
}

.header {
  background: linear-gradient(rgb(252, 252, 252), rgb(229, 229, 229));
  border: 1px solid rgb(204, 204, 204);
  font-size: small;
  padding: 3px;
}

#teiden_percentage {
  position: relative;
  font-size: 11px;
  color: white;
  background: rgb(60, 60, 60);
  padding: 3px 0px;
  line-height: 1.9;
}

#teiden_percentage .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 8px;
  top: -6px;
  left: -1px;
}

#teiden_percentage svg {
  position: absolute;
  left: 0px;
  top: 0px;
}

#teiden_percentage > span {
  white-space: nowrap;
}

#teiden_percentage > span:first-child {
  background: rgb(112, 112, 112);
  padding: 5px 3px 5px 3px;
}


.box {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 10px;
  margin-right: 3px;
}

/* 停電率に応じた地図の色 */
.teiden_0 {
  background: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}

.teiden_10 {
  background: rgb(210, 255, 210);
  fill: rgb(210, 255, 210);
}

.teiden_20 {
  background: rgb(255, 255, 0);
  fill: rgb(255, 255, 0);
}

.teiden_40 {
  background: rgb(255, 0, 255);
  fill: rgb(255, 0, 255);
}

.teiden_60 {
  background: rgb(255, 0, 0);
  fill: rgb(255, 0, 0);
}

@media screen and (min-width: 769px) {
.teiden_0:hover {
  fill: rgb(191, 204, 242);
}
    
.teiden_10:hover {
  fill: rgb(158, 204, 200);
}

.teiden_20:hover {
  fill: rgb(191, 204, 0);
}

.teiden_40:hover {
  fill: rgb(191, 0, 242);
}

.teiden_60:hover {
  fill: rgb(191, 0, 0);
}
}

/* 地図のラッパー */
#wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

/* 地図全体 */
#teiden_map {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
.pc_inline {
  display: inline;
}
}

/* 地図上に表示する注意書き */
#note {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px; 
  color: white;
}

#note > div {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin: 3px;
  border: 1px solid white;
  background: rgb(153, 153, 153);
} 

/* 作成タグのちらつき防止 */
#togoSetdt{
  visibility:hidden;
} 

/* 1階層 */
.teiden_kosuu {
  color: #4caf50;
  font-weight: bold;
}

.teiden_kosuu_suuji {
  font-size: 1.8em;
}

.teiden_kosuu_suuji_none {
  font-size: 1.4em;
}

.teiden_link_nashi {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
.n_index_block ul.n_col2 li {
  width: calc(50% - 15px) !important;
}
}

.firstSum {
	padding: 10px;
}

/* 4階層 */
  .teiden_now {
    width: 60%;
    margin: 20px auto;
  }

@media screen and (max-width: 768px) {
  .n_utility_column .n_column_left, .n_utility_column .n_column_right {
    margin: 0 0 0 !important;
  }
  .n_table_block {
    margin: 0 0 15px !important;
  }

  .teiden_now {
    width: auto;
  }
}

/* モーダル */
.modalContent{
	width:620px;
	height:150px;
	max-height:60%;
	margin:0 auto;
	padding:10px 20px;
	border:2px solid #aaa;
	background:#fff;
	position:fixed;
	display:none;
	z-index:999;
	overflow-y: auto;
	text-align:left;
}

#modalOverlay{
	z-index:101;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.75);
}

.detailButtonLink{
	color:#00f!important;
	text-decoration:underline!important;
}
 
.detailButtonLink:hover{
	cursor:pointer!important;
	color:#900!important;
}

.closeButtonLink{
	color:#00f!important;
	text-decoration:underline!important;
}
 
.closeButtonLink:hover{
	cursor:pointer!important;
	color:#900!important;
}

.modalContent {
  width: 40% !important;
  left: 0 !important;
  right: 0 !important;
}

@media print, screen and (min-width: 1000px) {
  .modalContent {
    width: 620px;
  }
}

table {
  table-layout: fixed;
}

@media screen and (max-width: 768px) {
  table {
    border: solid 2px #555;
  }
}

.no_chart_text {
  text-align: center;
}

/* ページネーション */
.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination li {
  width: 22px;
  margin-left: 5px;
  margin-right: 5px;
}

.pagination li.number {
  width: 20px;
  text-align: center;
}

.pagination li.prev {
  width: 12px;
}

.pagination li.next {
  width: 12px;
}

.pagination li.pageNumbers {
  width: 80px;
}

.pagination li a {
  text-decoration: none;
  color: #239ad0;
}

.page {
  padding: .5em;
  border: 1px solid #000;
}

.number {
  width: 30px;
}

.active {
  background-color: #798b9c;
}

.pagination .active a {
  color: #fff;
}

/* エリア選択 */
.area_select {
  display: flex;
}

.area_select_txt {
  display: inline-block;
  text-align:right;
  margin:auto 10px auto 0px;
}

.area_select_cmb {
  margin-right:20px;
  width:150px;
}

@media screen and (max-width: 768px) {
  .area_select {
    display: block;
  }
  .area_select_txt {
    display: block;
    text-align:left;
    margin-top:10px;
  }
}
