@charset "utf-8";

/*----------------------------------------

TOPICS版 共通

最初に、この三色を置換する
①通常色　②濃い色　③薄い色

①#c26ba8

②#9f6b91

③#f2e4f0

----------------------------------------*/
:root {
	--normalcolor: #c26ba8;
	--darkcolor: #9f6b91;
	--lightcolor: #f2e4f0;
}


/* 明朝 */
.mincho {
	font-family: YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
}

/* そろえ */
.center{
	text-align: center;	
}
.left {
	text-align: left;	
}
.right {
	text-align: right;	
}

/* flex-shrink */
.flex-shrink {
	flex-shrink: 0;
}
/* フォント色 */

.normalcolor {
	color: var(--normalcolor);
}
.darkcolor {
	color: var(--darkcolor);
}
.lightcolor {
	color: var(--lightcolor);
}
.white {
	color: #fff;
}
.black {
	color: #000;
}
.black a {
	color: #000;
}
/* 文字サイズ */

#article-wrap h2.fs30 {
	font-size: 1.66rem
}
.fs30 {
	font-size: 1.66rem
}

/* 背景色 */

.bg-normalcolor {
	background: var(--normalcolor);
}
.bg-darkcolor {
	background: var(--darkcolor);
}
.bg-lightcolor {
	background: var(--lightcolor);
}
.bg-gray {
	background: #f4f4f4;
}
.bg-white {
	background: #fff;
}
#article-wrap table th {
	background: var(--normalcolor);	
}
#article-wrap table td:first-child {
	background: var(--lightcolor);
}
#article-wrap table td.bg-lightcolor {
	background: var(--lightcolor);	
}
#article-wrap table td.bg-white {
	background: #fff;	
}

/* 枠線 */

.border {
	border: 1px solid var(--normalcolor);
}
.border-solid {
	border: 2px solid var(--normalcolor);
	padding: 1.11rem 1.66rem;
}
.border-dot {
	border: 2px dotted var(--normalcolor);
	padding: 1.11rem 1.66rem;
}
.border-double {
	border: double 10px var(--normalcolor);
	padding: 1.11rem 1.66rem;
}
.border-bottom-solid {
	border-bottom: 1px solid var(--normalcolor);
}
.border-bottom-double {
	border-bottom: double 4px var(--normalcolor);
}
.border-bottom-dot {
	border-bottom: 1px dotted var(--normalcolor);
}


/* radius */
.radius20 {
	border-radius: 20px;
}
.radius50 {
	border-radius: 50px;
}
/* padding */
.pd0{
	padding: 0!important;
}
.pd10 {
	padding: 0.88rem;
}
.pd20 {
	padding: 1.11rem;
}
.pd30 {
	padding: 1.66rem;
}

/* margin */
.mt10 {
	margin-top: 0.55rem;
}
.mt20 {
	margin-top: 1.11rem;
}
.mt30 {
	margin-top: 1.66rem;
}
.mt40 {
	margin-top: 2.22rem;
}
.mt50 {
	margin-top: 2.77rem;
}

/* 背景画像用 */
.bg-wrap {
	padding: 2rem 2rem;
	background: var(--lightcolor);
	position: relative;
}
.bg-inner {
	background: #fff;
	padding: 2rem;
	border-radius: 20px;
}

.bg-wrap2 {
	padding: 5rem 0;
	position: relative;
	z-index: 2;
}
.bg-wrap2 .bg-inner {
	background: unset;
	padding: 0 2rem;
}
.bg-wrap2::before {
	content: "";
	position: absolute;
	background: url("../img/topics/p2_bg-top.jpg") center center/cover;
	width: 100%;
	height: 5rem;
	top: 0;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
}
.bg-wrap2::after {
	content: "";
	position: absolute;
	background: url("../img/topics/p2_bg-bottom.jpg") center center/cover;
	width: 100%;
	height: 5rem;
	bottom: 0;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
}

/* タイトル */

