/*=========================================
*lower
===========================================*/
main {
	word-break: break-all;
}
/* 下層ヘッダー*/
header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 9999;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
    background: transparent;
    transition: background .3s ease-in-out;
}
header.scrolling {
    background: #fff;
}
header > article {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 12px 16px;
	padding: 16px 20px;
}
header > article > h1 {
	grid-column: 1;
}
header > article > h1.logo-lower{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
header > article > h1.logo-lower img {
	width: 140px;
}
header > article > h1.logo-lower span {
	font-size: 1.4rem;
	font-weight: bold;
	color: #184C71;
	display: block;
}
header > article > section {
	grid-column: 2;
}

@media (max-width: 1120px) {
	h2 p {
		/* font-size: clamp(7rem, 9vw, 13rem); */
	}
	h2 span {
		/* margin: -35px 0 0 0; */
	}
}
/* メインビジュアル */
.lower-mv {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.lower-mv.type-a,
.lower-mv.type-b {
    min-height: 393px;
    padding-top: 86px;
    padding-bottom: 53px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}
.lower-mv.type-a {
    background: url("../img/lower/bg-lower_mv_rv.png") no-repeat center / cover;
}
.lower-mv.type-b {
    background: url("../img/lower/bg-lower_mv_ci.png") no-repeat center / cover;
}
.lower-mv.type-a h1,
.lower-mv.type-b h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    color: #184C71;
}
.lower-mv.type-a h1 img {
    display: block;
    /* width: auto; */
    /* height: 8vw; */
    margin-bottom: min(3.12vw, 20px);
}
.lower-mv.type-b h1 img {
    display: block;
    width: 77px;
    height: auto;
    margin-bottom: 10px;
}
.lower-mv.type-a p,
.lower-mv.type-b p {
    margin: 22px 10px 0;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #184C71;
}

/* メインビジュアル（お知らせ＆その他） */
.lower-mv.type-c {
    min-height: 315px;
	padding-top: 113px;
    padding-bottom: 53px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    background-image: linear-gradient(0deg, #ffffff, #dfeff4 84%);
}
.lower-mv.type-c h1 {
    text-align: center;
}
.lower-mv.type-c h1 p {
    font-family: 'Iceland', cursive;
    font-size: 13rem;
    color: rgba(24, 76, 113, 0.15);
}
.lower-mv.type-c h1 span {
    font-size: 3.8rem;
    color: #184C71;
    margin: -50px 0 0 0;
    display: block;
    font-weight: bold;
}

/* type-a,b用 コンテンツラッパー */
.lower-wrapper {
    max-width: 1920px;
    margin: 0 auto;
}
.lower-container {
    display: flex;
    gap: 36px;
    padding: 0 10px;
    box-sizing: content-box;
}

/* type-a,b用 メインコンテンツ */
.lower-container .lower-content {
    flex: 1;
    margin: 0;
    padding: 20px 10px 0 0;
    box-sizing: border-box;
}

/* type-a,b用 サイドナビ */
.lower-sidebar {
    align-self: flex-start;
    position: sticky;
    top: 95px;
    top: 178px;
    z-index: 9997;
    width: 260px;
    margin-top: 83px;
    margin-left: 3.85%;
}
.lower-sidebar-nav ul {
    border-top: 1px solid #184C71;
}
.lower-sidebar-nav ul li {
    border-bottom: 1px solid #184C71;
}
.lower-sidebar-nav ul li a {
    position: relative;
    display: block;
    padding: 28px 31px;
    font-size: 1.8rem;
    line-height: 1;
    border-left: 3px solid transparent;
}
.lower-sidebar-nav ul li a:hover,
.lower-sidebar-nav ul li.focusNan a {
    opacity: 1;
    background: #fff;
    border-left: 3px solid #184C71;
}
.lower-sidebar-nav ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #184C71;
    border-right: 2px solid #184C71;
    transform: scaleX(1.25) rotate(45deg);
}

@media (max-width: 1560px) {
	.lower-sidebar {
	    margin-left: 0;
	}
}

/* メインコンテンツ */
.lower-content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 10px 0;
    box-sizing: content-box;
}

/* 下層 h2 */
.lower-content h2 {
	margin-top: 30px;
}
.lower-content h2 p {
	line-height: .75;
	/* overflow-wrap: break-word; */
	/* word-break: normal; */
}
.lower-content h2 span {
	margin-top: -.75em;
}

/* パンくずリスト */
.lower-breadcrumd ul {
    display: flex;
    gap: .5em;
    font-size: 1.2rem;
    line-height: 1;
    color: #184C71;
    align-items: center;
}
.lower-breadcrumd ul li {
	display: flex;
	align-items: center;
}
.lower-breadcrumd ul li:first-child {
	/* flex-basis: 12px; */
}
.lower-breadcrumd ul li:last-child {
	flex: 1;
}
.lower-breadcrumd ul li + li::before {
    content: "/";
    display: inline-block;
    margin-right: .5em;
    font-size: 1.2rem;
    color: #184C71;
}

/* type-a,b用 セクション */
.lower-container section {
    margin-top: 60px;
}

/* lower-box-1col */
.lower-box-1col {
    background: #fff;
    border-radius: 20px;
}

/* type-a,b用 lower-box-1col */
.lower-container .lower-box-1col {
    padding: 0 3.38% 40px;
    border: 3px solid #184C71;
}

/* 主な機能 */
.lower-container section.lower-function {
    margin-top: 0;
}
.lower-function-list {
    display: flex;
    justify-content: space-between;
    max-width: 1094px;
    margin: 0 auto;
		flex-wrap: wrap;
}
.lower-function-list li {
    text-align: center;
		width: calc(calc(100% / 3) - 1%);
}
.lower-function-list li strong {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    color: #184C71;
}
.lower-function-list li p {
    margin-top: 15px;
    font-size: 1.6rem;
    line-height: 1.4;
}
.lower-function-lead {
    display: block;
    margin-top: 47px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1000px) {
	.lower-function-list {
		flex-direction: column;
		gap: 30px;
	}

	.lower-function-list li {
    text-align: center;
		width: 100%;
}
}

