@charset "utf-8";

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

TOPICS版 共通

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

①#c26ba8

②#9f6b91

③#f2e4f0

----------------------------------------*/
:root {
	--normalcolor: #f1890f;
	--darkcolor: #d0770e;
	--lightcolor: #fdead2;
}
/* aタグ */

a {
	text-decoration: underline;
}
/* 明朝 */
.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;
}
.flex-center {
	justify-content: center;
}
.flex.flex-start {
    align-items: flex-start;
}
/* 波 */

.nami {
	text-decoration: underline wavy #000;
	text-decoration-thickness: 1px;
}

/* フォント色 */

.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.fs24 {
	font-size: 1.33rem;
}
#article-wrap h2.fs30 {
	font-size: 1.66rem;
}
#article-wrap h2.fs40 {
	font-size: 2.22rem;
}
.fs18 {
	font-size: 1rem;
}
.fs24 {
	font-size: 1.33rem;
}
.fs30 {
	font-size: 1.66rem;
}
.fs40 {
	font-size: 2.22rem;
}
.fs50 {
	font-size: 2.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;	
}
#article-wrap table td.bg-gray {
	background: #f4f4f4;	
}
/* 枠線 */

.border {
	border: 1px solid var(--normalcolor);
}
.border-solid {
	border: 2px solid var(--normalcolor);
	padding: 1.11rem 1.66rem;
}
.border-solid-darkcolor {
	border: 2px solid var(--darkcolor);
	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);
}
.top-double {
	border-top: 4px double;
}
#article-wrap table td.top-double {
	border-top: 4px double;	
}

/* radius */
.radius20 {
	border-radius: 20px;
}
.radius50 {
	border-radius: 50px;
}
.circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 6.66rem;
	height: 6.66rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	text-align: center;
}
/* padding */
.pd0{
	padding: 0!important;
}
.pd10 {
	padding: 0.88rem;
}
.pd20 {
	padding: 1.11rem;
}
.pd30 {
	padding: 1.66rem;
}

/* margin */
.mt0 {
	margin-top: 0;
}
.mt10 {
	margin-top: 0.55rem;
	padding-left: 0;
}
.mt20 {
	margin-top: 1.11rem;
}
.mt30 {
	margin-top: 1.66rem;
}
.mt40 {
	margin-top: 2.22rem;
}
.mt50 {
	margin-top: 2.77rem;
}
#article-wrap .mb0 {
	margin-bottom: 0;
}
#article-wrap .mb10 {
	margin-bottom: 0.55rem;
}

/* 背景画像用 */
.bg-wrap {
	padding: 2.66rem 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.66rem 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%;
}
.img40 img {
	width: 40%;
}
.img50 img {
	width: 50%;
}
.scale img {
	transform: scaleX(-1);
}
/* a */
a.underline {
	text-decoration: underline;
}

/* 幅 */
.w3 {
	width: 3%;
}
.w10 {
	width: 10%;
}
.w20 {
	width: 20%;
}
.w35 {
	width: 35%;
}
.w40 {
	width: 40%;
}
.w50 {
	width: 50%;
}

/* 縁 */

.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%;
	}
	.img40 img {
		width: 70%;
	}
	.img50 img {
		width: 100%;
	}
	.w10 {
		width: 30%;
	}
	.w35 {
		width: 50%;
	}
	.w40 {
		width: 70%;
	}
	.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

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

/* 近江栗太郡志 */

#omikurita .bg-wrap2 {
    position: relative;
	z-index: 2;
}
#omikurita .bg-wrap2::before {
    background: url(../img/topics/p2-3_bg-top.jpg) center bottom / cover;
	transform: translateX(-50%) scaleY(-1);
	opacity: 0.7;
	aspect-ratio: 1920/1366;
	height: auto;
	z-index: -1;
}
#omikurita .bg-wrap2::after {
    background: url(../img/topics/p2-3_bg-bottom.jpg) center bottom / cover;
	opacity: 0.7;
    aspect-ratio: 1920/1366;
	height: auto;
	z-index: -1;
}
#omikurita h2 {
	font-size: 3.66rem;
	line-height: 1.2;
}
#omikurita h2 span:last-child {
	font-size: 2.66rem;
}
#omikurita h3 span:first-child {
	font-size: 1.33rem;
}
#omikurita .bg-wrap {
	position: relative;
	background: unset;
	z-index: 2;
}
#omikurita .bg-wrap::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	background: url("../img/topics/p2-3_bg.jpg") no-repeat center center/cover;
	z-index: -1;
	opacity: 0.3;
}
#omikurita .clip-box {
    background: var(--darkcolor);
    clip-path: polygon(
		2% 0,
		98% 0,
		100% 6%,
		100% 94%,
		98% 100%,
		2% 100%,
		0 94%,
		0 6%
	);
	position: relative;
	z-index: 2;
}
#omikurita .clip-box::before{
	content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 4px);
    background: #ffffff;
    clip-path: inherit;
    z-index:-1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
	#omikurita h2 {
		font-size: 2.66rem;
	}
	#omikurita h2 span:last-child {
		font-size: 1.66rem;
	}
	#omikurita .clip-box {
		clip-path: polygon(
		  5% 0,
		  95% 0,
		  100% 8%,
		  100% 92%,
		  95% 100%,
		  5% 100%,
		  0 92%,
		  0 8%
		);
	}
	#omikurita .bg-wrap2 {
		padding: 3rem 0;
	}
	#omikurita .w40 {
		width: 100%;
	}
	
}