#article-wrap h2 {
	display: block;
}
#article-wrap h2::before {
	display: none;
}
#article-wrap h2.flex {
	display: flex;
	flex-wrap: nowrap;
}
.section-title2 {
	padding: 0 1rem;
}
.section-title2::before {
	display: none;
}
.section-title3 {
	border-radius: 50px;
	padding: 0 1rem;
}

/* dl用 */

.dl1 {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.88rem 0;
}
.dl1 dt {
	width: 25%;
	padding: 0 1rem;
	text-align: center;
}
.dl1 dd {
	padding: 0 1rem;
	width: 75%;
}
.dl1 dt.pd10 {
	padding: 0.88rem;
}
.dl1 dd.pd10 {
	padding: 0.88rem;
}

/* QR用 */

#article-wrap .qr-wrap p {
	margin-bottom: 0;
}
.qr-wrap a {
	text-decoration: underline;
}
.qr img {
	width: 5rem;
	height: 5rem;
	background: #fff;
	padding: 0.55rem;
}
.qr-wrap .inline-flex-right{
	flex-shrink: 0;
}

/* お問い合わせ用 */

#article-wrap .contact-wrap p {
	margin-bottom: 0;
}


/* インラインフレックス用 */

.inline-flex {
	display: inline-flex;
	align-items: center;
	padding: 0.83rem 1.66rem;
	gap: 0.8rem;
}
.inline-flex p {
	margin-bottom: 0;
}
.inline-block {
	display: inline-block;
}
.stretch {
	align-self: stretch;
}

/* リスト */
.number-list {
	list-style: decimal;
    margin: 0 0 0 1em;
}
.normal-list {
	list-style: disc;
    margin: 0 0 0 1em;
}

/* 画像 */
.img10 img {
	width: 10%;
}
.img20 img {
	width: 20%;
}
.img30 img {
	width: 30%;
}
.img50 img {
	width: 50%;
}
.scale img {
	transform: scaleX(-1);
}
/* a */
a.underline {
	text-decoration: underline;
}

/* 幅 */
.w10 {
	width: 10%;
}
.w35 {
	width: 35%;
}
.w40 {
	width: 40%;
}
.w50 {
	width: 50%;
	margin: 0 auto;
}

/* 縁 */

.futi4 {
	-webkit-text-stroke: 4px #fff;
	paint-order: stroke fill;
}
.futi10 {
	-webkit-text-stroke: 10px #fff;
	paint-order: stroke fill;
}

@media (max-width: 767px) {
	#article-wrap h2.flex {
		flex-direction: row;
		align-items: center;
	}
	#article-wrap h2 .flex {
		flex-direction: row;
		align-items: center;
	}
	#article-wrap h3.flex {
		flex-direction: row;
		align-items: center;
	}
	.bg-wrap {
		padding: 2rem 1.11rem;	
	}
	.bg-inner {
		padding: 2rem 1.11rem;
	}
	.bg-wrap2 .bg-inner {
		padding: 2rem 1.11rem;
	}
	.inline-block {
		display: block;
	}
	.inline-flex {
		display: flex;
		flex-direction: column;
		align-items: unset;
	}
	.qr-wrap {
		flex-direction: column;
	}
	.qr-wrap p br {
		display: none;
	}
	.dl1 dl {
		flex-direction: column;
	}
	.dl1 dt {
		width: 100%;
		text-align: left;
	}
	.dl1 dd {
		width: 100%;
	}
	.img10 img {
		width: 30%;
	}
	.img20 img {
		width: 40%;
	}
	.img30 img {
		width: 50%;
	}
	.img50 img {
		width: 100%;
	}
	.w50 {
		width: 100%;
		margin: 0 auto;
	}
	/* テーブルスクロール */

	.table-scroll {
		overflow-x: scroll;
		padding-bottom: 0.66rem;
	}
	
	#article-wrap h2.flex span {
		flex-shrink: 0;
		width: 10%;
	}
}