/* 年度切り替えナビ */
.lower-dashboard-list {
    margin: 110px auto 73px;
}
.lower-dashboard-list ul {
    display: flex;
    border: 1px solid #184C71;
	border-radius: 9999px;
	overflow: hidden;
}
.lower-dashboard-list ul li {
    flex: 1;
    background: #fff;
}
.lower-dashboard-list ul li + li {
    border-left: 1px solid #184C71;
}
.lower-dashboard-list ul li.activ {
    background: #184C71;
}
.lower-dashboard-list ul li a {
    display: flex;
    justify-content: center;
    padding: 11px .5em;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #1A3661;
    text-align: center;
}
.lower-dashboard-list ul li.activ a {
    color: #fff;
    pointer-events: none;
}
@media (hover: hover) {
    .lower-dashboard-list ul li a:hover {
        opacity: 1;
        color: #fff;
        background: #184C71;
    }
}

/* lower-***-lead */
.lower-box-1col h2 + p {
    font-size: 1.6rem;
    line-height: 1.4;
}

.lower-box-1col h2 + p span.boldStyle {
	font-weight: bold;
	display: block;
	margin: 10px 0;
}

.lower-box-1col h2 + p span.indent {
	display: block;
	padding: 0 0 0 32px;
	text-indent: -16px;
	margin: 0 0 5px;
}

/* ダッシュボード */
#dashBoardArea {
	margin-top: 60px;
}
.dbChangeBtn {
	display: flex;
	gap: 4px;
}
.dbChangeBtn li {
	flex: 0 1 180px;
	padding: 15px .5em;
	font-size: 1.8rem;
	font-weight: bold;
	color: #184C71;
	text-align: center;
	/* width: calc(800px / 4); */
	background: #D9D9D9;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	cursor: pointer;
}
.dbChangeBtn li.on,
.dbChangeBtn li:hover {
	color: #fff;
	background: #184C71;
}
#dashBoardArea .dbCont {
	border-radius: 20px;
	border-top-left-radius: 0;
	overflow: hidden;
}
#dashBoardArea .dbCont li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.69%;
	visibility: hidden;
	opacity: 0;
	background: #184C71;
	transition: opacity .3s ease-in-out;
}
#dashBoardArea .dbCont li div {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 15px;
	background: #fff;
}
#dashBoardArea .dbCont li.show {
	visibility: visible;
    opacity: 1;
    position: relative;
}
#dashBoardArea .dbCont li iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1.41%;
}

@media (max-width: 1120px) {
    .dbChangeBtn li {
        flex: 0 1 180px;
    }
    #dashBoardArea .dbCont {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}

/* scroll-container */
.scroll-container {
	overflow-y: auto;
}
.scroll-container::-webkit-scrollbar {
	width: 14px;
}
.scroll-container::-webkit-scrollbar-track {
	background-color: #CAD6DF;
	border-radius: 10px;
}
.scroll-container::-webkit-scrollbar-thumb {
	background-color: #849FB2;
	border-radius: 10px;
	border: 4px solid transparent;
	background-clip: content-box;
}

/* レコメンド */
.recommendRead {
	width: 91.82%;
	margin: 28px auto 0;
}
.recommendRead > p {
	font-size: 1.8rem;
	line-height: 1.4;
}
.recommendRead dl {
	display: flex;
	flex-wrap: wrap;
}
.recommendRead dl dd ul {
	padding: 0 0 0 40px;
}
.recommendRead dl dd li {
	list-style: disc;
}
.recommendBtns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}
.recommendBtns a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #184C71;
    border-radius: 50%;
}
.recommendSarchTitle {
	margin-top: 60px;
	padding: 13px 1em;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	color: #184C71;
	background: #D9D9D9;
	border-radius: 10px;
}
.recommendSarchTitle.last {
	color: #fff;
	background: #184C71;
}
.recommendCategoryWrap {
	padding: 0 4.09%;
}
.largeCategory,
.mediumCategory,
.mainCategory {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 20px;
	margin-top: 40px;
	padding: 0 1.48% 40px;
	border-bottom: 1px solid #184C71;
}
.mainCategory {
	padding-bottom: 0;
	border-bottom: none;
}
.largeCategory input[type=radio],
.mediumCategory input[type=radio],
.mainCategory input[type=radio]{
	display: none;
}
.largeCategory label,
.mediumCategory label,
.mainCategory label {
	padding: 10px 30px;
	border: 1px solid #1A3661;
	border-radius: 10px;
	font-size: 1.6rem;
	color: #1A3661;
	background: #fff;
	display: inline-block;
}
.largeCategory label:last-child,
.mediumCategory label:last-child,
.mainCategory label:last-child {
	margin: 0;
}
.largeCategory input[type=radio]:checked + label,
.mediumCategory input[type=radio]:checked + label,
.mainCategory input[type=radio]:checked + label {
	background: #1A3661;
	color: #fff;
}
.smallCategory {
	width: 91.82%;
	height: 200px;
	margin: 40px auto 0;
	overflow-y: auto;
	border: 1px solid #184C71;
	border-radius: 20px;
	padding: 1em 1em 0;
}
.smallCategory input[type=radio] {
	display: none;
}
.smallCategory li {
	margin: 0 0 20px 0;
}
.smallCategory li label {
	display: inline-block;
	padding: 0 0 0 30px;
	position: relative;
	cursor: pointer;
}
.smallCategory li label span {
	border-bottom: 1px solid #F6F6F6;
}
.smallCategory li label:before {
	content: "";
	display: block;
	background: #fff;
	border: 1px solid #000;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -7px;
	border-radius: 10px;
}
.smallCategory li label:after {
	content: "";
	display: block;
	position: absolute;
	height: 12px;
	width: 12px;
	margin-top: -5px;
	top: 50%;
	left: 2px;
	opacity: 0;
	border-radius: 10px;
	background: #1A3661;
}
.smallCategory li input[type=radio]:checked + label:after {
	opacity: 1;
}
.smallCategory li input[type=radio]:checked + label {
	color: #1A3661;
}
.recommendBtn button {
	display: flex;
	width: 350px;
	height: 70px;
	align-items: center;
	text-align: center;
	color: #fff;
	background: #1A3661;
	transition: all .3s ease-in;
	margin: 0 auto 70px;
	justify-content: center;
}
.recommendBtn button:hover {
	opacity: .6;
}
.recommendResultWrap {
    width: 91.82%;
    margin: 40px auto 0;
    padding: 20px 1.98% 10px;
    border-radius: 20px;
    background: rgba(24, 76, 113, 0.1);
}
.recommendResult {
	max-width: 1100px;
	height: 396px;
	margin: 0 auto;
	border-radius: 20px;
	overflow-y: auto;
}
.recommendResult dl {
	display: grid;
	grid-template-columns: 170px 1fr;
	border-radius: 20px;
	border: 1px solid #184C71;
	overflow: hidden;
}
.recommendResult dl dt {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #D9D9D9;
	border-bottom: 1px solid #184C71;
	text-align: center;
	padding: 25px 0;
	font-size: 1.8rem;
	font-weight: bold;
	color: #184C71;
}
.recommendResult dl dd {
	border-bottom: 1px solid #184C71;
	border-left: 1px solid #184C71;
	background: #fff;
	padding: 25px 2.1%;
	font-size: 1.8rem;
	line-height: 1.4;
}
.recommendResult dl dt:last-of-type,
.recommendResult dl dd:last-of-type {
	border-bottom: 0;
}

