/* --共通-- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

html,body{
	font-family: 'Noto Sans JP','segoe UI', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Verdana, sans-serif;
	background-color: #fefff5;
}

/* * {
    outline: 2px solid blue;
} */

ul.error{
	margin: 0;
	text-align: left;
}

.kouza-list {
	border: dashed 2px #edf3c3;/*破線 太さ 色*/
	background: #fefff5; /*背景色*/
}
.kouza-list ul {
	padding: 0.5em 0.5em 0.5em 2em;
}
.kouza-list ul li {
	line-height: 1.5;
  	padding: 0.1em 0;
}
.kouza-list ul ::marker {
	font-size: 10px;
}

label.disabled{
	color: #ccc;
}
p{
	margin: 0;
}

hr {
	margin: 2rem 0 !important;
}

/* 色変更 */
.alert-success {
	--bs-alert-bg: #effff8 !important;
}
.bg-danger {
	background-color: rgb(193 0 18) !important;
}
.bg-green-100 {
	background-color: #EBF1DE;
}
/* 緑ボタン */
.btn-secondary {
	--bs-btn-color: #fff;
    --bs-btn-bg: #7AAF54;
    --bs-btn-border-color: #7AAF54;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6e9e4c;
    --bs-btn-hover-border-color: #6e9e4c;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6e9e4c;
    --bs-btn-active-border-color: #6e9e4c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #7AAF54;
    --bs-btn-disabled-border-color: #7AAF54;
}
/* 青ボタン */
.btn-primary {
	background-color: #0075C1;
	border: 1px solid #0075C1;
}
.btn-primary:hover {
	border: 1px solid #005d9b;
	background-color: #005d9b;
}
.btn-primary:active {
	border: 1px solid #005d9b !important;
	background-color: #005d9b !important;
}
.btn-primary:disabled {
	border: 1px solid #005d9b !important;
	background-color: #005d9b !important;
}
.btn-outline-primary {
	border: 2px solid #0075C1;
	color: #0075C1;
}
.btn-outline-primary:hover {
	border: 2px solid #0075C1;
	background: #0075C1;
}
.btn-outline-primary:active {
	border: 2px solid #005d9b !important;
	background-color: #005d9b !important;
}
.btn-outline-primary:disabled {
	border: 2px solid #005d9b !important;
	background-color: #005d9b !important;
}

/* 赤い囲み */
.card-red {
	border: 2px solid #f1aeb5;
	color: #58151c;
	background-color: #fff3f4;
}

/* 緑囲み */
.card-green {
	border: 2px solid #aebf3c;
}

/* --共通-- */

/* --ヘッダー-- */
.header {
	background-color: #fff;
	color: #666;
	padding: 0;
}
.header-size {
	margin-left: 1rem;
	margin-right: 1rem;
}
.header-title {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color:#888;
	padding-top: 0.5rem;
	font-size: calc(1rem + .6vw);
	text-align: left;
}
.header-tab {
	background-color: #7AAF54;
}
.toggle-menu {
	margin-top: 0.9rem;
}
.logout-btn-sp {
	display: block;
}
.logout-btn-pc {
	display: none;
}
.user-profile {
	font-size: 15px;
}
@media (min-width: 600px) {
	.header {
		padding: .75rem 0;
	}
	.header-size {
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.header-title {
		padding-top: .5rem;
		font-size: calc(1.3rem + .6vw);
	}
	.toggle-menu {
		margin-top: 0.5rem;
	}
	.logout-btn-sp {
		display: none;
	}
	.logout-btn-pc {
		display: block;
	}
	.user-profile {
		font-size: 18px;
	}
}

/* サイドメニュー（動作） */
nav {
    width: 80%;
    border-right: 1px solid rgba(0, 0, 0, .175);
    position: fixed;
    top: 0; /* ヘッダーの下に配置 */
    left: 0;
    height: calc(100% - 0px); /* ヘッダーを除いた高さに設定 */
    transition: transform 0.3s ease; /* トランジションを追加 */
    transform: translateX(0); /* 初期状態では表示 */
    z-index: 1; /* サイドメニューは最前面 */
	background-color: #fff;
}
nav.hidden {
    transform: translateX(-100%); /* 非表示状態 */
}
.nav-body {
	height: 100vh;
	overflow-y: auto;
}
.main-admin {
    transition: 0.3s all ease;
}
main.expanded {
    margin-left: 0; /* サイドメニューが非表示のときにマージンをリセット */
}
.btn-close {
	display: block;
}
@media (min-width: 600px) {
	nav {
		width: 275px;
		transform: translateX(0); /* 600px以上ではデフォルトで表示 */
	}
	.nav-body {
		height: 70vh;
	}
	.main-admin {
		margin-left: 260px; /* サイドメニューの幅に合わせてマージンを設定 */
	}
	.btn-close {
		display: none;
	}
}

/* --ヘッダー-- */


/* --メイン-- */
/* -一般- */
.mypage-p {
	padding-top: 1.5rem;
    padding-bottom: 1.5rem;
	padding-right: 1rem;
    padding-left: 1rem;
}

main#login{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #f5f5f5;
}
main#login .main-block {
  width: 100%;
  max-width: 680px;
  padding: 15px;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: auto;
}
main#login .main-block > .card{
	padding: 1rem 0;
}