/*----------------------

	各ページcss

----------------------*/


/* 知事選挙 */

#election h2 {
	font-size: 2.77rem;	
}
#election p.mincho {
	font-size: 1.44rem;
	text-decoration: underline dotted;
	text-underline-offset: 4px;
	text-decoration-color: #a85c92;
}
.balloon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 6.66rem;
	height: 6.66rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #a85c92;
	color: #fff;
	font-size: 1.44rem;
	text-align: center;
}

.balloon::after{
	content: "";
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 1.33rem;
	height: 1.33rem;
	background: #a85c92;
	clip-path: polygon(25% 0, 50% 100%, 75% 0);
}
#election h3 img {
	width: 1.77rem;
	height: auto;
}

/* 期日前投票 */
#ealryvoting {
    padding-top: 3.33rem;
    margin-top: 3.33rem;
    border-top: 1px solid #ddd;
}
#ealryvoting h2 {
	font-size: 1.66rem;	
}
#ealryvoting h2 span {
	font-size: 1.77rem;	
}
#ealryvoting table th {
	background: #f2e4f0;
	color: #000;
}
#election2 .img2 img {
	width: 50%;
}

/* 投票所 */

#place h2 span {
	font-size: 2rem;
}
#place h2 img {
	width: 1.77rem;
	height: auto;
}
#place ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1.44rem 2%; 
}
#place li {
	width: 32%;
}
#place li img {
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.16));
}

/* 検診 */

#kenshin li a {
    text-decoration: underline;
}
#kenshin .dl1 p {
    margin-bottom: 0;
}
#kenshin dt span {
    font-size: 0.88rem;
}
#kenshin .bg-inner {
	padding-top: 0;
}
#kenshin .dl2 {
	gap: 0;
}

/* 熱中症 */
#nettyusyo .bg-wrap2 {
	padding-bottom: 0;
}
#nettyusyo .bg-wrap2::before {
	height: auto;
    aspect-ratio: 1080 / 1045;
	width: 100%;
    background: url(../img/topics/p11_bg-top.png) no-repeat center top/cover;
}
#nettyusyo .bg-wrap2::after {
	display: none;
}

/* 歯 */
#tooth h2 {
	font-size: 1.77rem;
	margin-bottom: 0;
}
#tooth h2>span {
	font-size: 2.33rem;
}
#tooth .bg-wrap2 {
	padding: 3rem 0 4rem 0;
}
#tooth .bg-wrap2::before {
	background: url(../img/topics/p10_bg-top.jpg) center center / cover;
	height: 6rem;
}
#tooth .bg-wrap2::after{
	background: url("../img/topics/p10_bg-bottom.jpg") center center / cover;
	height: 6rem;
}
#tooth .border-dot {
	background: #fff;
}

/* 叙勲・褒章 */
#prise .bg-wrap {
	background: url(../img/topics/p13_bg1.jpg) no-repeat top center / contain;
    background-color: #ededed;
}
#prise h2.normalcolor {
	font-size: 2.44rem;
}


/* ネーミングライツ */
#naming>div {
	padding: 3rem 1.66rem;
	background-image: linear-gradient(180deg, rgb(230 199 223) 0%, rgb(255 255 255) 25%, rgba(255, 255, 255, 1) 100%);
}
#naming h2 {
	font-size: 2rem;
}


/* 草津警察署 */

