/* ---------------------------------
 柱
-----------------------------------*/
.underline {
    /* border-bottom: 1px solid #000; */
    /* margin-bottom: 16px; */
    color: #000000;
    border-bottom: solid 2px #9d9d9d;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    padding-bottom: 5px;
    margin: 15px 10px 10px 0px;
    width: 100%;
}
.underline:before {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 210px;
    height: 2px;
    content: '';
    background: #3b3b3b;
}
/* ---------------------------------
 候補者柱
-----------------------------------*/
.kouho_heading {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;
    border: solid 1px #dedede;
    padding: 4px 10px 2px;
}
.kouho_heading > h2 {
    font-size: 1.2rem;
}
.kouho_heading > h2 > span {
    font-size: 1.05rem;
}
.kouho_heading > time {
    font-size: 0.95rem;
    color: #4d4d4d;
}

/* ---------------------------------
 候補者リスト 
-----------------------------------*/
.kouho_img_button,
.interview_link {
  display: none;
}
.show-button {
  display: flex !important;
}
.show-link {
  display: inline-flex !important;
}

.kouho_list {
  padding: 0;
  margin-bottom: 30px;
}
.kouho_list > li {
  border-top: 1px solid #bbb;
  padding: 10px 0;
}
.kouho_list > li:last-child {
  border-bottom: 1px solid #ccc;
}
.kouho {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-left: 8px;
}
/*
.kouho_photo {
  flex: 0 0 100px;
  position: relative;
}
*/
.kouho_photo > img {
  width: 100px;
  height: auto;
  display: block;
}
.kouho_txt {
  flex: 1 0 0%;
}
.kouho_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kouho_name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 16px;
  margin-top: 12px;
  margin-bottom: 11px;
  border-bottom: dashed 1px #ccc;
}
.kouho_name_kana {
  font-size: 1rem;
  font-weight: 400;
}
.kouho_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2px;
}
.kouho_row_left {
  display: flex;
  flex-direction: column;
}
.kouho_detail > li:first-of-type {
  padding-left: 0;
}
.kouho_detail > li {
  display: inline;
  font-size: 0.95rem;
  line-height: 1.6;
  border-right: dashed 1px #ccc;
  padding: 0 6px;
}
.kouho_detail > li:last-child {
  border-right: none;
}
.kouho_img_button {
  position: relative;
  width: 150px;
  height: 84px;
  /* background-color: #003366; */
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  margin-left: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.kouho_img_button.show-button {
  opacity: 1;
  pointer-events: auto;
}
.kouho_img_button.show-button:hover img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.kouho_img_button::after {
  content: '\f04b';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #FF0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.kouho_img_button .play-icon {
  position: relative;
  font-size: 24px;
  color: #fff;
  pointer-events: none;
}
.kouho_interview_button {
  margin-top: 2px;
}
.interview_link,
.movie_link,
.kouho_questionnaire_link {
  color: #03388c;
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  align-items: center;
  gap: 6px;
}
.interview_link:hover,
.movie_link:hover,
.kouho_questionnaire_link:hover {
  text-decoration: underline;
}
.movie_link {
  display: none;
}
.fa-solid, .fas {
  margin-top: 2px;
}

/* モーダル */
/* --- モーダル関連スタイル --- */
.modal_overlay {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}

.modal_overlay.show {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.modal_content {
  background: white;
  width: 90%;
  max-width: 700px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.modal_overlay.show .modal_content {
  transform: scale(1);
  opacity: 1;
}

.modal_close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.modal_close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.video_wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.video_wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal_name {
  font-size: 1.4rem;
  margin-top: 16px;
  font-weight: bold;
}

.modal_link,
.modal_questionnaire_link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  background: #007acc;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  gap: 6px;
  width: 250px;
}

/* 得票数 */
.kouho_vote {
    float: right;
    margin-right: 240px;
    text-align: right;
    font-size: 1.3rem;
}

/* 写真上に花パターン */
.kouho.tosen .kouho_photo::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("/files/o/files/senkyo/sanin2022/flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -20%);
}

/* 得票数前に花パターン */
.kouho.win .kouho_result .vote {
  display: flex;
  align-items: center;
}
.kouho.win .kouho_result .vote::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("//www.hokkaido-np.co.jp/files/senkyo/sanin2022/flower.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 6px;
}

/* ■20250715追記■ */
.kouho_list.kaihyo_day .kouho_photo {
  flex: 0 0 85px !important;
}
.kouho_list.kaihyo_day > li {
  padding: 15px 0;
  margin-bottom: 0;
}
.kouho_list.kaihyo_day .kouho_name {
  padding: 2px 0 10px;
  margin-bottom: 6px;
}
.kouho_list.kaihyo_day .kouho_content {
  margin-top: 5px;
}

/* ■ここまで■ */


/* ---------------------------------
 トップ左メニュー
-----------------------------------*/
:root {
  --wrapper-width: 1200px;
    --sidebar-width: 340px;
  --sidebar-gutter: 10px;
}
.wrapper.wide {
  width: var(--wrapper-width) !important;
}
.wrapper.wide .main {
  width: calc(var(--wrapper-width) - var(--sidebar-width) - var(--sidebar-gutter));
}
.sidebar_left {
  width: var(--sidebar-width) !important;
  float: left !important;
  margin-right: 10px;
  position: sticky;
  top: 0;
}
ul.hover_nav {
    margin-bottom: 40px;
}
.sidebar_left li {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 12px 10px 12px !important;
}
.hover_nav a:hover {
    text-decoration: none;
}
.hover_nav a:hover:before {
    width: 100%;
}
.hover_nav a {
    position: relative;
    /* display: inline-block; */
    display: block;
    font-weight: bold;
    color: #333;
}
.hover_nav li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s ease;
}
.hover_nav li:hover::after {
  width: 100%;
}
.hover_nav li.active::after {
  width: 100%;
}

/* ---------------------------------
 一覧へリンク
-----------------------------------*/
.more_link {
   text-align: right;
   margin-bottom: 50px;
}
.more_link a {
   color: #212121;
   font-size: 18px;
}
.more_link a:hover {
   color: #6b6969;
}
.more_link a:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    margin-left: 5px;
    color: #679CDB;
}