/* 自由検索 */
#freeSearch {
	margin: 50px 0 0;
}
#freeSearch .freeSearchRead {
	margin: 0 0 35px;
}
#freeSearch .freeSearchRead ul {
	margin: 0 0 0 22px;
}
#freeSearch .freeSearchRead li {
	list-style: disc;
}
#freeSearch .question {
	max-width: 700px;
	margin: 0 auto 76px;
}
#freeSearch input[type=text] {
	width: 100%;
	background: #fff;
	border: 1px solid #1A3661;
	padding: 20px;
	border-radius: 35px;
}
#freeSearch input[type=text]::placeholder {
	opacity: .5;
}
#freeSearch textarea {
	border-radius: 35px;
	padding: 19px 5px 0px 31px;
	border: 1px solid #184C71;
	font-size: 1.6rem;
	width: 100%;
	background: #fff;
	line-height: 19px;
	    min-height: 8em;
}
#freeSearch textarea::placeholder {
	opacity: .5;
}
#freeSearch .answer {
	width: 91.82%;
	margin: 0 auto;
	background: rgba(24, 76, 113, 0.1);
	padding: 20px 1.98% 10px;
	border-radius: 20px;
}
.answerContentWrap {
	height: 504px;
}
#freeSearch .answer h4 {
	font-size: 2.6rem;
	margin: 0 0 20px;
}
#freeSearch .answer section > p {
	margin: 0 0 40px;
}
#freeSearch .answer section {
	border-radius: 10px;
	padding: 20px 1.68%;
	background: #fff;
}
#freeSearch .answer section + section {
	margin-top: 20px;
}
#freeSearch .answer section dt {
	font-weight: bold;
	margin: 0 0 20px;
}
#freeSearch .answer section dd {
	margin: 0 0 20px;
}
#freeSearch .answer section div {
	border-bottom: 1px solid #ccc;
	padding: 0 0 30px;
	margin: 0 0 30px;
}
#freeSearch .answer section div h5 {
	font-size: 2.4rem;
	margin: 0 0 30px;
}
#freeSearch .answer section span {
	font-weight: bold;
}
.answer .content h3 {
	font-size: 2rem;
	margin: 0 0 15px;
	font-weight: bold;
	border-bottom: 1px solid;
	padding: 0 0 10px;
}
.answer .content p {
	margin: 0 0 15px;
	font-size: 1.6rem;
}
.answer .content li {
	margin: 0 0 20px;
}

.answer section .content .card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.answer section .content .card-list .card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
}
.answer section .content .card-list .card .meta  {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.answer section .content .card-list .card .meta .year  {
font-size: 1rem;
}
.answer section .content .card-list .card .meta .tag  {
border: none;
font-weight: bold;
font-size: 1.5rem;
}
.answer section .content .card-list .card .author  {
    margin: 0.5rem 0;
}

.answer section .content .card-list .card ul {
list-style: none;
}


@media (max-width: 599px) {
  .answer section .content .card-list {
    grid-template-columns: 1fr;    /* 1列 */
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .answer section .content .card-list {
    grid-template-columns: repeat(2, 1fr); /* 2列 */
  }
}
@media (min-width: 960px) {
  .answer section .content .card-list {
    grid-template-columns: repeat(3, 1fr); /* 3列 */
  }
}





/* ローカルナビ */
.lower-local-nav {
    margin-top: 156px;
}
.lower-local-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 91px;
    width: 85.67%;
    margin: 0 auto;
    justify-content: center;
}
.lower-local-nav ul::after {
	content: "";
	display: block;
	flex: 1 1 38.98%;
}
.lower-local-nav ul li {
	flex: 1 1 38.98%;
	min-height: 110px;
	background: #184C71;
	border-radius: 10px;
}
.lower-local-nav ul li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 5.86% 22.39%;
	padding: 27px 103px;
	font-size: 1.6rem;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}
.lower-local-nav ul li a img {
	position: absolute;
	top: 50%;
	left: 4.34%;
	display: block;
	transform: translateY(-50%);
}
.lower-local-nav ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 19px;
    bottom: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

@media (max-width: 1120px) {
	.lower-local-nav {
	    margin-top: 75px;
	}
	.lower-local-nav ul {
		display: block;
	}
    .lower-local-nav ul li {
        min-height: auto;
        height: 104px;
    }
	.lower-local-nav ul li + li {
		margin-top: 20px;
	}
}

/* 行政一覧 */
.lower-cf-card-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px 6.77%;
	margin-top: 60px;
}
.lower-cf-card-item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 1em;
	padding: 17px 7.27% 30px;
	border-radius: 20px;
	background: #fff;
}
.lower-cf-card-title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2;
	text-align: center;
	color: #184C71;
}
.lower-cf-card-text {
	font-size: 1.6rem;
	line-height: 1.4;
}
.lower-cf-card-img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}
.lower-cf-card-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46.8%;
    height: 50px;
    margin: 20px auto 0;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    background: #184C71;
}
.lower-cf-card-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 19px;
    bottom: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

/* 行政詳細 */
.lower-detail {
    margin-top: 40px;
}
.lower-detail .lower-box-1col {
    padding: 60px 5.08%;
}
/* .lower-detail .lower-box-1col > div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
}
.lower-detail .lower-box-1col > div iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.41%;
} */

