@charset "UTF-8";

/* ログイン画面 */
.login {
    position: relative;
    margin: 30px auto;
    padding: 20px;
    max-width: 700px;
    background: white;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.login:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.login h1 {
    margin: -20px -20px 21px;
    padding: 12px 8px 7px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #555;
    text-align: center;
    text-shadow: 0 1px white;
    background: #f3f3f3;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 3px 3px 0 0;
    background-image: -webkit-linear-gradient(top, whiteffd, #eef2f5);
    background-image: -moz-linear-gradient(top, whiteffd, #eef2f5);
    background-image: -o-linear-gradient(top, whiteffd, #eef2f5);
    background-image: linear-gradient(to bottom, whiteffd, #eef2f5);
    -webkit-box-shadow: 0 1px whitesmoke;
    box-shadow: 0 1px whitesmoke;
}

.login p:first-child {
  margin-top: 0;
}

.login p.remember_me {
  line-height: 31px;
}

.login p.remember_me label,
.login p.remember_me span {
  font-size: 1.4rem;
  color: #777;
  cursor: pointer;
}

.login p.remember_me span i {
    font-size: 1.4rem;
    margin-right:0.3em;
    color: #FC8731;
}


.login p.remember_me input {
  position: relative;
  bottom: 1px;
  margin-right: 4px;
  vertical-align: middle;
}

.login p.submit {
  text-align: right!important;
}

:-moz-placeholder {
  color: #c9c9c9 !important;
  font-size: 1.3rem!important;
}

::-webkit-input-placeholder {
  color: #ccc!important;
  font-size: 1.3rem!important;
}

.login input[type="text"], .login input[type="password"] {
	padding: 0 10px!important;
	width: 100%!important;
	max-width: 300px!important;
	height: 34px!important;
	color: #404040!important;
	background: white!important;
	border: 1px solid!important;
	border-color: #c4c4c4 #d1d1d1 #d4d4d4!important;
	border-radius: 2px!important;
	outline: 5px solid #eff4f7!important;
	-moz-outline-radius: 3px!important;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12) !important;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12)!important;
	margin: 5px auto!important;
	box-sizing: border-box!important;
}

.login input[type="text"]:focus, .login input[type="password"]:focus {
  border-color: #7dc9e2;
  outline-color: #dceefc;
  outline-offset: 0;
}

/* 表示領域が575.98px以下の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (max-width: 575.98px) {
.login {
    margin: 0px auto;
  }
}

/* 会員名簿関係
------------------------------------------------------------ */
/* ログイン中の表示 */
#mem2_container {
	display: flex;
  justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  background: #F2F2F2;
	margin: 0 auto;
  flex-direction: column;
  }

#mem2_container div {
	background:#F6F6F6;
  padding: 10px;
  border-bottom: 2px solid #FFF;
}

#mem2_container div span.txt_hd { /* header2内の項目名 */
	color: #162C6B;
	font-size: 1.2rem;
	display: block;
}

header div#logo_area {
  padding: 10px;
  margin: 0;
}

/* ログアウトボタン */
header div#login_area {
	padding: 0;
  margin: 0;
	font-size: 13px;
}
header div#login_area a {
	float: right;
	border-radius: 20px;
	padding: 7px 7px 6px;
	width:140px;
  margin: 0 10px 10px;
	text-align: center;
	background: #777;
	border : 2px solid #777;
	display: block;
}
header div#login_area a,
header div#login_area a:visited {
	color: #fff;
	text-decoration: none;
}
header div#login_area a:hover {
	background: #555;
}

/* TOPに戻るボタン */
.msr_btn12 {
	margin: 10px;
}
.msr_btn12 a,
.msr_btn12 a:visited {
	width: 100%;
	padding:10px;
	color:#ffffff;
	text-align: center;
	text-decoration: none;
	background: #ff9e44;
	border : 2px solid #ff9e44;
	display: block;
	position:relative;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.msr_btn12 a:hover {
	color:#ff9e44;
	background: #FFF;
}

/* 検索画面 */
.ul_srch01 {
  align-items: center;
  padding: 0;
  margin: 15px 0;
}
.ul_srch01_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.ul_srch01 li,
.ul_srch01_in li {
  margin: 0 5px;
  padding: 0;
}
.ul_srch01 button.btn01 {
  background: #369cb8;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.4rem;
  min-width: inherit;
  width: 100px;
}
.ul_srch01 button:hover {
  color : #fff;
  background : #6dbed4;
  cursor: pointer;
}

@media screen and (min-width:768px) {
	#mem2_container {
		flex-direction: row;
	}
	#mem2_container div {
    border-bottom: none;
  	border-right: 2px solid #FFF;
	}
	#mem2_container div:last-of-type {
  	border-right: none;
	}

	/* TOPに戻るボタン */
	.msr_btn12 a {
		width: 16em;
	}
	.ul_btn01 {
		flex-direction: row;
		justify-content: center;
		margin-bottom: 2em;
		flex-wrap: wrap;
	}
	.ul_btn01 li {
		width: auto;
		min-width: 150px;
		margin: 10px;
	}

/* 会員名簿 メニューボタン */
	.ul_btn02,
	.ul_btn02_admn,
	.ul_btn03_admn {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content:space-between;
		margin-bottom: 2em;
		width: 100%;
	}
	.ul_btn02 button,
	.ul_btn02_admn button,
	.ul_btn03_admn button { 
		font-size: 1.8rem;
	}
	.ul_btn02_mem {
		justify-content:center;
	}
	.ul_btn02_mem li {
		margin: 10px;
	}

	.ul_srch02 {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
	}
	.ul_srch02 li {
		width: 32%;
	}

	/* パスワード送信ページ */
	.dl-pass {
		flex-direction: row;
		justify-content: center;
	}
	.dl-pass dt {
		width: 30%;
		text-align: center;
		padding: 1.2em 0.5em 0;
		min-width: 11rem;
	}
	.dl-pass dd {
		width: 70%;
		padding: 0.2em 0.5em;
	}
}