/* 下半期予算執行状況 */

#kamihanki .bg-wrap2::before {
	background: linear-gradient(
	  to bottom,
	  var(--lightcolor) 0%,
	  #fff 100%
	);
}
#kamihanki .bg-wrap2::after {
	background: linear-gradient(
	  to bottom,
	  #fff 0%,
	  var(--lightcolor) 100%
	);
}

@media (max-width: 767px) {
	#kamihanki .table-scroll .table1 {
		width: 450px;
	}
	#kamihanki .table-scroll .table2 {
		width: 630px;
	}
}

/* くりちゃんバス・タクシー */
#taxi .section-title2.inline-block {
	display: inline-block;
}
#taxi .flex-left {
	flex-shrink: 0;
}
#taxi table td:first-child {
    background: #fff;
}
#taxi table td {
	background: #fff;
}
#taxi table td.bg-gray {
    background: #f4f4f4;
}
#taxi table td.bg-gray {
    background: #f4f4f4;
}

#taxi .bg-wrap2::after {
	display: none;
}
#taxi .bg-wrap2.bg-wrap2-top {
    padding: 10rem 0 2rem;
}
#taxi .bg-wrap2.bg-wrap2-top::before {
    background: url("../img/topics/p7_bg-top1.jpg") center center / cover;
	aspect-ratio: 1920/500;
	height: auto;
}
#taxi .bg-wrap2.bg-wrap2-bottom {
    background: url("../img/topics/p7_bg-top2.jpg") center top / cover;
	padding: 5rem 0 2rem;
}
#taxi .bg-wrap2.bg-wrap2-bottom::before {
    background: url("../img/topics/p7_bg-top2.jpg") center top / cover;
	aspect-ratio: 2976/972;
	height: auto;
}
@media (max-width: 767px) {
	#taxi .bg-wrap2.bg-wrap2-top {
		padding: 5rem 0 2rem;
	}
}

/* 利用状況 */


#article-wrap table td.border-top-white {
	position: relative;
}
#article-wrap table td.border-top-white {
	position: relative;
}
#article-wrap table td.border-top-white::before {
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	background: #fff;
	z-index: 9;
	top: -1px;
	left: 0;
}
/* バスロケーションシステム */

#buslocation {
	position: relative;
}
#buslocation .fukidashi {
	position: absolute;
	top: 0;
	right: 0;
}
@media (max-width: 767px) {
	#buslocation .fukidashi.w20 {
		width: 40%;
		top: 0;
	}
}

/* 栗東100歳大 */

#daigaku .bg-wrap2 {
    padding: 10rem 0 10rem;
}
#daigaku .bg-wrap2::before {
    content: "";
    background: url(../img/topics/p8_bg-top.jpg) center center / cover;
	height: auto;
	aspect-ratio: 3031/861;
}
#daigaku .bg-wrap2::after {
    content: "";
    background: url(../img/topics/p8_bg-top.jpg) center center / cover;
	height: auto;
	aspect-ratio: 3031/861;
	transform: scaleY(-1);
	transform: translateX(-50%) scaleY(-1);
}
#daigaku h2 .futi10 {
    -webkit-text-stroke: 10px var(--darkcolor);
    paint-order: stroke fill;
	letter-spacing: 2px;
}
#daigaku .border {
	border: 1px solid #ddd;
	padding-top: 5rem;
	position: relative;
}
#daigaku .border::before {
	content: "";
	background: url("../img/topics/p8_deco1.png") no-repeat center center/cover;
	width: 4rem;
	aspect-ratio: 91/92;
	position: absolute;
	top: -2rem;
	left: 2rem;
}
#daigaku .border::after {
	content: "";
	background: url("../img/topics/p8_deco2.png") no-repeat center center/cover;
	width: 1.66rem;
	aspect-ratio: 35/132;
	position: absolute;
	top: -2rem;
	right: 2rem;
}
@media (max-width: 767px) {
	#daigaku .border::before {
		width: 3.33rem;
	}
	#daigaku .border::after {
		width: 1.33rem;
	}
	#daigaku .bg-wrap2 {
		padding: 4rem 0 4rem;
	}
}

/* ひだまりひろば */

