@charset "UTF-8";

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

組合の概要／条例、規則　2026/1より

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

/*
	* Button_PageLink（左側に下矢印アイコン、ページ内リンク）
	* caution（注意書き）
	* TitleNedo（見出し_H4）
	* Page_Nav（ページ内リンク）
	* table__JK／table__JK_kokoku（一覧表_複数列）　※横スクロールバーあり
	* 
	* 
 */

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

Button_PageLink（左側に下矢印アイコン） 

------------------------------------------------- */
.Button_PageLink ul {
	margin: 0 0 40px;
	display: flex;
	/*flex-flow: row wrap;*/
	list-style-type: none;
	position: relative;
}
.Button_PageLink li {
	width: calc(25% - 15px);
	margin-right: 30px;
	box-sizing: border-box;
}
.Button_PageLink li:last-child {
	margin-right: 0px;
}
.Button_PageLink li a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #FF9881;
	background: rgb(244,230,220);
background: linear-gradient(0deg, rgba(244,230,220,1) 16%, rgba(255,255,255,1) 66%);
	padding: 10px 5px;
	border-radius: 7px;
	font-size: 1.8rem;
	font-weight: 500;
}
.Button_PageLink li a {
	letter-spacing: 0.3em;
}
.Button_PageLink li a::before {
	content: "";
	display: inline-block;
	background: url("../images/icn_yajirushi__down.png");
	background-repeat: no-repeat;
	background-size: 19px;
	width: 19px;
	height: 19px;
	padding-right: 30px;
}
.Button_PageLink li a:hover {
 opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;
	transition: .3s;
}
@media screen and (min-width: 899px) and (max-width: 1000px) {
.Button_PageLink ul {
	flex-flow: row wrap;
}
.Button_PageLink li {
	width: calc(50% - 25px);
	margin-right: 50px;
	margin-bottom: 15px;
}
.Button_PageLink li:nth-child(2) {
	margin-right: 0px;
}
.Button_PageLink li:nth-child(3) ,.Button_PageLink li:nth-child(4) {
	margin-bottom: 0px;
}
}
@media screen and (max-width: 768px)  {
.Button_PageLink ul {
	margin: 0 0 30px;
}
.Button_PageLink li {
	width: calc(25% - 10px);
	margin-right: 20px;
}
.Button_PageLink li a::before {
	background-size: 14px;
	width: 14px;
	height: 14px;
	padding-right: 20px;
}
.Button_PageLink li a {
	font-size: 1.6rem;
	letter-spacing: 0.2em;
}
}
@media screen and (max-width: 568px)  {
.Button_PageLink li {
	width: calc(25% - 8px);
	margin-right: 16px;
}	
}
@media screen and (max-width: 480px)  {
.Button_PageLink ul {
	flex-flow: row wrap;
	margin: 0 0 20px;
}
.Button_PageLink li:nth-child(2) {
	margin-right: 0px;
}
.Button_PageLink li {
	width: calc(50% - 5px);
	margin-right: 10px;
	margin-bottom: 10px;
}	
}



/* 注意書き */
/* ============================================ */
ul.caution  {
	margin-top: -5px;
	list-style: circle;
	padding-left: 30px;
}	
ul.caution li {
	font-size: 1.5rem;
	margin-bottom: 5px;
}	
@media screen and (max-width: 768px)  {
ul.caution  {
	margin-top: 0px;
}	
}	
@media screen and (max-width: 480px)  {
ul.caution li {
	font-size: 1.4rem;
}	
}	


/* 見出し（H4） */
/* ============================================ */
.Common_Wrp h4.TitleNedo	{			/*  通常  */
	font-weight: 600 !important;
	margin: 10px 0;
}


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

一覧表（複数列）　※横スクロールバーあり

------------------------------------------------- */
.table__JK,
.table__JK_kokoku {
	width: 100%;
}
.table__JK table,
.table__JK_kokoku table {
	width: 100%;
 border-spacing: 0;
 box-sizing: border-box;
	border-collapse:	collapse;
	font-size: 1.6rem;
}
.table__JK th,
.table__JK_kokoku th	{
	background-color:#EEEEEE;
 padding: 10px;
	text-align:center;
	color:	#333333;
 border: solid 1px #cccccc;
	font-weight: 500;
	white-space: nowrap;
}
.table__JK th:nth-child(3)	{
letter-spacing: 0.2em;
}
.table__JK_kokoku th:nth-child(2)	{
letter-spacing: 0.2em;
}
.table__JK td,
.table__JK_kokoku td {
 border: solid 1px #cccccc;
 padding: 10px;
	vertical-align:middle;
}
.table__JK td:not(:nth-child(3))	{
 white-space: nowrap;
}
.table__JK_kokoku td:not(:nth-child(2))	{
 white-space: nowrap;
}
.table__JK td a,
.table__JK_kokoku td a {
	text-decoration: underline;
}
.table__JK td a:hover,
.table__JK_kokoku td a:hover {
	text-decoration: none;
}
@media screen and (min-width: 899px) and (max-width: 1200px) {
.table__JK td:not(:nth-child(3))	{
 white-space: normal;
}
.table__JK_kokoku td:not(:nth-child(2))	{
 white-space: normal;
}
}
@media screen and (max-width: 640px)  {
.table__JK,
.table__JK_kokoku	{
	overflow-x: scroll;
	white-space: nowrap;
	width: 100%;
}
.table__JK table,
.table__JK_kokoku table	{
	width: 640px;
}
}
@media screen and (max-width: 480px)  {
.table__JK table,
.table__JK_kokoku table	{
	font-size: 1.4rem;
}
}