#mem2_clear {
	clear: both;
/*	text-align: center;*/
	padding-top: 15px;
	padding-bottom: 15px;
}

/* レスポンシブテーブル */
@media screen and (max-width: 1199.98px) {
	/* 検索結果のテーブル横スクロール 下のみバージョン */
	.scroll table {
		width:100%;
	}
	.scroll {
	overflow: auto; /*tableをスクロールさせる*/
	white-space: nowrap; /*tableのセル内にある文字の折り返しを禁止*/
	}
	.scroll::-webkit-scrollbar{ /*tableにスクロールバーを追加*/
		height: 5px;
	}
	.scroll::-webkit-scrollbar-track{ /*tableにスクロールバーを追加*/
		background: #F1F1F1;
	}
	.scroll::-webkit-scrollbar-thumb { /*tableにスクロールバーを追加*/
		background: #BCBCBC;
	}
}

/* 検索結果のテーブル横スクロール */
.wrapper1, .wrapper2 { width: 100%; overflow-x: scroll; overflow-y: hidden; }
.wrapper1 { height: 20px; }
.wrapper2 table {
	width:100%;
}
.div1 { height: 20px; }
.div2 { overflow: none; }

/*フォーム関係
------------------------------------------------------------ */
/* テキストボックス */
.member2 input[type="text"],
.member2 input[type="password"],
.member2 textarea {
	margin: 0.2em 0;
	padding: 0.2em;
	transition: 0.3s;
	border: 1px solid #CCC;
	outline: none;
	background: #fcfceb;
  box-sizing: border-box;
}
.member2 input[type="text"]:focus,
.member2 input[type="password"]:focus,
.member2 textarea:focus {
	border-color: #CCC;
	background: #FFF;
}

/* セレクトボックス */
.member2 select,
table.tbl_form1a select,
table.tbl_form1b select,
table.tbl_form1c select,
table.tbl_form1e select {
	padding: 5px 20px 5px 10px;
	border: 1px solid #CCC;
	border-radius: 3px;
	background: #fcfceb url(../images/icon_arrow.png) right 50% no-repeat;
	background-size: 20px, 100%;
	margin: 0.2em 0;
	max-width: 100% !important;
}
.member2 select:focus,
table.tbl_form1a select:focus,
table.tbl_form1b select:focus,
table.tbl_form1c select:focus,
table.tbl_form1e select:focus {
  background: #FFF url(../images/icon_arrow.png) right 50% no-repeat;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* IE 対応 */
.member2 select::-ms-expand,
table.tbl_form1a select::-ms-expand,
table.tbl_form1b select::-ms-expand,
table.tbl_form1c select::-ms-expand,
table.tbl_form1e select::-ms-expand  {
    display: none;
}

/* チェックボックス、ラジオボタン */
table.tbl_form1a input[type="checkbox"],
table.tbl_form1a input[type="radio"],
table.tbl_form1b input[type="checkbox"],
table.tbl_form1b input[type="radio"],
table.tbl_form1c input[type="checkbox"],
table.tbl_form1c input[type="radio"],
table.tbl_form1e input[type="checkbox"],
table.tbl_form1e input[type="radio"],
.form1 input[type="checkbox"],
.form1 input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	right: 0;
	bottom: 0;
	left: 0;
	height: 20px;
	width: 20px;
	transition:all .15s ease-out 0s;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin: .4rem;
	outline: none;
	border-radius: 10%;
}

table.tbl_form1a label,
table.tbl_form1b label,
table.tbl_form1c label,
table.tbl_form1e label {
	cursor: pointer;
}

/* Checkbox */
table.tbl_form1a input[type="checkbox"]:before,
table.tbl_form1a input[type="checkbox"]:after,
table.tbl_form1b input[type="checkbox"]:before,
table.tbl_form1b input[type="checkbox"]:after,
table.tbl_form1c input[type="checkbox"]:before,
table.tbl_form1c input[type="checkbox"]:after,
table.tbl_form1e input[type="checkbox"]:before,
table.tbl_form1e input[type="checkbox"]:after,
.form1 input[type="checkbox"]:before,
.form1 input[type="checkbox"]:after {
	position: absolute;
	content: "";
	background: #fff;
	transition: all .1s ease-in-out;
}
table.tbl_form1a input[type="checkbox"]:before,
table.tbl_form1b input[type="checkbox"]:before,
table.tbl_form1c input[type="checkbox"]:before,
table.tbl_form1e input[type="checkbox"]:before,
.form1 input[type="checkbox"]:before {
	left: 2px;
	top: 6px;
	width: 0;
	height: 2px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}