.tableauUrl a {
	position: relative;
	display: inline-block;
}

.tableauUrl a::after {
	background: #000;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(1, 1);
	transform-origin: left top;
	transition: transform .3s;
	width: 100%;
}

.tableauUrl a:hover::after {
	transform-origin: right top;
	transform: scale(0, 1);
}

/* ローカルナビ02 */
.lower-local-nav02 {
	margin-top: 100px;
}
.lower-local-nav02-title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	color: #184C71;
}
.lower-local-nav02 ul {
	display: flex;
	width: 100%;
	margin: 34px auto 0;
}
.lower-local-nav02 ul li {
	flex: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.lower-local-nav02 ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.lower-local-nav02 ul li span {
	flex: 1;
	display: flex;
	margin-top: 12px;
	font-size: 2.2rem;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.lower-local-nav02 ul li span::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: .5em;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
}

/* お知らせ一覧 */
.lower-news-list {
	margin-top: 42px;
}
.lower-news-list .lower-box-1col + .lower-box-1col {
	margin-top: 20px;
}
.lower-news-list .lower-box-1col a {
	position: relative;
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 24px 3.27%;
	padding: 23px 4.74% 23px 2.11%;
}
.lower-news-list .lower-box-1col a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 3.63%;
    bottom: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #184C71;
    border-right: 2px solid #184C71;
    transform: rotate(45deg);
}
.lower-news-info {
	grid-row: 1;
	grid-column: 2;
	display: flex;
	gap: 2.23%;
	padding-top: 8px;
}
.lower-news-date {
	padding-top: 3px;
	line-height: 1.4;
}
.lower-news-tag {
	flex: 1;
	display: flex;
	gap: .5em;
	flex-wrap: wrap;
}
.lower-news-tag li {
	padding: 5px 24px;
	text-align: center;
	line-height: 1;
	color: #fff;
	border-radius: 13px;
	background: #72B365;
}
.archive-news-img {
	grid-row: span 3;
	grid-column: 1;
    display: flex;
		aspect-ratio: 1 / 1;
		overflow: hidden;
}
.archive-news-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
}
.archive-news-title {
	grid-row: 2;
	grid-column: 2;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
}
.no-news {
    padding: 100px 0;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #184C71;
}

/* お知らせ一覧ページネーション */
.news-pagination {
    margin-top: 80px;
}
.news-pagination ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.news-pagination li a,
.news-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #184C71;
    border-radius: 50%;
    color: #184C71;
}
.news-pagination li span.current {
    background: #184C71;
    color: #fff;
    border-color: #184C71;
}

/* お知らせ詳細 */
.lower-news-detail {
	margin-top: 40px;
}
.lower-news-detail .lower-box-1col {
	padding: 60px 16.52% 100px;
}
.detail-news-img {
	text-align: center;
}
.detail-news-img img {
    height: auto;
	border-radius: 20px;
}
.lower-news-detail .lower-news-info {
	margin-top: 30px;
}
.detail-news-title {
	margin-top: 20px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
}
.detail-news-text {
	margin-top: 40px;
}

.detail-news-text a {
	color: #184c71;
	position: relative;
	display: inline-block;
}

.detail-news-text a::after {
    background: #000;
    bottom: 5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform .3s;
    width: 100%;
}

.detail-news-text a:hover::after {
	transform-origin: right top;
	transform: scale(0, 1);
}


.detail-news-text p {
	line-height: 2.3;
}
.detail-news-text > * + * {
	margin-top: 1em;
}
.detail-news-img-group {
	display: flex;
	/* justify-content: space-between; */
	margin-top: 60px;
	justify-content: center;
	gap: 30px;
}
.detail-news-img-item {
	flex-basis: 45.56%;
}
.detail-news-img-item img {
    border-radius: 20px;
}