/* ---------------------------------
 候補者アンケート
-----------------------------------*/
.questionnaire {
	/*border-top: 2px solid #9B533D;
	border-left: 2px solid #9B533D;
	border-right: 2px solid #9B533D;
	&:last-of-type {
		border-bottom: 2px solid #9B533D;
	}
*/
}
.questionnaire-summary {
	position: relative;
	display: block;
	color: #00418F;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	background-color: #fff;
	&:hover {
		/*cursor: pointer;
		opacity: 0.8;*/
	}
	.btn {
		position: absolute;
		top: 3%;
		right: 20%;
		width: 18px;
		height: 18px;
		transform-origin: center center;
		transition-duration: 0.2s;

		&:before,
		&:after {
			content: "";
			background-color: #00418F;
			border-radius: 10px;
			width: 18px;
			height: 4px;
			position: absolute;
			top: 7px;
			left: 0;
			transform-origin: center center;
		}
		&:before {
			width: 4px;
			height: 18px;
			top: 0;
			left: 7px;
		}
	}
	&.is-active {
		.btn {
			-webkit-transform: rotate(-180deg);
			transform: rotate(-180deg);
			&:before {
				content: none;
			}
		}
	}
}

.questionnaire-summary::-webkit-questionnaire-marker {
	display: none;
}

.questionnaire-content {
	/*padding: 20px;*/
	p {
		margin: 0 0 20px;
		color: #000;
		font-size: 18px;
		text-align: left;
		&:last-of-type {
			margin: 0 0 0;
		}
	}
}

