@charset "utf-8";

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

TOPICS版 共通

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


----------------------------------------*/
:root {
	--normalcolor: #5396d1;
	--darkcolor: #2e658f;
	--lightcolor: #d6e7f4;
}
/* aタグ */

a {
	text-decoration: underline;
	color: var(--darkcolor);
}
/* 明朝 */
.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;
}
.fs20 {
	font-size: 1.11rem;
}
.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 th.bg-lightcolor {
	background: var(--lightcolor);
	color: #000;
}
#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-darkcolor {
	border: 1px solid var(--darkcolor);
}
.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;
}
.pdrl20 {
	padding: 0 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;
}
.ml-auto {
	margin-left: auto;
}

/* 背景画像用 */
.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;
}
#article-wrap.topics-wrap h3 {
    font-size: 1rem;
	margin-bottom: 0;
}
#article-wrap.topics-wrap h3.fs20 {
    font-size: 1.1rem;
}
#article-wrap.topics-wrap h4 {
    font-size: 1rem;
}
.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: 20%;
	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 .inline-flex.pd0 {
	padding: 0;
}
#article-wrap .qr-wrap p {
	margin-bottom: 0;
}
.qr-wrap a {
	text-decoration: underline;
	color: var(--darkcolor);
}
.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;
}
.underline {
	text-decoration: underline;
}
/* 幅 */
.w3 {
	width: 3%;
}
.w10 {
	width: 10%;
}
.w20 {
	width: 20%;
}
.w25 {
	width: 25%;
}
.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%;
	}
	.w20 {
		width: 40%;
	}
	.w25 {
		width: 40%;
	}
	.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%;
	}
	.topics-wrap a[href^="tel:"] {
        color: var(--normalcolor);
    }
}


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

	各ページcss

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


/* --　高額医療費 --*/

#kogakuryoyo .bg-wrap2 {
    padding: 2rem 0 5rem 0;
}
#kogakuryoyo .bg-wrap2::before {
    background: url(../img/topics/p2_bg-top.png) center bottom / cover;
    transform: translateX(-50%);
    aspect-ratio: 1229 / 391;
    height: auto;
    z-index: -1;
}
#kogakuryoyo .bg-wrap2::after {
    background: url(../img/topics/p2_bg-bottom.png) center bottom / cover;
    transform: translateX(-50%);
    aspect-ratio: 1209 / 46;
    height: auto;
    z-index: -1;
}
@media (max-width: 767px) {
	#kogakuryoyo .table-scroll .table1 {
        width: 450px;
    }
	#kogakuryoyo .table-scroll .table2 {
        width: 660px;
    }
}

/* --　ボランティア --*/
#volunteer .bg-wrap2 {
	background: url(../img/topics/p3_bg.jpg) center bottom / cover;
	padding: 7rem 0;
}
/* --　マイナンバー --*/

#mynumber .bg-wrap2::before {
	background: linear-gradient(to bottom, #b5cbea 0%, #ffffff 100%);
}
#mynumber .bg-wrap2::after {
	background: linear-gradient(to top, #b5cbea 0%, #ffffff 100%);
}

/* --　移動式赤ちゃん --*/
#akachan .bg-wrap2 {
	padding: 7rem 0;
}
#akachan .bg-wrap2::before {
	background: url(../img/topics/p5_bg-top.jpg) center bottom / cover;
}
#akachan .bg-wrap2::after {
	background: url(../img/topics/p5_bg-bottom.jpg) center bottom / cover;
}

/* --　本人確認制度 --*/
#honnintsuchi span {
	font-size: 1.66rem;
}
/* --　草津警察書 --*/
#keisatsu h2 {
	border-left: 4px solid var(--normalcolor);
	border-right: 4px solid var(--normalcolor);
}

/* --　老人福祉 --*/
#rojin .bg-wrap {
	background: url(../img/topics/p8_bg.png) center bottom;
}
#article-wrap #rojin h2 {
	font-size: 1.88rem;
}
@media (max-width: 767px) {
	#article-wrap #rojin h2 {
		font-size: 1.44rem;
	}
}

/* --　森林伐採 --*/
#article-wrap.topics-wrap #shinrin h3 {
	margin-bottom: -1rem;
	position: relative;
	z-index: 2;
}
#shinrin .bg-wrap2::before {
	background: url(../img/topics/p8_bg-top.jpg) center bottom / cover;
    transform: translateX(-50%);
    aspect-ratio: 3031 / 1664;
    height: auto;
    z-index: -1;
	opacity: 0.3;
}
#shinrin .bg-wrap2 {
	padding-bottom: 0;
}
.shinrin-img div {
	margin-left: auto;
	margin-top: -3rem;
}