table.tbl_form1a input[type="checkbox"]:after,
table.tbl_form1b input[type="checkbox"]:after,
table.tbl_form1c input[type="checkbox"]:after,
table.tbl_form1e input[type="checkbox"]:after,
.form1 input[type="checkbox"]:after {
	right: 9px;
	bottom: 3px;
	width: 2px;
	height: 0;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-moz-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	/*transition-delay: .1s;*/
}
table.tbl_form1a input[type="checkbox"]:checked:before,
table.tbl_form1b input[type="checkbox"]:checked:before,
table.tbl_form1c input[type="checkbox"]:checked:before,
table.tbl_form1e input[type="checkbox"]:checked:before,
.form1 input[type="checkbox"]:checked:before {
	left: 1px;
	top: 8px;
	width: 6px;
	height: 3px;
}
table.tbl_form1a input[type="checkbox"]:checked:after,
table.tbl_form1b input[type="checkbox"]:checked:after,
table.tbl_form1c input[type="checkbox"]:checked:after,
table.tbl_form1e input[type="checkbox"]:checked:after,
.form1 input[type="checkbox"]:checked:after {
	right: 4px;
	bottom: 1px;
	width: 3px;
	height: 13px;
}
table.tbl_form1a input[type="checkbox"]:indeterminate:before,
table.tbl_form1a input[type="checkbox"]:indeterminate:after,
table.tbl_form1b input[type="checkbox"]:indeterminate:before,
table.tbl_form1b input[type="checkbox"]:indeterminate:after,
table.tbl_form1c input[type="checkbox"]:indeterminate:before,
table.tbl_form1c input[type="checkbox"]:indeterminate:after,
table.tbl_form1e input[type="checkbox"]:indeterminate:before,
table.tbl_form1e input[type="checkbox"]:indeterminate:after,
.form1 input[type="checkbox"]:indeterminate:before,
.form1 input[type="checkbox"]:indeterminate:after {
	width: 7px;
	height: 2px;
	transform: rotate(0);
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
}
table.tbl_form1a input[type="checkbox"]:indeterminate:before,
table.tbl_form1b input[type="checkbox"]:indeterminate:before,
table.tbl_form1c input[type="checkbox"]:indeterminate:before,
table.tbl_form1e input[type="checkbox"]:indeterminate:before,
.form1 input[type="checkbox"]:indeterminate:before {
	left: 1px;
	top: 7px;
}
table.tbl_form1a input[type="checkbox"]:indeterminate:after,
table.tbl_form1b input[type="checkbox"]:indeterminate:after,
table.tbl_form1c input[type="checkbox"]:indeterminate:after,
table.tbl_form1e input[type="checkbox"]:indeterminate:after,
.form1 input[type="checkbox"]:indeterminate:after {
	right: 1px;
	bottom: 7px;
}
/* Radio */
table.tbl_form1a input[type="radio"],
table.tbl_form1b input[type="radio"],
table.tbl_form1c input[type="radio"],
table.tbl_form1e input[type="radio"],
.form1 input[type="radio"] {
	border-radius: 50%;
}
table.tbl_form1a input[type="radio"]:checked:before,
table.tbl_form1b input[type="radio"]:checked:before,
table.tbl_form1c input[type="radio"]:checked:before,
table.tbl_form1e input[type="radio"]:checked:before,
.form1 input[type="radio"]:checked:before {
	transform: scale(1);
}
table.tbl_form1a input[type="radio"]:before,
table.tbl_form1b input[type="radio"]:before,
table.tbl_form1c input[type="radio"]:before,
table.tbl_form1e input[type="radio"]:before,
.form1 input[type="radio"]:before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 3px;
	transform: scale(0);
	transition: all ease-out 150ms;
}
table.tbl_form1a input[type="checkbox"],
table.tbl_form1a input[type="radio"],
table.tbl_form1b input[type="checkbox"],
table.tbl_form1b input[type="radio"],
table.tbl_form1c input[type="checkbox"],
table.tbl_form1c input[type="radio"],
table.tbl_form1e input[type="checkbox"],
table.tbl_form1e input[type="radio"],
.form1 input[type="checkbox"],
.form1 input[type="radio"] {
	border: 2px solid #C5DB75;
}
table.tbl_form1a input[type="checkbox"]:checked,
table.tbl_form1a input[type="checkbox"]:indeterminate,
table.tbl_form1a input[type="radio"]:checked:before,
table.tbl_form1b input[type="checkbox"]:checked,
table.tbl_form1b input[type="checkbox"]:indeterminate,
table.tbl_form1b input[type="radio"]:checked:before,
table.tbl_form1c input[type="checkbox"]:checked,
table.tbl_form1c input[type="checkbox"]:indeterminate,
table.tbl_form1c input[type="radio"]:checked:before,
table.tbl_form1e input[type="checkbox"]:checked,
table.tbl_form1e input[type="checkbox"]:indeterminate,
table.tbl_form1e input[type="radio"]:checked:before,
.form1 input[type="checkbox"]:checked,
.form1 input[type="checkbox"]:indeterminate,
.form1 input[type="radio"]:checked:before {
	background: #C5DB75;
}

/* ボタン */
input[type="button"].close {
  margin: 0 20px;
  padding: 0.5em 1em;
  border: none;
  box-sizing:border-box;
  display: inline-block;
  position: relative;
  cursor: pointer;
	font-weight: 900;
	font-size: 1.4rem;
}
input[type="button"].close::before,
input[type="button"].close::after {
   box-sizing:border-box;
}
input[type="button"].close {
  border:3px solid rgb(147,162,0);
  background-color: rgba(147,162,0,1);
  color: #fff;
}
input[type="button"].close:hover {
  border:3px solid rgb(147,162,0);
  background-color: rgba(147,162,0,.0);
  color: rgba(147,162,0,1);
}