.qa{
    padding: 0 15px;
    margin: 0px 0;
	color: black;
}
.qa .motto {
    color: black;
    width: 28%;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 16px;
    font-size: 1.3rem;
    border-bottom: 2px solid;
    border-top: 2px solid;
    border-left: 2px solid;
    border-right: 2px solid;
		margin-top: 20px;
	&:hover {
		cursor: pointer;
		opacity: 0.8;
	}
}
.qa__question{
    font-size: 20px;
    height: 86px;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 2;
    font-weight: bold;
    color: #fff;
    background: #373737;
	border-collapse:collapse;
	border: none;
}
.qa__question__no{
    width: 112px;
    height: 86px;
    background: #373737;
    color: white;
	font-size: 28px;
	text-align: center;
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 0;
}
.qa__question__no span,
.qa__question__no {
    position: relative;
    color: #000;
    margin: 0 0 5px 0;
    z-index: 3;
}
.qa__question__no:before{
	content: '';
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.qa__question__num{
    padding: 9px 16px 9px 0;
    font-size: 20px;
    font-weight: bold;
    background: #373737;
    color: white;
	text-align: left;
	box-shadow: 0px 2px 10px #00000040;
}
.qa__question__theme{
    padding: 6px 0px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    background: transparent linear-gradient(180deg, #7C3B8E 0%, #373737 100%) 0% 0% no-repeat padding-box;
	text-align: center;
	width: 180px;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.qa__question__text{
    padding: 13px 16px;
}
.qa-table--descriptive{
    border-bottom: solid 1px #ebebeb;
}
.qa-table{
    margin-top: 23px;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.qa-table--descriptive .qa-table__koho{
    display: block;
    width: 100%;
}
.qa-table--descriptive .qa-table__answer{
    display: block;
    width: 100%;
}
.qa-table--selective .qa-table__candidate .qa-table__name {
    margin-left: 13px;
}
.qa-table--descriptive .qa-table__candidate .qa-table__name{
    margin-left: 13px;
}
.qa-table__name{
    font-size: 1.2rem;
    font-weight: bold;
}
.qa-table--selective .qa-table__candidate{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    padding: 6px 12px;
}
.qa-table--descriptive .qa-table__candidate{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ebebeb;
    padding: 5px 5px;
}
.qa-table--descriptive .qa-table__answer{
    display: block;
    width: 100%;
}

.qa-table__answer{
    font-size: 1rem;
    line-height: 1.9;
    padding: 14px 0;
}
.qa-table__select-answer{
		font-size: 1.2rem;
    line-height: 1.4;
    font-weight: bold;
    color: #0f4c82;
    width: 100%;
		padding-left: 15px;
		padding-top: 10px;
    padding-bottom: 10px;
		text-align: left;
    padding-left: 2em;
    text-indent: -1em;
		border-top: solid 1px #ebebeb;
}
.qa-table__reason {
    font-size: 1rem;
    line-height: 1.4;
    /*font-weight: bold;
    color: #0f4c82;*/
    width: 100%;
		border-bottom: solid 1px #ebebeb;
		text-align: left;
		font-weight: normal;
		text-align: left;
		font-weight: normal;
		padding-bottom: 15px;
		padding-left: 20px;
}
.qa-table__koho .party-icon{
    font-size: 1rem;
    border-width: 1px;
    display: block;
    text-align: center;
    line-height: 1.5;
    min-width: 4em;
    width: 4em;
    border: 2px solid #000;
    border-radius: 1em;
    background: #fff;
    padding: 0;
    font-weight: bold;
}
.qa__legend{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 28px 28px 44px;
    border: 2px solid #373737;
    margin-top: 0px;
}
.qa__legend__item{
    font-size: 18px;
    font-weight: 500;
    color: #000;
    width: 100%;
    text-indent: -1em;
	line-height: 1.3;
	transform: translate(0%, 0%);
}
.qa__legend__item:not(:first-child) {
    margin-top: 13px;
}
.qa-table--selective{
    table-layout: fixed;
}
.qa-table--selective tr:first-child {
    height: 35px;
    /*background: #ebebeb;*/
}
.qa-table--selective th:first-child {
    width: 20%;
}

.qa-table--selective .qa-table__koho{
    padding: 8px 0;
}
.qa-table--selective .is-true{
    position: relative;
}
.qa-table--selective .qa-table__check{
    position: relative;
    width: 100%;
    height: 100%;
}

.qa-table--selective .qa-table__check, .qa-table--selective .qa-table__koho {
    /*border-bottom: solid 1px #ebebeb;*/
}
.qa-table__check{
    text-align: center;
}

.qa-table--selective .is-false span{
    width: 30px;
    height: 30px;
    display: block;
    content: '';
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 3px solid #9c9c9c;
}

.questionnaire-summary > p{
    background: #9B533D;
    color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 16px;
    font-size: 1.5rem;
}
.qa__preamble {
  text-align: left;
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 16px;
  margin-top: 30px;
}
.qa__preamble a {
	text-decoration: underline;
}
.face_name {
	/*width: 110px;*/
}
.face_grid {
  display: flex;
  flex-wrap: wrap;
	justify-content: center;
  /*gap: 5px;*/
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.face {
  flex: 0 0 120px; /* 幅を固定 */
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 10px;
  height: 100%;
}

.face img {
  width: 80%;
  /*height: 60px;*/
  object-fit: cover;
  /*border-radius: 50%;*/
  /*display: block;*/
  margin-bottom: 4px;
}
.qa_link {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.arrow_r_b {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  color: #671bc7 !important;
  font-size: 1.0rem;
  font-weight: bold;
}
.arrow_r_b:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #671bc7;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.arrow_r_b:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 6px;
  bottom: 0px;
  margin: auto;
 }
.arrow_r_c {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  color: #671bc7 !important;
  font-size: 1.0rem;
  font-weight: bold;
}
.arrow_r_c:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #671bc7;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.arrow_r_c:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  left: 6px;
  bottom: 2px;
  margin: auto;
 }
.page_title {
    display: flex;
    align-items: center;
    margin: 28px 0 28px 0;
}
.page_title > span {
  display: flex;
  margin-left: auto;
  gap: 16px;
}
.questionnaire_rink,
.latest_news_rink {
  white-space: nowrap;
}
.policy_table {
  width: 100%;
  max-width: 900px;
  margin: 28px 0 0 0;
  border-collapse: collapse;
}
.left_col {
  width: 134px;
  text-align: center;
  vertical-align: top;
}
.right_col {
  padding: 0 0 0 15px;
}
.title {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 24px;
  font-weight: bold;
  color: #592a87;
  display: flex;
  align-items: center;
  gap: 6px;
}
.label {
  margin-top: 10px;
  display: inline-block;
  background: #eeeeee;
  padding: 6px 12px;
  font-size: 14px;
  color: #592a87;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;

}
.reason {
  text-align: justify;
  text-justify: inter-ideograph;
  background: #eeeeee;
  padding: 15px 20px;
  line-height: 1.6;
  font-size: 16px;
}
.separate_border {
  width: 100%;
  border-bottom: 2px solid #E8E3D6;
  padding-bottom: 28px;
}
.item_border {
  width: 100%;
  border-bottom: 2px solid #E8E3D6;
  padding-bottom: 28px;
  margin-bottom: 28px;
}


/* トップタイトル */
.heading_type_02 .heading_title {
    font-size:20px !important;
}

/* 過去選挙結果 */
.sidePrimaryNewsList {
    border-top: 1px solid #e5e5e5;
}
.sidePrimaryNewsItem {
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}
.sidePrimaryNewsItem a {
    display: table;
    width: 100%;
    min-height: 43px;
    padding: 5px 0;
    transition: all 0.3s;
}
.sidePrimaryNewsTitle {
    display: table-cell;
    vertical-align: middle;
}
.textArrow {
    background: url(/files/image/builtin/textarrow.gif) 0 6px no-repeat;
    padding-left: 1em;
    display: block;
}

/* 最下リスト下の罫線はなし */
.post_list-type_thm_bg-m .post_item:nth-last-child(-n+1) {
    border-bottom: none;
    margin-bottom: 0;
}

.post_icon {
    display:unset !important;
}
.heading_title {
  font-size: 18px;
  font-weight: 700;
  margin-right: 20px;
}
.heading_title a:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    margin-left: 3px;
    color: #679CDB;
}

/* ---------------------------------
 候補者リスト 
-----------------------------------*/
.shuin2026-bg {
  height: 47px;
  align-items: center;
  margin-bottom: 10px;
  background-color: #eeeeee;
}
.shuin2026-subnav {
  align-items: center;
  display: flex;
  font-size: 15px;
  margin-left: 15px;
  height: 47px;
}
.shuin2026-subnav > li {
  line-height: 1;
  padding-left: 4px;
  padding-right: 6px;
}
.shuin2026-subnav > li:not(:last-child) {
  border-right: solid 1px #ccc;
}
.shuin2026-subnav > li:first-child {
  background: #7c478b;
  border-right: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  padding: 4px 2px 4px 4px;
  position: relative;
}
.shuin2026-subnav > li:first-child::before {
  border-bottom: solid 11.5px transparent;
  border-left: solid 11.5px #7c478b;
  border-right: solid 11.5px transparent;
  border-top: solid 11.5px transparent;
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.shuin2026-subnav > li > a {
  color: #671bc7;
  cursor: pointer;
  font-weight: 600;
}
.shuin2026-subnav > li > a:hover {
  text-decoration: underline;
}
.shuin2026-cont .submenu-dounai,
.shuin2026-cont .submenu-dhirei {
  -webkit-display: flex;
  display: flex;
  margin: .5rem 0 1rem;
}
:root .shuin2026-cont .submenu-dounai,
:root .shuin2026-cont .submenu-dhirei {
  position: relative;
  overflow: hidden;
}
:root .shuin2026-cont .submenu-dounai li,
:root .shuin2026-cont .submenu-dhirei li {
  float: left\0/;
}
.shuin2026-cont .submenu-dounai::before,
.shuin2026-cont .submenu-dhirei::before {
  font-weight: bold;
  margin: 0 .5rem 0 0;
  content: '[';
  color: #666;
}
.shuin2026-cont .submenu-dounai::after,
.shuin2026-cont .submenu-dhirei::after {
  font-weight: bold;
  margin: 0 0 0 .5rem;
  content: ']';
  color: #666;
}
:root .shuin2026-cont .submenu-dounai:before,
:root .shuin2026-cont .submenu-dhirei:before,
:root .shuin2026-cont .submenu-dounai:after,
:root .shuin2026-cont .submenu-dhirei:after {
  display: none\0/;
}
.shuin2026-cont .submenu-dounai a,
.shuin2026-cont .submenu-dhirei a {
  font-weight: bold;
  color: #06f;
}
.shuin2026-cont .submenu-dounai a:hover,
.shuin2026-cont .submenu-dhirei a:hover {
  opacity: .5;
}
.shuin2026-cont .submenu-dounai li::after,
.shuin2026-cont .submenu-dhirei li::after {
  margin: .5rem;
  content: '|';
  color: #ccc;
}
.shuin2026-cont .submenu-dounai li:last-child::after,
.shuin2026-cont .submenu-dhirei li:last-child::after {
  display: none;
}
.shuin2026-cont .dounai-title,
.shuin2026-cont .dhirei-title {
  font-size: 20px;
  font-weight: bold;
  position: relative;
/*  display: inline-block; */
  padding: 0 0 0 15px;
  margin-bottom: 0;
}
.shuin2026-cont .dounai-title::before,
.shuin2026-cont .dhirei-title::before {
  position: absolute;
  top: 0.25rem;
  bottom: 0;
  left: 0;
  width: .8em;
  height: .8em;
  margin: auto;
  content: '';
  border: .3rem solid #fff;
  border-radius: 50%;
}
.shuin2026-cont .time {
  text-align: right;
  font-size: 0.95rem;
  color: #4d4d4d;
  margin-bottom: 10px;
}
.shuin2026-cont .kouzi_time {
  text-align: right;
  font-size: 0.95rem;
  color: #4d4d4d;
  margin-bottom: 10px;
}

/* ---------------------------------
 小選挙区柱 
-----------------------------------*/
.shuin2026-cont .dounai-title span:first-child,
.shuin2026-cont .dhirei-title span:first-child {
  font-size: 1rem;
}
.shuin2026-cont .zone {
  /* margin: 1rem 0 0; */
}
.shuin2026-cont .zone li {
  position: relative;
  margin: 0 0 1rem;
}
.shuin2026-cont .zone li::before {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  content: '';
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  border-top: 3px solid #a56c97;
  border-right: 3px solid #a56c97;
}
.shuin2026-cont .zone a {
  display: block;
  padding: 2px;
  border: 1px solid #d6bbca;
  /* background: #f5e8ef; */
  font-weight: 500;
}
.shuin2026-cont .zone a:hover {
  background: #e2c6d4;
  opacity: 1;
}
.shuin2026-cont .zone a:hover .ward {
  background: #98748e;
}
.shuin2026-cont .ward {
  font-size: 1.15rem;
  font-weight: bold;
  display: inline-block;
  width: 8rem;
  margin: 0 1rem 0 0;
  padding: .25rem 0;
  text-align: center;
  color: #fff;
  background: #7c478b;
}
.shuin2026-cont .range {
    color: #313131;
}

.dounai-heading {
  display: flex;
  border-top: solid 1px #bbb;
}

.shuin2026-cont .dounai-area {
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  /* margin: 3rem 0 .5rem; */
  padding: 5px 0 5px 6px;
}
.shuin2026-cont .time {
  text-align: right;
  margin-bottom: 20px;
}

/* ---------------------------------
 党派（政党カラー）
-----------------------------------*/
/* 小選挙区 */
.shuin2026-cont .seitou {
  font-size: 1.0rem;
  border-radius: 4px;
  padding: 1px 12px 2px;
  margin-right: 5px;
}
/* 比例代表 */
.shuin2026-cont .touha {
  width: 138px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  margin: 0.5rem 0 0.5rem;
  padding: .25rem 1rem;
}

/* 政党カラー */
.shuin2026-cont .jimin {
    background-color: #D05A49;
    color: #fff;
}
.shuin2026-cont .cra {
    background-color: #4274B6;
    color: #fff;
}
.shuin2026-cont .ishin {
    background-color: #A2CA4F;
    color: #fff;
}
.shuin2026-cont .kokumin {
    background-color: #ECBC39;
    color: #fff;
}
.shuin2026-cont .kyosan {
    background-color: #A1609D;
    color: #fff;
}
.shuin2026-cont .reiwa {
    background-color: #DD8DB1;
    color: #fff;
}
.shuin2026-cont .sansei {
    background-color: #DF9340;
    color: #fff;
}
.shuin2026-cont .hoshu {
    background-color: #929E2B;
    color: #fff;
}
.shuin2026-cont .rikken {
    background-color: #7A97CB;
    color: #fff;
}
.shuin2026-cont .komei {
    background-color: #D46988;
    color: #fff;
}
.shuin2026-cont .shamin {
    background-color: #6ABCEF;
    color: #fff;
}
.shuin2026-cont .mirai {
    background-color: #AED3C2;
    color: #fff;
}
.shuin2026-cont .minnna {
    background-color: #53A195;
    color: #fff;
}
.shuin2026-cont .syoha {
    border: 1px solid #898989;
    color: #000;
    padding: 0px 3px;
}
.shuin2026-cont .mushozoku {
    border: 1px solid #898989;
    color: #000;
    padding: 0px 3px;
}