@media (max-width: 767px) {
	#shinrin .w40 {
		width: 100%;
	}
	#shinrin h3 img {
		width: 30%;
	}
	#shinrin .flex2 {
		flex-direction: unset;
		gap: 0.33rem;
	}
	#shinrin .flex2 img {
		height: 100%;
		object-fit: cover;
	}
}






	
/* -- りっとう再発見（9ページ） --*/
#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/p9_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;
}

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



/* -- 地域おこし協力隊（10ページ） --*/
#machiokoshi h3{
	position: relative;
}
#machiokoshi h3 img{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#machiokoshi .machiokoshi-ttl{
	color: #FFF;
	background: #2e658f;
	margin-left: 20px;
	padding: 2px 20px 2px 30px;
	border-radius: 0 30px 30px 0;
}
#machiokoshi .cont .inline-flex{
	padding: 0;
}
#machiokoshi .cont .inline-flex-left {
	width: 62%;
}
#machiokoshi .cont .inline-flex-right{
	width: 47%;
}
@media (max-width: 767px) {
	#machiokoshi h3 {
    position: relative;
    display: flex;
	}
	#machiokoshi .machiokoshi-ttl {
		border-radius: 30px;
	}

	#machiokoshi .cont .inline-flex{
		padding: 0;
	}
	#machiokoshi .cont .inline-flex-left {
		width: 100%;
	}
	#machiokoshi .cont .inline-flex-right{
		width: 100%;
		text-align: center;
	}
}


/* -- 25周年記念トークセッション（10ページ） --*/
#kinentalk .bg-wrap2 {
    position: relative;
	z-index: 2;
	padding: 1rem 0;
	background: #f9fcff;
}
#kinentalk .bg-wrap2::before {
    background: url(../img/topics/p10-6_bg.jpg) center bottom / cover;
	transform: translateX(-50%);
	opacity: 0.7;
	aspect-ratio: 1920/1060;
	height: auto;
	z-index: -1;
}
#kinentalk .bg-wrap2::after {
    background: url(../img/topics/p10-6_bg2.jpg) center bottom / cover;
	transform: translateX(-50%);
	opacity: 0.7;
	aspect-ratio: 1920/279;
	height: auto;
	z-index: -1;
}

.event-info dl {
	display: grid;
	grid-template-columns:94px 1fr;
	gap: 12px 20px;
	margin: 0;
}
.event-info dt span{
	background: #2e658f;
	color: #FFF;
	padding: 2px 10px;
}

.event-info dt,
.event-info dd {
  margin: 0;
}

.event-info dt {
  font-weight: bold;
}

.event-info dd small {
  display: block;
  margin-top: 4px;
  color: #666;
}

#article-wrap .event-note {
  margin:0px;
  margin-top: 2rem;
}

@media (max-width: 767px) {
	.event-info dl {
		display: block;
	}
	.event-info dt, .event-info dd{
		margin-bottom: 0.5em;
	}

}



/* -- うますぎる栗東（11ページ） --*/
#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/p11-1_bg.jpg") no-repeat top center/cover;
	aspect-ratio: 876 / 163;
}
.title-umasugiru .catch-umasugiru{
	font-size: 1.1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
	margin-bottom: 2em;
}
.catch-umasugiru .catch_last{
	width: 100%!important;
}



#bukatudo .inline-flex-left,
#ichiziku .inline-flex-left{
	flex: 1;
}
#bukatudo .inline-flex-right,
#ichiziku .inline-flex-right{
	flex: 0.8;
}
#bukatudo .inline-flex.qr-wrap .inline-flex-right{
	flex: unset;
}
#article-wrap #bukatudo .inline-flex .m0{
	margin: 0;
}


@media (max-width: 767px) {
 #umasugiru .inline-block{
	vertical-align: top;
	width:100%;
	margin:0 auto 1em;
}

#umasugiru h2 {
    background-size: contain;
}
#umasugiru h2 img {
    padding: 1em;
}

#bukatudo .inline-flex-right img,
#ichiziku .inline-flex-right img{
	display: block;
	margin: 0 auto;
}

}



/* --　裏表紙（12ページ） --*/
#LINEcampaign .big {
	color: #1fa93a;
}

#LINEcampaign .flex{
	justify-content: space-between;
}
.line-info dl {
	display: grid;
	grid-template-columns:160px 1fr;
	gap: 12px 20px;
	margin: 0;
}
.line-info dt span{
	font-size: 20px;
	background: #f7931d;
	color: #FFF;
	padding: 4px 10px;
}

.line-info dt,
.line-info dd {
  margin: 0;
}

.line-info dt {
  font-weight: bold;
}