#hidamari .bg-wrap2::before {
	content: "";
    background: url(../img/topics/p9_bg-top.jpg) center center / cover;
	height: auto;
	aspect-ratio: 2362/320;
}
#hidamari .bg-wrap2::after {
	content: "";
    background: url("../img/topics/p9_bg-bottom.jpg") center center / cover;
	height: auto;
	aspect-ratio: 2362/320;
}
#hidamari .border {
	border: 1px solid #828282;
}
@media (max-width: 767px) {
	#hidamari h2.fs30 {
		font-size: 1.33rem;
	}
}


/* 合葬墓 */
#communalgrave .keisen-wrap {
    padding: 3em;
	background: url("../img/topics/p12_bg.jpg") no-repeat top center/cover;

}
#communalgrave .keisen-inner{
    background: #fff;
    padding: 3em;
    border-radius: 20px;
}
#communalgrave h3{
    background: linear-gradient(90deg,  rgb(241, 137, 15),rgb(255, 255, 255));
    padding: 6px;

}

@media (max-width: 767px) {
	#communalgrave .keisen-wrap {
		padding: 2em 1.5em;
	}
	#communalgrave .keisen-inner {
		padding: 2em 1.5em;
	}
}
/* --　うますぎる栗東（15ページ） --*/

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

}


#umasugiru h2 img{
    margin: 1em 0;

}

#umasugiru .inline-block{
	vertical-align: top;
	width:49%;
	margin:0 auto 1em;
	
}

#umasugiru h2{
	background: url("../img/topics/p12_bg2.jpg") no-repeat top center/cover;
}
 
@media (max-width: 767px) {
 
 #umasugiru .inline-block{
	vertical-align: top;
	width:100%;
	margin:0 auto 1em;
	
}

#umasugiru h2 {
    background: url(../img/topics/p12_bg2.jpg) no-repeat;
    background-size: contain;
}

#umasugiru h2 img {
    padding: 1em;
}
}

/* 新しい時代のまちづくり (P10-11)*/
#town{
	background: url("../img/topics/p10_bg.jpg") no-repeat;	
    background-size: contain;

}
.town-wrap{
	margin: 0 3em;
}

#town table td:first-child{
	width:20%;
}
#town table td:last-child{
	text-align: left;
	padding:0 0 0 0.5em ;
}
.town_setumei{
        position: relative;
}

.town_setumei .img-1{
    position: absolute;
	left: -2em;
    top: -1em;
}
.town_setumei .img-2{
    position: absolute;
	bottom: 0;
    right: -2em;
}
.town_setumei p.txt{
	padding:0 0 0 5em;
}
.town_setumei span{
	padding:0 0.5em;
}

@media (max-width: 767px) {
.town-wrap{
	margin: 0 1.5em;
}

.town_setumei .img-1 {
    left: -3em;
    top: -3em;
    width: 30%;
}
.town_setumei .img-2 {
    position: absolute;
    bottom: -2em;
    right: -3em;
    width: 26%;
}
.town_setumei p.txt {
    padding: 2em 0 0 0.5em;
}


}


/* 社会を明るくする運動 */

#activity h3 img{
	vertical-align: middle;
}

/* 市長への手紙 (P13-14)*/
#letter h2:first-child{
	font-size: 2.2em;
	line-height: 1;
}

#letter h2{
border-bottom: 6px dotted;
    padding: 0 0 0.2em;
    display: inline-block;
}
#letter h2 span{
	font-size: 0.6em;
}
#letter table{
	width:60%;
	margin: 0;
	}
#letter table .bg-gray{
		background: #f4f4f4!important;		
}
	
/* 結婚新生活支援事業 消費生活アドバイス */

#marriage .title-wrap,#advice .title-wrap {
	border-left: 4px solid #f1890f;
	border-right: 4px solid #f1890f;
}
#marriage .title-wrap h2, #advice .title-wrap h2{
	margin: 0;
}
#marriage h2 span{
	font-size:0.8em;	
}
#advice h3{
	display: inline-block;
    padding: 4px 20px;
}

	
/* --　りっとう再発見（15ページ） --*/
#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/p15_bg.png") 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%;
	}
}





/* --　裏表紙（16ページ） --*/
section#kifu h3 {
    font-size: 1.6em;
    color: #005BAC;
    border-bottom: 2px solid;
    line-height: 1;
}

section#kifu .border-dot {
    border-color: #005BAC!important;
}

section#win .inline-flex {
    border: 6px solid #f1890f;
    padding: 30px;
    gap: 1.5em
}


section#win  .inline-flex .inline-flex-left{
    width: 100%!important;
}

section#win .futi10{
	font-size:1.8em;
	-webkit-text-stroke: 10px #f1890f;
    paint-order: stroke fill;
    background: linear-gradient(90deg, rgb(255, 255, 255), rgb(241, 137, 15));
    padding: 16px 0;
}



@media (max-width: 767px) {
.title-umasugiru .catch-umasugiru li{
		width: 38%;
	}
}