/* お知らせ詳細ページネーション */
.news-post-nav {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 65px;
}
.news-post-nav div {
    flex: 0 1 220px;
}
.news-post-nav div a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    font-size: 1.8rem;
    color: #fff;
    background: #184C71;
    border-radius: 10px;
}
.news-post-nav div.prev a::before,
.news-post-nav div.next a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.news-post-nav div.prev a::before {
    left: 19px;
    transform: rotate(225deg);
}
.news-post-nav div.next a::after {
    right: 19px;
    transform: rotate(45deg);
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignright {
	display: block;
	margin-left: auto;
	margin-right: 0;
}

/* プライバシーポリシー */
.lower-privacy {
    margin-top: 85px;
}
.lower-content .lower-privacy h2 {
    margin: 1.5em 0 0;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6;
    text-align: left;
}
.lower-privacy *:not(h2) {
    font-size: 1.6rem;
    line-height: 1.6;
}
.lower-privacy ul li {
    position: relative;
    padding-left: 1em;
}
.lower-privacy ul li::before {
    content: "・";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.lower-privacy ol {
    counter-reset: ol-count;
}
.lower-privacy ol li {
    position: relative;
    padding-left: 1em;
    counter-increment: ol-count;
}
.lower-privacy ol li::before {
    content: counter(ol-count) ". ";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 800px) {
	/* 下層ヘッダー*/
	header > article {
		gap: 12px 16px;
		padding: 16px 10px;
	}
	header > article > h1.logo-lower{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	header > article > h1.logo-lower img {
		width: 130px;
	}
	header > article > h1.logo-lower span {
		font-size: clamp(.9rem, 1.875vw, 1.2rem);
	}
    /* 下層ヘッダーtype-aかつスマホ時のみ*/
    header.header-type-a {
        background: #fff;
    }
    /* メインビジュアル */
    .lower-mv {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }
    .lower-mv.type-a,
    .lower-mv.type-b {
        min-height: auto;
        height: auto;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
    }
    .lower-mv.type-a {
        margin-top: 220px;
        padding: 3.12vw 0;
        background: url("../img/lower/bg-lower_mv_rv.png") no-repeat center / cover;
    }
    .lower-mv.type-b {
        margin-top: 0;
		padding: 95px 0 3.12vw;
        background: url("../img/lower/bg-lower_mv_ci.png") no-repeat center / cover;
    }
    .lower-mv.type-a h1,
    .lower-mv.type-b h1 {
        font-size: 1.8rem;
        font-size: clamp(1.7rem, 3.12vw, 2rem);
        line-height: 1;
    }
    .lower-mv.type-a p,
    .lower-mv.type-b p {
        margin: 1.56vw 10px 0;
        font-size: clamp(1.3rem, 2.65vw, 1.7rem);
    }

    /* メインビジュアル（お知らせ＆その他） */
    .lower-mv.type-c {
		min-height: auto;
        height: calc(27.5vw + 95px);
        padding-bottom: 6.25vw;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
    }
    .lower-mv.type-c h1 p {
        font-size: clamp(4.5rem, 15vw, 6.5rem);
        font-size: clamp(6.62rem, 14.49vw, 9.28rem);
		line-height: .75;
		/* overflow-wrap: break-word; */
		/* word-break: normal; */
    }
    .lower-mv.type-c h1 span {
        margin-top: -.75em;
        font-size: clamp(1.7rem, 3.12vw, 2rem);
    }

    /* type-a,b用 コンテンツラッパー */
    .lower-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    .lower-container {
        display: block;
        padding: 0;
        box-sizing: border-box;
    }

    /* type-a,b用 メインコンテンツ */
    .lower-container .lower-content {
		width: 100%;
        margin: 0;
        padding: 14px 10px 0;
    }

    /* type-a,b用 疑似レイアウト */
    .lower-container::after {
        display: none;
    }

    /* type-a,b用 サイドナビ */
    .lower-sidebar {
        left: 0;
        width: 100%;
        margin-top: 0;
    }
    .lower-sidebar-nav {
        position: fixed;
        top: 96px;
        width: 100%;
    }
    .lower-sidebar-nav ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		border-top: 1px solid #184C71;
		border-left: 1px solid #184C71;
	}
    .lower-sidebar-nav ul li {
		border-right: 1px solid #184C71;
		border-bottom: 1px solid #184C71;
		background: #fff;
	}
    .lower-sidebar-nav ul li a {
        padding: 20px 5px;
        font-size: 1.6rem;
    }

    /* メインコンテンツ */
    .lower-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 10px 0;
    }

	/* 下層 h2 */
	.lower-content h2 {
		margin-top: 10px;
	}
	.lower-content h2 p {
		font-size: 6.5rem;
		font-size: clamp(6.62rem, 14.49vw, 9.28rem);
		line-height: .75;
		/* overflow-wrap: break-word; */
		/* word-break: normal; */
	}
	.lower-content h2 span {
		margin-top: -.75em;
		font-size: 1.8rem;
		font-size: clamp(1.7rem, 3.12vw, 2rem);
	}

    /* パンくずリスト */
    .lower-breadcrumd ul {
        font-size: 1.1rem;
    }

    /* type-a,b用 セクション */
    .lower-container section + section {
        margin-top: 60px;
    }

    /* lower-box-1col */
    .lower-box-1col {
        background: #fff;
        border-radius: 20px;
    }

    /* type-a,b用 lower-box-1col */
    .lower-container .lower-box-1col {
        padding: 0 5% 40px;
    }

    /* 主な機能 */
    .lower-function-list {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 40px;
        margin: 0 auto;
    }
    .lower-function-list li strong {
        font-size: 1.6rem;
    }
    .lower-function-list li p {
        margin-top: 7px;
        font-size: 1.4rem;
    }
    .lower-function-lead {
        display: block;
        margin-top: 47px;
        font-size: 1.4rem;
    }

    /* 年度切り替えナビ */
    .lower-dashboard-list {
        margin: 40px auto;
    }
    .lower-dashboard-list ul {
        display: flex;
        flex-wrap: wrap;
        border-radius: 20px;
    }
    .lower-dashboard-list ul li {
        flex-basis: calc(100% / 3);
        background: #fff;
    }
	.lower-dashboard-list ul li:nth-child(3n) + li {
		border-left: none;
	}
	.lower-dashboard-list ul li:nth-child(n+4) {
		border-top: 1px solid #184C71;
	}
    .lower-dashboard-list ul li.activ {
        background: #184C71;
    }
    .lower-dashboard-list ul li a {
        display: flex;
        justify-content: center;
        padding: 11px .5em;
        font-size: 1.6rem;
        line-height: 1.5;
        color: #1A3661;
        text-align: center;
    }
    .lower-dashboard-list ul li.activ a {
        color: #fff;
        pointer-events: none;
    }

    /* lower-***-lead */
    .lower-box-1col h2 + p {
        font-size: 1.6rem;
        line-height: 1.4;
    }

		.lower-box-1col h2 + p span.indent {
    display: block;
    padding: 0 0 0 20px;
    text-indent: -16px;
    margin: 0 0 5px;
}

    /* ダッシュボード */
    #dashBoardArea {
        margin-top: 30px;
    }
    .dbChangeBtn li {
        flex: 0 1 180px;
        font-size: 1.4rem;
    }
    #dashBoardArea .dbCont {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
    #dashBoardArea .dbCont li div {
        min-height: 720px;
    }

	/* レコメンド */
	#recommend .innerBox {
		padding: 0 20px 0;
	}
	.recommendRead {
		margin: 30px auto 0;
		font-size: 1.6rem;
	}
	.recommendRead > p {
		font-size: 1.6rem;
	}
	.recommendSarchTitle {
		padding: 5px 1em;
		margin-top: 30px;
		font-size: 1.8rem;
	}
	.recommendBtn button {
		display: flex;
		max-width: 350px;
		width: 100%;
		height: 80px;
		align-items: center;
		text-align: center;
		color: #fff;
		background: #1A3661;
		transition: all .3s ease-in;
		margin: 0 auto 80px;
		justify-content: center;
	}
	.recommendResult {
		max-width: 1100px;
		margin: 0 auto;
		font-size: 1.8rem;
	}
	.recommendResult dl dt,
	.recommendResult dl dd {
		font-size: 1.6rem;
	}

    /* 自由検索 */
	#freeSearch {
		margin: 50px 0 0;
	}
	#freeSearch .freeSearchRead {
        margin: 0 0 35px;
        font-size: 1.8rem;
    }
    #freeSearch textarea {
        border-radius: 35px;
        padding: 15px 5px 15px 31px;
        border: 1px solid #1A3661;
        font-size: 1.8rem;
        width: 100%;
        background: #fff;
        line-height: 22px;
        min-height: 3em;
    }
    #freeSearch .question {
        max-width: 900px;
        margin: 0 auto 60px;
    }
    #freeSearch .answer {
		width: 100%;
        margin: 0 auto;
		padding: 10px;
    }
	.answerContentWrap {
		height: 360px;
	}

    /* ローカルナビ */
    .lower-local-nav {
        margin-top: 75px;
    }
    .lower-local-nav ul {
        display: block;
        max-width: 520px;
        width: 86.66%;
        margin: 0 auto;
    }
    .lower-local-nav ul::after {
        content: "";
        display: block;
        flex: 1 1 38.98%;
        width: 38.98%;
    }
    .lower-local-nav ul li {
        min-height: auto;
        height: 62px;
    }
	.lower-local-nav ul li + li {
		margin-top: 20px;
	}
    .lower-local-nav ul li a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 5.86% 22.39%;
        padding: 27px 10.57%;
        font-size: 1.4rem;
        line-height: 1.4;
        text-align: center;
        color: #fff;
    }
    .lower-local-nav ul li a img {
        position: absolute;
        top: 50%;
        left: 4.34%;
        display: block;
        width: 43px;
        height: auto;
        transform: translateY(-50%);
    }
    .lower-local-nav ul li a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 19px;
        bottom: 0;
        display: block;
        width: 10px;
        height: 10px;
        margin: auto;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
    }

    /* 行政一覧 */
    .lower-cf-card-list {
        display: block;
        margin-top: 10px;
    }
    .lower-cf-card-item + .lower-cf-card-item {
        margin-top: 30px;
        padding: 17px 5% 30px;
        border-radius: 20px;
        background: #fff;
    }
    .lower-cf-card-title {
        font-size: 1.8rem;
    }
    .lower-cf-card-text {
        font-size: 1.6rem;
    }
    .lower-cf-card-img img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }
    .lower-cf-card-btn {
        width: 55.31%;
        height: 37px;
        margin: 20px auto 0;
        font-size: 1.3rem;
	}
	.lower-cf-card-btn::after {
	    width: 7px;
	    height: 7px;
	}

    /* 行政詳細 */
    .lower-detail {
        margin-top: 10px;
    }
    .lower-detail .lower-box-1col {
        padding: 17px 5%;
    }
    /* .lower-detail .lower-box-1col > div {
        min-height: 720px;
    } */

	/* ローカルナビ02 */
	.lower-local-nav02 {
		margin-top: 75px;
	}
	.lower-local-nav02-title {
		font-size: 1.8rem;
	}
	.lower-local-nav02 ul {
		display: flex;
		gap: 32px 8.66%;
        /* justify-content: center; */
				justify-content: space-between;
		width: 88.66%;
		margin: 34px auto 0;
		flex-wrap: wrap;
	}
	.lower-local-nav02 ul li {
		flex: 0 0 34%;
	}
	.lower-local-nav02 ul li span {
		margin-top: 16px;
		font-size: 1.3rem;
	}
	.lower-local-nav02 ul li span::after {
	    content: "";
	    display: inline-block;
	    width: 6px;
	    height: 6px;
	    margin-left: .5em;
	    border-top: 1px solid #000;
	    border-right: 1px solid #000;
	    transform: rotate(45deg);
	}

	/* お知らせ一覧 */
	.lower-news-list {
		margin-top: 10px;
	}
	.lower-news-list .lower-box-1col + .lower-box-1col {
		margin-top: 10px;
	}
	.lower-news-list .lower-box-1col a {
		grid-template-columns: 32.69% 1fr;
		gap: 14px 2.69%;
		padding: 20px 9.62% 20px 5.76%;
	}
	.lower-news-info {
		grid-column: span 3;
		gap: 9px;
		padding-top: 8px;
	}
	.lower-news-date {
		padding-top: 3px;
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.lower-news-tag li {
		padding: 5px 12px;
		font-size: 1.6rem;
		border-radius: 13px;
		background: #72B365;
	}
	.archive-news-img {
		grid-row: span 2;
	}
	.archive-news-title {
		font-size: 1.7rem;
	}
	.no-news {
	    padding: 50px 0;
	    font-size: 1.6rem;
	}

    /* お知らせ一覧ページネーション */
    .news-pagination {
        margin-top: 50px;
    }
    .news-pagination ul {
        gap: 2.83%;
    }
    .news-pagination li a,
    .news-pagination li span {
        width: 30px;
        height: 30px;
    }

	/* お知らせ詳細 */
	.lower-news-detail {
		margin-top: 10px;
	}
	.lower-news-detail .lower-box-1col {
		padding: 15px 2.5% 35px;
	}
	.detail-news-img img {
		border-radius: 10px;
	}
	.lower-news-detail .lower-news-info {
		margin-top: 20px;
	}
	.detail-news-title {
		margin-top: 12px;
		font-size: 2rem;
	}
	.detail-news-text {
		margin-top: 15px;
	}
	.detail-news-text p {
		font-size: 1.7rem;
	}
	.detail-news-img-group {
		justify-content: initial;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 40px;
	}
	.detail-news-img-item {
		flex-basis: 100%;
	}
    .detail-news-img-item img {
        border-radius: 10px;
    }

	/* お知らせ詳細ページネーション */
	.news-post-nav {
	    justify-content: space-between;
	    gap: initial;
	    margin-top: 50px;
	}
	.news-post-nav div {
	    flex: 0 1 43.33%;
	}
	.news-post-nav div a {
	    height: 74px;
	    font-size: 1.6rem;
	}

    /* プライバシーポリシー */
    .lower-privacy {
        margin-top: 42px;
    }
    .lower-content .lower-privacy h2 {
        font-size: 1.6rem;
    }
    .lower-privacy *:not(h2) {
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 600px) {
	.recommendResult dl {
	    display: block;
	}
	.recommendResult dl dd {
		border: 1px solid #B9B9B9;
		background: #fff;
		padding: 25px 10px 25px 23px;
		margin: -1px 0 0 0;
	}
	.recommendResult dl dd:nth-of-type(n+2) {
		margin: -1px 0 0 0;
	}

	.lower-sidebar-nav {
        position: fixed;
        top: 95px;
        width: 100%;
        z-index: 9;
    }
}

@media screen and (max-width: 768px) {
	    .lower-sidebar-nav {
        position: fixed;
        top: 97px;
        width: 100%;
        z-index: 9;
    }

}

@media screen and (max-width: 500px) {
	    .lower-sidebar-nav {
        position: fixed;
        top: 93px;
        width: 100%;
        z-index: 9;
    }

}

@media screen and (max-width: 341px) {
	    .lower-sidebar-nav {
        position: fixed;
        top: 103px;
        width: 100%;
        z-index: 9;
    }

}

/*========================
*
*	このサイトについて
*
=============================*/
.aboutArea .read {
	margin: 30px 0 100px;
	line-height: 1.7;
}

.aboutArea .read p {
	margin: 0 0 15px;
}

.aboutArea h4 {
	font-size: 2.4rem;
    color: #184C71;
		font-weight: bold;
		text-align: center;
		margin: 0 0 60px;
}

.aboutArea .imgBox {
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 40px;
}

.aboutArea .imgBox img {
	width: 100%;
}

.privacyBtn {
    width: 30%;
    margin: 100px auto 0;
}

.privacyBtn a {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 27px 22px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    background: #184c71;
    width: 100%;
    position: relative;
}

.privacyBtn a:after {
	    content: "";
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

@media screen and (max-width: 800px) {
	.aboutArea .imgBox {
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 20px;
}

.privacyBtn {
    width: 100%;
    margin: 100px auto 0;
}


}

/*========================
*
*	サイト内検索結果
*
=============================*/

.search-results {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	margin: 40px 0 0 0;
}

.search-results li {
	margin: 0 0 20px;
}

.search-results li a {
	color: #184C71;
  padding: 0 26px 0 0;
}

@media screen and (max-width: 800px) {
.search-results {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
}
}

/*========================
*
*	お問合せ
*
=============================*/

.contactRead {
    text-align: left;
    margin: 0 0 30px;
    font-size: 2rem;
    line-height: 1.5;
}

.contactBox{
  width: 100%;
  padding: 24px;
	margin: 85px 0 0 0;
	background: #fff;
	border-radius: 20px;
}

.contactBox dt{
	font-weight: bold;
	font-size: 2rem;
}
.contactBox dt p{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 「必須」バッジ（dt内のspan） */
.contactBox dt p span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 4px;
  background: #f36060;  /* 要件 */
  color: #fff;          /* 要件 */
  line-height: 1.2;
  font-weight: 700;
	font-size: 1.4rem;
}

/* dd */
.contactBox dd{
  margin: 0 0 45px;
  padding: 0;
}
.contactBox dd p{
  margin: 0;
}

/* 入力欄：枠線色 #184C71（要件） */
.contactBox input[type="text"],
.contactBox input[type="email"],
.contactBox textarea{
  width: 100%;
  border: 1px solid #184C71;   /* 要件 */
  border-radius: 6px;
  padding: 14px 14px;
  background: #fff;
  outline: none;
}

/* textarea 高さ（画像寄せ） */
.contactBox textarea{
  min-height: 200px;
  resize: vertical;
}

/* フォーカス（色は枠線指定に合わせる） */
.contactBox input[type="text"]:focus,
.contactBox input[type="email"]:focus,
.contactBox textarea:focus{
  border-color: #184C71;
  box-shadow: 0 0 0 3px rgba(24, 76, 113, 0.18);
}

/* =========================
   チェックボックス：中央寄せ
   ※label装飾 + CSSチェックマーク
========================= */

/* チェックエリア中央 */
.contactBox > div:nth-of-type(1){
  display: flex;
  justify-content: center; /* 要件：左右中央 */
  margin: 18px 0 26px;
}

/* CF7の構造に合わせてlabelを整形 */
.contactBox .wpcf7-acceptance label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: #111;
}

/* checkbox枠線（要件：枠線色 #184C71） */
.contactBox input[type="checkbox"]{
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 2px solid #184C71; /* 要件 */
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer;
  outline: none;
}

/* チェックマーク（要件：色 #f36060） */
.contactBox input[type="checkbox"]::after{
		content: "";
    position: absolute;
    left: 7px;
    top: -2px;
    width: 11px;
    height: 21px;
    border-right: 5px solid #f36060;
    border-bottom: 5px solid #f36060;
    transform: rotate(40deg);
    opacity: 0;
	}

/* チェック時に表示 */
.contactBox input[type="checkbox"]:checked::after{
  opacity: 1;
}

/* フォーカス可視化 */
.contactBox input[type="checkbox"]:focus-visible{
  box-shadow: 0 0 0 3px rgba(24, 76, 113, 0.18);
}

/* =========================
   送信ボタン：中央寄せ
========================= */

/* ボタンエリア中央 */
.contactBox > div:nth-of-type(2){
  display: flex;
  justify-content: center; /* 要件：左右中央 */
}

.contactBox > div:nth-of-type(2) p {
	width: 30%;
}

/* submit（要件：背景 #184C71 / 文字 #fff） */
.contactBox input[type="submit"]{
  width: min(360px, 100%);
  height: 64px;
  border: none;
  border-radius: 999px;
  background: #184C71; /* 要件 */
  color: #fff;         /* 要件 */
  font-weight: 700;
  cursor: pointer;
	text-align: center;
	font-size: 1.8rem;
}

/* disabled 表示（HTMLに disabled が付いているので見た目調整） */
.contactBox input[type="submit"][disabled]{
  opacity: 0.55;
  cursor: not-allowed;
}

/* hover */
.contactBox input[type="submit"]:hover{
  filter: brightness(0.98);
}

/* ボタンフォーカス */
.contactBox input[type="submit"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(24, 76, 113, 0.22);
}

/*==== エラー文 ===============*/

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #E91E63 !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 10px !important;
    border: 4px solid #E91E63 !important;
    background: #f9ce00;
}