#police .title-wrap {
	border-left: 4px solid #c26ba8;
	border-right: 4px solid #c26ba8;
}
#police .title-wrap h2 {
	margin: 0;
}
/* 栗東っ子 */
#rittokko h3 span {
	border-radius: 100%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
	#naming>div {
		padding: 2rem 1.11rem;
	}
	#place li {
		width: 48%;
	}
	#tooth h2>span {
		font-size: 1.66rem;
	}
	#naming h2 {
		font-size: 1.66rem;
	}
	#nettyusyo .table-scroll table {
		width: 650px;
	}
	#nettyusyo .table-scroll table .img30 img {
		width: 23%;
	}
	#nettyusyo .table-scroll table .img20 img {
		width: 13%;
	}
	#nettyusyo .table-scroll table .img30.s img {
		width: 20%;
	}
	#nettyusyo .table-scroll table .mt20 img {
		width: 5%;
	}
}
	
	
/* --　りっとう再発見（14ページ） --*/
#saihakken {
	position: relative;
	z-index: 2;
}
.bg-saihakken {
	top: 0;
	left: -50%;
	transform: translateX(50%);
	z-index: -1;
	position: absolute;
	padding-top: 2rem;
	background: url("../img/topics/p14_bg.jpg") no-repeat top center/cover;
	width: 100%;
	aspect-ratio: 960/700;
}

#saihakken .bg-no{
    color: #fff;
}
#saihakken h2 {
	padding-top: 2rem;
	margin-bottom: 2rem;
}
#saihakken h3 {
	display: flex;
	gap: 0.66rem;
	align-items: center;
}
#saihakken h3 span {
	border-radius: 100%;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.saihakken-table .left{
	text-align: left!important;
	padding-left: 0.5em;
}

@media (max-width: 767px) {
	#saihakken h2 img {
		max-width: 224px;
		width: 33%;
	}
}



/* --　うますぎる栗東（15ページ） --*/

#umasugiru{
	position: relative;
	z-index: 2;
}

.bg-umasugiru {
	top: 0;
	left: -50%;
	transform: translateX(50%);
	z-index: -1;
	position: absolute;
	padding-top: 2rem;
	background: url("../img/topics/p15_bg.png") no-repeat top center/cover;
	width: 100%;
	aspect-ratio: 960/202;
}

.title-umasugiru{
	margin-bottom: 1.66rem;
}
#article-wrap .title-umasugiru h2{
	margin-bottom: 0;
}
.title-umasugiru .catch-umasugiru{
	font-size: 1.1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
}
.catch-umasugiru .catch_last{
	width: 100%!important;
}

#article-wrap section.umasugiru-wrap {
    padding-bottom: 3.33rem; 
    margin-bottom: 3.33rem; 
    border-bottom: unset;
}
#article-wrap section.umasugiru-wrap:last-child{
    padding-bottom: unset; 
    margin-bottom: unset; 
}

#umasugiru .inline-flex {
	align-items: flex-start;
}

@media (max-width: 767px) {
	.title-umasugiru .catch-umasugiru {
		font-size: 1.0em;
	}
	.title-umasugiru .catch-umasugiru li{
		width: 47%;
		min-width: 140px;
	}
}



/* --　裏表紙（16ページ） --*/

#kurinui {
	position: relative;
	z-index: 2;
}
.bg-kurinui {
	top: -2%;
    left: -54%;
    transform: translateX(50%);
    z-index: -1;
    position: absolute;
    padding-top: 2rem;
    background: url(../img/topics/p16-bg.jpg) no-repeat top center / cover;
    width: 104%;
    aspect-ratio: 1080 / 480;
    opacity: 0.3;
}
#kurinui .flex{
	justify-content: center;
}
#kurinui .flex img{
	max-width: 460px;
	width: 50%;
}
#kurinui .kashidashi {
	background: #fefcd6;
	border: 2px solid #f89d47;
}
#kurinui .kashidashi h3{
	margin: 0;
	padding: 0.83rem 1.66rem;
	padding-bottom: 0;
	margin-bottom: -18px;
}


@media (max-width: 767px) {
	#kurinui .flex img{
		margin: 0 auto;
		max-width: 460px;
		width: 100%;
	}

	#kurinui .kashidashi h3{
		margin-bottom:0;
	}
	#kurinui .kashidashi h3 img {
		max-width: 320px;
		width: 70%;
	}
	.title-umasugiru .catch-umasugiru li{
		width: 38%;
	}
}