main#login .main-block label{
	margin: .25rem 0;
	font-weight: bold;
	display: block;
	border-bottom: 3px solid rgb(18,133,67);
	padding: .25rem .25rem;
	margin: .25rem 0 .4rem 0;
}
main#login .main-block .card-title{
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	border-bottom: 1px solid rgb(18,133,67);
	padding-bottom: .25rem;
}
.main-content {
	max-width: 70rem;
	padding-top: .5rem !important;
    padding-bottom: .5rem !important;
	padding-right: 1rem !important;
    padding-left: 1rem !important;
	margin-left: auto;
	margin-right: auto;
}
.confirm-btn {
	display: flex;
	justify-content: space-between;
}
@media (min-width: 600px) {
	.mypage-p {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
	.main-content {
		padding-right: 4rem !important;
		padding-left: 4rem !important;
	}
	.confirm-btn {
		display: block;
	}
	.btn-big {
		padding: 0.5rem 1rem;
		font-size: 1.25rem;
	}
}

/* 申請内容のテーブル */
.transfer-tr th, .transfer-tr td, .household-tr th, .household-tr td {
	display: block;
}
@media (min-width: 600px) {
	.transfer-tr th, .transfer-tr td, .household-tr th, .household-tr td {
		display: table-cell;
	}
}
/* 申請内容のテーブル */

/* 支給額のテーブル */
.amount_table{
	width: 100%;
	height: auto;
}
.amount_table th,.amount_table td {
	padding-bottom: 10px;
}
.amount_table_memo {
	font-size: 12px;
}
.amount_table_num{
	font-size: 1rem;
}
/* infoアイコン */
.bi-info-circle-fill {
	color: #3991cc;
}
@media (min-width: 600px) {
	.amount_table_memo {
		font-size: 1rem;
	}
	.amount_table_num{
		font-size: 1.5rem;
	}
}
/* 支給額のテーブル */

/* -一般- */


/* -管理者専用- */

/* ファイル参照ボタン */
.custom-file-label::after {
    background-color: #004098;
    border: solid 1px #004098;
    color: #ffffff;
}
/* ファイルアップロードの枠 */
.border-dashed {
    border: 1.5px dashed rgb(210, 210, 210);
}

/* 申請内容ダウンロード */
.status-container {
	width: 100%;
}
.date-form {
	width: 45%;
}
.date-form-center {
	width: 10%;
}
.status-card {
	height: 150px;
}
@media (min-width: 600px) {
	.status-container {
		width: 70%;
	}
	.date-form {
		width: 35%;
	}
}

/* ステータス登録 */
.border-dashed{
	border: 3px dashed rgb(227, 227, 243);
}

/* 金融機関登録 */
.accordion-bank {
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgb(185 213 178 / 25%) !important;
    --bs-accordion-active-color: #254d1b !important;
    --bs-accordion-active-bg: #ecfadf !important;
}

/* -管理者専用- */
/* --メイン-- */


/* --フッター--*/
footer{
	background-color: #7AAF54;
	color: #fff;
}
#foot{
	text-align: center;
	padding: 1rem 0;
	font-size: .8rem;
	line-height: 1;
}
/* --フッター-- */

@media only screen and (max-width : 992px) {
	.sp-block { display: block; }

	.sp-block { display: block; }

	.title{
		font-size: 1.2rem;
	}
	.sub-title{
		font-size: 1rem;
	}
	.nav-tabs .nav-link{
		font-size: .9rem;
	}
}
@media (max-width: 767px) {
	.wFull{ width: 100% !important; }
	#head{
		text-align: center;
	}
	.breadcrumb > div::before{
		display: none;
	}
	.sp-block { display: block; }
	main#login .main-block .card-title{
		text-align: center;
		line-height: 1.4;
		padding-bottom: .75rem;
	}
	.input-group.sp-custom select{
		width: calc(100% - 80px);
	}
	main#login .main-block label{
		margin-bottom: .5rem;
	}
	.navbar .container{
		display: block;
	}
	.card-text{
		font-size: .95rem;
	}
	.sp-center{
		text-align: center;
	}
	.sp-small{
		font-size: .8rem;
	}

}
@media (max-width: 559px) {

}

@media all and (-ms-high-contrast: none) {
	body{
		display: block;
	}
}

.error-field {
	border: 2px solid #f1aeb5 !important;
}

ul.text-indent {
    list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
ul.text-indent li {
    padding-left: 1em;
    text-indent: -1em;
  }
.note-list li::before{
	content: '※';
}