/*========================
*
*	職員専用ページ
*
=============================*/

/*------------------
　ログインページ
---------------------------------------------*/
.loginBox {
	width: 100%;
    padding: 24px;
    margin: 85px 0 0 0;
    background: #fff;
    border-radius: 20px;
}

.loginLead {
	text-align: left;
    margin: 0 auto 30px;
    font-size: 2rem;
    line-height: 1.5;
		max-width: 800px;
}

.memberLogin {
	max-width: 800px;
	margin: 0 auto;
}

.memberLogin__form {
	width: 100%;
}

.memberLogin__fieldset {
	width: 100%;
}

.memberLogin__row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 18px;
}

.memberLogin__row:first-child {
	margin-top: 0;
}

.memberLogin__row label {
	flex: 0 0 170px;
	margin: 0;
	font-weight: 700;
	line-height: 1.4;
}

.memberLogin__row input[type="text"],
.memberLogin__row input[type="password"],
.memberLogin__row input[type="email"],
.memberLogin__fieldset > p input {
	width: 100%;
	border: 1px solid #184C71;
	border-radius: 6px;
	padding: 14px 14px;
	background: #fff;
}

.memberLogin__fieldset > p {
	text-align: center;
}

.memberLogin__fieldset > p:nth-of-type(1) {
	margin: 50px 0 10px;
}