input[type="submit"].btn00,
input[type="button"].btn00,
button.btn00 {
	border: 2px solid #89BDDE;
	padding: 0.5em 4em;
	border-radius: 5px;
	background: #006599;
	color: #fff;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}
input[type="submit"].btn00:hover,
input[type="button"].btn00:hover,
button.btn00:hover {
	box-shadow: none;
	background: #2679B4;
	cursor: pointer;
}

button.btn00a {
	border: 2px solid #FF3398;
	padding: 0.5em 4em;
	border-radius: 5px;
	background: #FFA9D4;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}
button.btn00a:hover {
	box-shadow: none;
	background: #f7dae9;
	cursor: pointer;
}

input[type="submit"].btn03,
input[type="button"].btn03,
button.btn03 {
	border: 1px solid #CCCCCC;
	padding: 0.6em 4em 0.5em;
	background: #1e85901e;
	color: #39505A;
	position: relative;
	font-size: 2.0rem;
}
input[type="submit"].btn03:hover,
input[type="button"].btn03:hover,
button.btn03:hover {
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
	background: #FFF;
	cursor: pointer;
}

button.btn01,
button.btn02,
button.btn03,
button.btn04,
button.btn11,
button.btn12,
button.btn13,
button.btn14,
button.btn15,
button.btn21,
button.btn_invoice,
button.btn_receipt {
  cursor: pointer;
  border: 0;
  font-weight: 400;
  transition: all 0.3s ease;
}
button.btn01 {
	min-width: 200px;
}

button.btn01,
button.btn11,
button.btn21 {
	background: #48a2cf;
  border: 2px solid #48a2cf;
    color: #fff;
}

button.btn02,
button.btn12 {
    background: #A8A8A8;
    border: 2px solid #A8A8A8;
    color: #fff;
}

button.btn03,
button.btn13 {
	background: #FFF;
  border: 2px solid #48a2cf;
  color: #48a2cf;
}

button.btn04,
button.btn14 {
	background: #4D8D75;
  border: 2px solid #4D8D75;
  color: #FFF;
}

button.btn15 {
	background: #FD9B9E;;
  border: 2px solid #FD9B9E;
  color: #FFF;
}
button.btn_invoice {
	background: #F06595;
  color: #FFF;
}
button.btn_receipt {
	background: #76AD24;
  color: #FFF;
}
button.btn_invoice,
button.btn_receipt {
	padding: 5px 35px;
	font-size: 1.5rem;
  font-weight: 500;
  border-radius: 9999px;
}
button.btn_invoice:hover {
	background: #F490B2;
}
button.btn_receipt:hover {
	background: #82C91E;
}

button.btn01,
button.btn02,
button.btn03,
button.btn04 {
	padding: 10px 30px;
	font-size: 1.6rem;
	margin: 10px 0;
}
button.btn11,
button.btn12,
button.btn13,
button.btn14,
button.btn15 {
	padding: 5px 20px;
	font-size: 1.4rem;
}
button.btn21 {
	padding: 5px;
	font-size: 1.2rem;
}

button.btn01:hover,
button.btn11:hover,
button.btn21:hover {
	background: #FFF;
  color: #48a2cf;
}
button.btn02:hover,
button.btn12:hover {
	background: #FFF;
  color: #A8A8A8;
}
button.btn03:hover,
button.btn13:hover {
	border-color: #7ABADC;
  color: #7ABADC;
}
button.btn04:hover,
button.btn14:hover {
	background: #FFF;
  color: #4D8D75;
}
button.btn15:hover {
  background: #FFF;
  color: #FF7C80;
}
button.btn_vote {
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	color: #FFF;
}
.btn_vote00 { /* 立候補ボタン */
	border: 2px solid #91af0b;
  box-shadow: #91af0b 4px 4px 0 0;
  background-color: #91af0bb0;
  padding: 25px;
}
.btn_vote01,
.btn_vote02,
.btn_vote03 {
  padding: 15px 25px;
	max-width: 350px;
}
.btn_vote01 { /* 投票ボタン1 */
	border: 2px solid #15AABF;
  box-shadow: #15AABF 4px 4px 0 0;
  background-color: #15abbfb0;
}
.btn_vote02 { /* 投票ボタン2 */
	border: 2px solid #489e5c;
  box-shadow: #489e5c 4px 4px 0 0;
  background-color: #489e5cb0;
}
.btn_vote03 { /* 投票ボタン3 */
	border: 2px solid #f8b1b3;
  box-shadow: #f8b1b3 4px 4px 0 0;
  background-color: #f8b1b3b0;
}

button.btn_vote:hover {
  background: #fbffc7;
}
button.btn_vote00:hover {
  color: #91af0b;
}
button.btn_vote01:hover {
  color: #15AABF;
}
button.btn_vote02:hover {
  color: #489e5c;
}
button.btn_vote03:hover {
  color: #f8b1b3;
}
button.btn_vote:active {
  transform: translate(2px, 2px);
}
button.btn_vote00:active {
  box-shadow: #91af0b 2px 2px 0 0;
}
button.btn_vote01:active {
  box-shadow: #15AABF 2px 2px 0 0;
}
button.btn_vote02:active {
  box-shadow: #489e5c 2px 2px 0 0;
}
button.btn_vote03:active {
  box-shadow: #c7a28f 2px 2px 0 0;
}

button.btn_vote00 i {
	font-size: 3.0rem;
}
button.btn_vote01 i,
button.btn_vote02 i,
button.btn_vote03 i {
	font-size: 6.0rem;
}

@media (min-width: 768px) {
  button.btn_vote01 {
    min-width: 120px;
    padding: 15px 25px;
  }
}

.ul_btn01,
.ul_btn02,
.ul_btn02_admn,
.ul_btn03_admn,
.ul_srch01,
.ul_srch02 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	width: 100%;
	margin: 30px 0;
  padding: 0;
	box-sizing: border-box;
  gap: 1em;
}

/* 検索画面のボタン */
.ul_srch01 {
	margin: 15px 0;
}
.ul_srch02 {
	margin: 20px auto;
}

.ul_btn02 li,
.ul_btn02_admn li,
.ul_btn03_admn li {
	width: 75%;
}

.ul_btn01 li,
.ul_srch02 li {
	width: 90%;
	margin: 0 auto 0.5em;
}

.ul_btn01 button:hover,
.ul_btn02 button:hover,
.ul_btn02_admn button:hover,
.ul_btn03_admn button:hover,
.ul_srch02 button:hover  {
	cursor: pointer;
}

.ul_btn01 button[type="submit"],
.ul_srch02 button,
button.sbmt01 {
	background: #C5DB75;
	border : 2px solid #C5DB75;
	color: #fff;
	width: 100%;
}
.ul_btn01 button[type="submit"]:hover,
.ul_srch02 button:hover,
button[type="reset"].sbmt01:hover,
button[type="button"].sbmt01:hover {
	color : #C5DB75;
	background : #fff;
}
.ul_btn01 button[type="reset"],
.ul_btn01 button[type="button"],
button[type="submit"].sbmt02 {
	background: #ccc;
	border : 2px solid #ccc;
	color: #777;
	padding: 10px 15px;
	width: 100%;
}
.ul_btn01 button[type="reset"]:hover,
.ul_btn01 button[type="button"]:hover,
button[type="submit"].sbmt02:hover {
	color: #777;
	background : #fff;
}

.ul_btn01 button {
	font-size: 1.8rem;
}
/* 会員名簿 会員画面メニューボタン */
.ul_btn02 button {
  display: block;
  font-size: 20px;
  text-align: center;
  padding: 25px;
  background : #709C06;
  color: #fff;
  line-height: 1em;
  transition: .3s;
  box-shadow: 1px 1px 2px #666666;
  border: 2px solid #709C06;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* 会員名簿 管理者画面メニューボタン */
.ul_btn02_admn button,
.ul_btn03_admn button {
	display: block;
	text-align: center;
  font-size: 1.7rem;
	padding: 20px;
	background: linear-gradient(#FEFEFE, #F3F5F5);
  background: -o-linear-gradient(#FEFEFE, #F3F5F5);
  background: -ms-linear-gradient(#FEFEFE, #F3F5F5);
  background: -moz-linear-gradient(#FEFEFE, #F3F5F5);
  background: -webkit-linear-gradient(#FEFEFE, #F3F5F5);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #F3F5F5), color-stop(0.00, #FEFEFE));
  border: 1px solid #CCC;
  border-radius: 5px;
	line-height: 1em;
  transition: .3s;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 100%;
	height: 100%;
	box-sizing: border-box;
	color: #FF6E00;
	font-weight: 700;
}
.ul_btn03_admn button { 
  font-size: 1.6rem;
}

.ul_btn02_admn button:hover,
.ul_btn03_admn button:hover {
	opacity: 0.6;
}
.ul_btn02 button:hover {
  box-shadow: none;
  color: #709C06;
  background: #fff;
}
.ul_btn02_admn button i,
.ul_btn03_admn button i {
	display: block;
	margin-bottom: 10px;
	font-size: 60px;
	color: #86a1a1;
}

@media screen and (min-width:1200px) {
	.mem2_mainarea {
		flex-basis: auto;
		width: 100%;
	}

/* 会員名簿 メニューボタン */	
	.ul_btn02 li,
	.ul_btn02_admn li {
		width: 31%;
	}
	.ul_btn03_admn li {
		width: 45%;
	}
}

/* 検索結果ボタン */	
@media screen and (max-width: 575.98px) {
	.ul_srch02 button {
		font-size: 1.6rem;
	}
}

/* テーブル内ボタン */
table.tbl_form1c button,
table.tbl_form1e button,
.vote_btn02 button {
	padding: 0.5em 1em;
	border-radius: 5px;
	background: #2679B4;
	border: none;
	color: #fff;
	margin-left: 0.5em;
}
table.tbl_form1c button:hover,
table.tbl_form1e button:hover,
.vote_btn02 button:hover {
	box-shadow: none;
	background: #48a2cf;
	cursor: pointer;
}


/* パスワード送信ページ */
.dl-pass {
	box-sizing: border-box;
	margin: 1em 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.dl-pass dt {
	box-sizing: border-box;
	background: #F1F5E6;
	padding: 1em;
}
.dl-pass dd {
	padding: 0.5em 0;
}
.dl-pass dd input[type="text"] {
	box-sizing: border-box;
	width: 100%;
}

.txt_red {
	color:#F00;
}

.txt_gray01 {
	color:#666;
}

.txt_lupdate {
	text-align: right;
	font-size:90%;
	color:#666;
}

.left {
	text-align: left;
}

.bold {
	font-weight: bold;
}

.normal {
	font-weight: normal;
}

.txt_small {
	font-size: 90%;
}

.txt_big {
	font-size: 110%;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

/* 非公開 */
.txt_hikokai {
	color: #417300;
}
/* 検索画面のand or */
.txt_andor1 {
	background:#F69;
	color: #FFF;
	padding: 1px;
}
.txt_andor2 {
	background:#F9C;
	color: #FFF;
	padding: 0 1px;
}
/* タイトル */
div.sut_0bg2 {
	background: #ceeafd;
	border-left: 6px solid #5ebeff;
	font-weight: bold;
	margin-top: 8px ;
	padding: 0.4em;
	padding-left: 1em;
	text-align: left;
}
/* ローカルモード時の表示部分 */
.box_local {
	padding: 0.5em;
	background: #F03;
	color: #FFF;
	border: 3px solid #F99;
}
/* テストモード時の表示部分 */
.box_test {
	padding: 0.5em;
	background: #09C;
	color: #FFF;
	border: 3px solid #6CF;
}
/* フォーム関係 */
.btn_css { padding: 0.3em 0.5em; }

/* 必須マーク */
.form_waku03,
.form_waku03_gray {
	font-size: 13px;
	padding: 0.2em 0.4em;
	margin-left:0.2em;
	color: #FFF;
	/* 角丸の指定 */
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
th span.form_waku03,
th span.form_waku03_gray {
	float: right;
	padding: 0.2em 0.4em;
}

.form_waku03 {
	background: #ff6633;
}

.form_waku03_gray {
	background: #828282;
}


button.btn_mem_top {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: auto;
	padding: 4rem 2rem;
	color: #fff;
	font-weight: bold;
	background: #7FBC55;
	position: relative;
	transition: 0.3s ease-in-out;
  cursor: pointer;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  font-size: 1.8rem;
  width: 100%;
  position: relative;
  }
button.btn_mem_top:hover {
    background: #fff;
    color: #7FBC55;
}
button.btn_mem_top:before, button.btn_mem_top:after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
button.btn_mem_top:before {
  top: 0;
  left: 0;
}
button.btn_mem_top:after {
  bottom: 0;
  right: 0;
}
button.btn_mem_top:hover:before, button.btn_mem_top:hover:after {
  width: 100%;
  height: 100%;
}
button.btn_mem_top:hover:before {
  border-radius: 5px;
  border-top-color: #7FBC55;
  border-right-color: #7FBC55;
  transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}
button.btn_mem_top:hover:after {
  border-radius: 5px;
    border-bottom-color: #7FBC55;
  border-left-color: #7FBC55;
  transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
}

button.btn06,
a.btn07 {
  box-shadow: none;
  cursor: pointer;
  border: 0;
  font-size: 1.8rem;
  color: #FFF;
  position: relative;
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
button.btn08 {
  box-shadow: none;
  cursor: pointer;
  border: 0;
  font-size: 1.8rem;
  color: #FFF;
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 35px 12px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  line-height: 1.4em;;
}
button.btn06 {
  border: 2px solid #1E3050;
  background: #1E3050;
}
a.btn07 {
  border: 2px solid #00828b;
  color: #00828b;
  background: #FFF;
  text-align: center;
  text-decoration: none;
}
button.btn08 {
  border: 3px solid #94CCDC;
  background: #6EBAD0;
}
a.btn07:before {
  position: absolute;
  font-family: 'Font Awesome 7 Pro';
  content: '\e753';
  font-weight: 300;
  font-size: 3rem;
  top: 2px;
  left: 10px;
}
button.btn06:after,
a.btn07:after,
button.btn08:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
button.btn06:hover {
  background: #FFF;
  color: #1E3050;
}
a.btn07:hover {
  background: #00828b;
  color: #FFF;
}
button.btn08:hover {
  background: #49b0cc;
}
button.btn06:hover:after,
a.btn07:hover:after,
button.btn08:hover:after {
  right: 1.4rem;
}

.css-button-mem {
  min-width: 10em;
}
.css-button-mem-top {
  min-width: 15em;
  padding: 15px 10px;
}
.mem_flex01 {
  display: flex;
  gap: 15px;
}

.width005_per { max-width: 100%; width: 5% !important; }
.width007_per { max-width: 100%; width: 7% !important; }
.width010_per { max-width: 100%; width: 10% !important; }
.width012_per { max-width: 100%; width: 12% !important; }
.width015_per { max-width: 100%; width: 15% !important; }
.width020_per { max-width: 100%; width: 20% !important; }
.width025_per { max-width: 100%; width: 25% !important; }
.width027_per { max-width: 100%; width: 27% !important; }
.width030_per { max-width: 100%; width: 30% !important; }
.width040_per { max-width: 100%; width: 40% !important; }
.width045_per { max-width: 100%; width: 45% !important; }
.width100_per { max-width: 100%; width: 100% !important; }
.width025 { max-width: 100%; width: 25px !important; }
.width030 { max-width: 100%; width: 30px !important; }
.width060 { max-width: 100%; width: 60px !important; }
.width065 { max-width: 100%; width: 65px !important; }
.width070 { max-width: 100%; width: 70px !important; }
.width080 { max-width: 100%; width: 80px !important; }
.width090 { max-width: 100%; width: 90px !important; }
.width100 { max-width: 100%; width: 100px !important; }
.width110 { max-width: 100%; width: 110px !important; }
.width120 { max-width: 100%; width: 120px !important; }
.width125 { max-width: 100%; width: 125px !important; }
.width130 { max-width: 100%; width: 130px !important; }
.width134 { max-width: 100%; width: 134px !important; }
.width140 { max-width: 100%; width: 140px !important; }
.width150 { max-width: 100%; width: 150px !important; }
.width152 { max-width: 100%; width: 152px !important; }
.width160 { max-width: 100%; width: 160px !important; }
.width180 { max-width: 100%; width: 180px !important; }
.width190 { max-width: 100%; width: 190px !important; }
.width200 { max-width: 100%; width: 200px !important; }
.width230 { max-width: 100%; width: 230px !important; }
.width280 { max-width: 100%; width: 280px !important; }
.width300 { max-width: 100%; width: 300px !important; }
.width500 { max-width: 100%; width: 500px !important; }
.width520 { max-width: 100%; width: 520px !important; }
.width600 { max-width: 100%; width: 600px !important; }
.width750 { max-width: 100%; width: 750px !important; }

.width050_nc { max-width: 100%; width: 50px; white-space: nowrap; text-align: center !important; }
.width065_nc { max-width: 100%; width: 65px; white-space: nowrap; text-align: center !important; }
.width080_nc { max-width: 100%; width: 80px; white-space: nowrap; text-align: center !important; }
.width090_nc { max-width: 100%; width: 90px; white-space: nowrap; text-align: center !important; }


/* ------- tbl_form ------- */
table.tbl_form1a, /* 検索結果、アクセス履歴 */
table.tbl_form1b,
table.tbl_form1c, /* 列のテーブル */
table.tbl_form1d,
table.tbl_form1e { /* COIの行テーブル */
	border: 1px solid #5576A9;
	border-spacing:0;
	margin:0 auto;
	box-sizing: border-box;
}

table.tbl_form1c,
table.tbl_form1e {
	width: 100%;
}

table.tbl_form1a,
table.tbl_form1d {
	overflow-x: scroll;
}

table.tbl_form1a th,
table.tbl_form1b th,
table.tbl_form1c th,
table.tbl_form1d th,
table.tbl_form1a td,
table.tbl_form1b td,
table.tbl_form1c td,
table.tbl_form1d td,
table.tbl_form1e th,
table.tbl_form1e td {
	border-left: 1px solid #6585b4;
	border-bottom: 1px solid #6585b4;
}

table.tbl_form1a th,
table.tbl_form1b th,
table.tbl_form1c th,
table.tbl_form1d th,
table.tbl_form1e th {
	font-weight: bold;
	background-color: #5576A9;
	color: #FFF;
	vertical-align: middle;
}

table.tbl_form1a th {
	text-align: center;
	padding: 0.5em;
	white-space: nowrap;
}
table.tbl_form1b th,
table.tbl_form1d th  {
	text-align: center;
	padding: 0.5em 1em;
	white-space: nowrap;
}
table.tbl_form1c th {
	text-align: left;
	padding: 1em;
	width: 25%;
	min-width: 230px;
}
table.tbl_form1e th {
	text-align: left;
	padding: 0.3em 1em 0.2em;
	font-size: 18px;
}

table.tbl_form1a td {
	padding: 0.2em;
	text-align: left;
	vertical-align: middle;
	background: #FFF;
}
table.tbl_form1b td,
table.tbl_form1c td {
	padding: 0.5em 0.5em;
	text-align: left;
	vertical-align: middle;
	background: #FFF;
  box-sizing: border-box;
}
table.tbl_form1d td {
	padding: 1em;
	text-align: left;
	vertical-align: middle;
	background: #FFF;
}
table.tbl_form1e td {
	padding: 0.5em 1em;
	text-align: left;
	background: #FFF;
}

/* COIテーブル　中テーブル */
table.tbl_form1e td table.tbl_form1c {
	margin-top: 5px;
}
table.tbl_form1e td table.tbl_form1c th,
table.tbl_form1e td table.tbl_form1c td {
	padding: 0.2em 0.5em;
	font-size: 16px;
}

/* COIテーブル　囲みflex */

table.tbl_form1e td div.wrap_coi01 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1em;
}
table.tbl_form1e td div.wrap_coi01 div:first-of-type {
	width: 30px;
	text-align: center;
	align-self: flex-start;
}
table.tbl_form1e td div.wrap_coi01 div:nth-of-type(2) {
	width: calc(100% - 110px);
}
table.tbl_form1e td div.wrap_coi01 div:last-of-type {
	width: 70px;
	text-align: center;
	align-self: center;
}

/* レスポンシブテーブル */
@media screen and (max-width: 767.98px) {
  table.tbl_sp th,
	table.tbl_sp td {
    display: block;
    width: 100%;
		border-left: none;
  }
}

/* レスポンシブテーブル */
@media screen and (max-width: 575.98px) {
	table.tbl_form1c {
		border-top: none;
	}

  table.tbl_form1c th,
	table.tbl_form1c td {
    display: block;
    width: 100%;
		border-left: none;
  }
	table.tbl_form1c th {
		padding: 0.5em;
		border-top: 1px solid #B3DBF0;
	}
	table.tbl_form1c td {
		padding: 0.5em;
		border-bottom: none;
	}

	table.tbl_form1e td div.wrap_coi01 {
		flex-direction: column;
	}
	table.tbl_form1e td div.wrap_coi01 div:first-of-type {
		text-align: left;
		margin-bottom: 0;
	}
	table.tbl_form1e td div.wrap_coi01 div:nth-of-type(2) {
		width: 100%;
	}
	table.tbl_form1e td div.wrap_coi01 div:last-of-type {
		width: 100%;
		margin-top: 5px;
	}
}

.break {
	page-break-after: always;
}

button.btn_vote {
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	color: #FFF;
	margin-bottom: 1em;
}
.btn_vote01,
.btn_vote02 {
  padding: 15px 25px;
	max-width: 350px;
}
.btn_vote01 { /* 投票ボタン1 */
	border: 2px solid #ec5f00;
  box-shadow: #ec5f00 4px 4px 0 0;
  background-color: #ff6600;
}
.btn_vote02 { /* 投票ボタン2 */
	border: 2px solid #c42888;
  box-shadow: #c42888 4px 4px 0 0;
  background-color: #c42888e8;
}

button.btn_vote:hover {
  background: #fbffc7;
}
button.btn_vote01:hover {
  color: #ff6600;
}
button.btn_vote02:hover {
  color: #c42888;
}

button.btn_vote:active {
  transform: translate(2px, 2px);
}
button.btn_vote01:active {
  box-shadow: #ff6600 2px 2px 0 0;
}
button.btn_vote02:active {
  box-shadow: #c42888 2px 2px 0 0;
}

button.btn_vote01 i,
button.btn_vote02 i {
	font-size: 40px;
}

@media (min-width: 768px) {
  button.btn_vote01 {
    min-width: 120px;
    padding: 15px 25px;
  }
}

/* 選挙投票画面 */
table.table_vote01,
table.table_vote02,
table.table_vote00a,
table.table_vote01a,
table.table_vote02a {
  border-collapse: collapse;
	border: 2px solid #709C06;
	width: 100%;
}
table.table_vote01 th,
table.table_vote01 td,
table.table_vote02 th,
table.table_vote02 td,
table.table_vote01a th,
table.table_vote01a td,
table.table_vote02a th,
table.table_vote02a td {
	padding: 0.5em;
	border: 1px solid #709C06;
}
table.table_vote01 th,
table.table_vote02 th {
	text-align: right;
	width: 20%;
	max-width: 200px;
}
table.table_vote01 th,
table.table_vote01a th {
	background-color: #E2EBCD;
	color: #709C06;
}
table.table_vote02 th,
table.table_vote02a th {
	background: #489e5cb0;
}

/* 選挙投票画面 */
.btn_area_vote,
.btn_area_vote_in {
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
}
.btn_area_vote div {
	margin: 5px;
}

.vote_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.vote_list div {
	padding: 5px 10px;
	width: 50%;
}

/* 表示領域が575.98px以下の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (max-width: 575.98px) {
	/* 選挙投票画面 */
	.btn_area_vote {
			flex-direction: column;
		}
		.vote_list {
			flex-direction: column;
		}
		.vote_list div {
			width: 100%;
		}
  	.ul_btn02_admn li,
	  .ul_btn03_admn li {
      width: 100%;
    }
	}

/*================================================
/* btn_area
 ================================================*/
.btn_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
}
.btn_area div {
	margin: 5px 10px;
}

/* 表示領域が767.98px以下の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (max-width: 767.98px) {
	/*================================================
	/* btn_area
	================================================*/
	.btn_area {
		flex-direction: column;
		justify-content: center;
		margin: 5px auto;
		max-width: 350px;
	}
	.btn_area div .btn01,
	.btn_area div .btn02,
  .btn_area div .btn03,
  .btn_area div .btn04,
	.btn_area div .btn11,
	.btn_area div .btn12,
	.btn_area div .btn13,
	.btn_area div .btn14,
	.btn_area div .btn15 {
		margin: 0;
		width: 100%;
	}

  .ul_srch01_in li {
		width: 100%;
	}
	.ul_srch01_in li {
		width: 100%;
	}

  /* 検索画面 */	
	.ul_srch01 button.btn01 {
		width: 350px;
	}	
}

div.sut_0bg1 {
	background: #ffffff url(../images/sut_0bg1.gif) no-repeat left bottom;
	font-size: 110%;
	font-weight: bold;
	margin-top: 1em;
	line-height: 1;
	padding: 10px 0 10px 35px;
}

div.ttl_blue01,
div.ttl_blue01b,
div.ttl_gray01,
div.ttl_gray01b,
div.ttl_pink01,
div.ttl_gray_l01,
div.ttl_gren_l01,
div.ttl_orng_l01,
div.ttl_blue_l01,
div.ttl_blue_l02,
div.ttl_pink_l02,
div.ttl_gren_l02,
div.ttl_gray_l02,
div.ttl_gray_l04,
div.ttl_gren_l05,
div.ttl_gray_l07 {
	padding: 0.3em 0.5em 0.1em 0.5em;
	margin: 0.5em 0;
	font-weight: bold;
}

/* 背景色つき */
div.ttl_blue01,
div.ttl_blue01b {
	background: #CDEEF5;
}
div.ttl_blue01b { /* 上下マージンなし */
	margin: 0;
}

div.ttl_gray01 {
	background-color:#4B5A66;
	color: #ffffff;
}
div.ttl_gray01b {
	background: #EEE;
}

div.ttl_pink01 { /* ガイドライン */
	background:#FFE1E1;
}

/* 上下ボーダー　背景なし */
div.ttl_gray_l01 {
	border-top:1px solid #CCC;
	border-bottom:1px solid #CCC;
}
div.ttl_gren_l01 {
	border-top:1px solid #B4D255;
	border-bottom:1px solid #B4D255;
}
div.ttl_orng_l01 {
	border-top:1px solid #ff6600;
	border-bottom:1px solid #ff6600;
}
div.ttl_blue_l01 {
	border-top: 1px solid #87D6E7;
	border-bottom: 1px solid #87D6E7;
}


/* 上下ボーダー　背景うす色 */
div.ttl_blue_l02 {
	background: #DBF0F4;
	border-top:1px solid #70C5D3;
	border-bottom:1px solid #70C5D3;
}
div.ttl_gren_l02 {
	background: #DDE8A4;
	border-top:1px solid #B4D255;
	border-bottom:1px solid #B4D255;
}
div.ttl_pink_l02 {
	background-color: #FAEBF4;
	border-top:1px solid #D453A8;
	border-bottom:1px solid #D453A8;
}

div.ttl_gray_l02 {
	background: #EEE;
	border-top:1px solid #CCC;
	border-bottom:1px solid #CCC;
}

/* 左下ボーダー　左は太ボーダー */
div.ttl_gren_l03 {
	border-left: 7px solid #7FBC55;
	border-bottom: 1px solid #7FBC55;
	font-weight: bold;
	padding: 0.3em 0.5em 0.2em 7px;
	margin: 1em 0 0.5em;
  font-size: 1.8rem;
}
div.ttl_blue_l03 {
	border-bottom: 1px solid #2E9DBD;
	border-left: 7px solid #2E9DBD;
	font-weight: bold;
	margin: 1em 0 0.5em;
	padding: 0.3em 0.5em 0.2em 7px;
  font-size: 1.8rem;
}

/* 上ボーダーのみ　背景うす色 */
div.ttl_gray_l04 {
	background: #EEE;
	border-top:1px solid #CCC;
}

/* 太い外枠 */
div.ttl_gren_l05 {
	background: #B4D255;
	border: 2px solid #DDE8A4;
	text-align: center;
}
div.ttl_blue_l05 {
	border-left: 8px solid #3DBCD8;
	border-right: 8px solid #3DBCD8;
	border-top: 3px double #3DBCD8;
	border-bottom: 3px double #3DBCD8;
	font-weight: bold;
	padding:3px 0.5em 2px 0.5em;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 5px;
}

/* 左だけ太い外枠 */
div.ttl_blue_l06 {
	border-left:6px solid #70C5D3;
	font-weight: bold;
	line-height: 1;
	margin: 0.5em;
	padding-top: 0.2em;
	padding-left: 0.5em;
}

div.ttl_red_l06,
div.ttl_red_l06b {  /* ガイドライン */
	font-weight: bold;
	border-left: 6px solid #EC5757;
	line-height: 1;
	margin: 0.5em 0;
	padding: 0.3em 0.2em 0.2em 0.5em;
}
div.ttl_red_l06b {  /* ガイドライン */
	background: #FFD2D2;
}

/* 下ボーダーのみ ドット */
div.ttl_gray_l07 {
	border-bottom:1px dotted #CCC;
}

/* 背景画像 */
div.ttl_bg01,
div.ttl_bg01b {
	font-weight: bold;
	padding: 11px 0.5em 10px 0.5em;
	text-align: center;
}
div.ttl_bg01 {
	background: url(../images/bg01.gif) repeat-x left bottom;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	margin: 1.5em 0;
}
div.ttl_bg01b {
	background: url(../images/bg01b.gif) repeat-x left top;
	margin: 0;
}

div.ttl_bg02,
div.ttl_bg03 {
	padding: 3px 3px 2px 10px;
	border:1px solid #E6E6E6;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 0.5em;
}
div.ttl_bg02 {
	background: url(../images/bg02.jpg) repeat-x left center;
}
div.ttl_bg03 {
	padding-left: 15px;
	background: url(../images/bg03.jpg) no-repeat left center;
	text-align: left;
}

/* 下線 */
.uline { text-decoration:underline; }

.bg_yelw01 {
	background: #FF9 !important;
}

.bg_gray01 {
	background: #E0E7E7 !important;
}
.bg_gray02 {
	background: #F5F5F5 !important;
}
.bg_gren01 {
	background: #DDE8A4 !important;
}
.bg_gren02 {
	background: #FAFDD7 !important;
}

/* ------- td ------- */
td.bg_ck01 {
	background-color: #FFFF99 !important;
	white-space: nowrap !important;
	text-align: center !important;
	width: 20px !important;
}

td.form2_th {
	background-color: #B4D255 !important;
	white-space: nowrap !important;
}

th.nowrap,
td.nowrap { white-space: nowrap !important; }