.memberLogin__fieldset > p input  {
	width: 200px;
}




.memberLogin__buttons {
	margin-top: 32px;
	text-align: center;
}

.memberLogin__submit {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 210px;
	min-height: 56px;
	border: none;
	border-radius: 6px;
	background: #184C71;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	font-size: 1.8rem;
}

.memberLogin__link {
	margin-top: 16px;
	text-align: center;
}

.memberLogin__error {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid #d63638;
	border-radius: 6px;
	background: #fff5f5;
	color: #d63638;
}

.memberLogin__error p {
	margin: 0;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.memberLogin__row {
		display: block;
	}

	.memberLogin__row label {
		display: block;
		margin-bottom: 8px;
	}

	.memberLogin__row input[type="text"],
	.memberLogin__row input[type="password"],
	.memberLogin__row input[type="email"] {
		display: block;
		width: 100%;
	}

	.memberLogin__submit {
		width: 100%;
	}
}

/*------------------
　職員専用ページ
---------------------------------------------*/

.member-files-page__inner {
	width: min(100% - 40px, 1100px);
	margin-inline: auto;
	padding-block: 40px 80px;
}

.member-files-page__title {
	margin: 0 0 16px;
}

.member-files-page__content {
	margin-bottom: 40px;
}

.memberLead {
	margin: 0 0 40px;
}

.memberLead p {
	line-height: 1.5;
}

.member-files-updates {
	margin-bottom: 48px;
	padding: 24px;
	border: 1px solid #d9d9d9;
	background: #fafafa;
}

.member-files-updates__title,
.member-files-section__title {
	margin: 0 0 16px;
	color: #184C71;
    font-size: 3rem;
}

.member-files-updatesBox {
    max-height: 200px;
    overflow-x: auto;
    padding: 0 20px;
}

.anchorBtn {
	margin: 0 0 80px;
}

.anchorBtn ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.anchorBtn ul li {
	width: 40%;
}

.anchorBtn ul li a {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background: #184C71;
	color: #fff;
	padding: 14px 24px;
	flex-direction: column;
}

.anchorBtn ul li a:after {
		content: "";
		width: 10px;
		height: 10px;
		margin: auto;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(135deg);
}

.member-files-updates__list,
.member-files-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-files-updates__item,
.member-files-list__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #e5e5e5;
}

.member-files-updates__date {
	flex: 0 0 auto;
	min-width: 88px;
	font-weight: 700;
}

.member-files-updates__link,
.member-files-list__link {
	color: inherit;
	text-decoration: underline;
	word-break: break-word;
}

.member-files-updates__link {
	flex: 1 1 auto;
}

.member-files-list__check {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.member-files-list__check span {
	font-size: 12px;
}

.member-files-list__link {
	flex: 1 1 auto;
}

.member-files-section + .member-files-section {
	margin-top: 40px;
}

.member-files-form__actions {
	margin-top: 24px;
}

.member-files-form__button {
	appearance: none;
	border: none;
	padding: 14px 24px;
	background: #184C71;
	color: #fff;
	cursor: pointer;
}

.member-files-form__button span {
	padding: 0 0 0 10px;
}

.mfl-file-type {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.mfl-file-type .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
}

.mfl-file-type__text {
	display: inline-block;
	padding: 3px 8px;
	border: 1px solid #cfcfcf;
	border-radius: 9999px;
	line-height: 1.2;
	font-size: 12px;
}

.freeSearchBtn {
	margin: 100px 0 0 0;
}

.freeSearchBtn ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.freeSearchBtn li {
	width: calc((100% - 30px) / 4);
}

.freeSearchBtn li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px 15px;
	color: #fff;
	background: #184C71;
	font-size: 1.4rem;
	text-align: center;
	text-decoration: none;
	position: relative;
}

.freeSearchBtn li a:after {
	content: "";
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.freeSearchBtn li:nth-of-type(2) a {
	background: #1c6499;
}
.freeSearchBtn li:nth-of-type(3) a {
	background: #086eb9;
}
.freeSearchBtn li:nth-of-type(4) a {
	background: #2382c5;
}

.freeSearchBtn li a .freeSearchBtnTit {
	font-size: 2rem;
	margin: 0 0 10px;
}

.freeSearchBtn li a p:not(.freeSearchBtnTit) {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	width: 100%;
	margin: 0;
}

.dataLinkage {
	position: fixed;
    right: 10px;
}

.dataLinkage a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: auto;
    border-radius: 20px;
    border: 4px solid #184C71;
    color: #184C71;
    padding: 10px;
    font-size: 1.4rem;
    background: #fff;
}

.dataLinkage a svg {
	width: 100%;
}

@media (max-width: 800px) {
	.member-files-updates__item,
	.member-files-list__item {
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.member-files-updates__date {
		min-width: 0;
	}

	.member-files-updatesBox {
    max-height: 200px;
    overflow-x: auto;
    padding: 0 10px 0 0;
}

.freeSearchBtn li {
		width: calc((100% - 10px) / 2);
	}
}

/*========================
*
*	404ページ
*
=============================*/

.notFoundBox {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	margin: 40px 0 0;
}

.notFoundTit {
	    font-family: 'Iceland', cursive;
    font-size: 20rem;
    color: rgba(24, 76, 113, 0.15);
		margin: 0 0 50px;
		text-align: center;
}

.notFound__text {
	text-align: center;
    font-size: 2rem;
    line-height: 1.5;
}