/* 変数 */
:root {
	--header-height: 60px;
	--header-large-height: 80px;
	--sidebar-width: 200px;
	--sidebar-category-height: 45px;
	--sidebar-link-height: 50px;
}

* {
	word-break: break-all;
}

/* -----------------------------
	ヘッダー
----------------------------- */
.navbar {
	background-color: #464E47;
	height: var(--header-height);
}
.navbar-brand {
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	width: var(--sidebar-width);
	line-height: var(--header-height);
	padding: 0px;
}
.navbar-brand span {
	background-color: #3EB272;
	padding: 0px 7px;
	border-radius: 10px;
	font-weight: normal;
	font-size: 16px;
}
.navbar-brand:hover {
	color: #1D2225;
}
.nav-item {
	margin: 0px 20px;
	list-style: none;
	font-size: 15px;
}
.header-link{
	color: white;
}

@media(max-width: 685) {
	.navbar {
		height: var(--header-large-height-height);
	}
}

/* -----------------------------
	サイドバー
----------------------------- */
.sidebar {
	width: var(--sidebar-width);
	background-color: white;
	box-sizing: border-box;
}
.side-category {
	padding-left: 10px;
	border-bottom: 1px solid #CACED5;
	height: var(--sidebar-category-height);
	line-height: var(--sidebar-category-height);
}
.side-item {
	list-style: none;
}
.side-item a {
	height: var(--sidebar-link-height);
	line-height: var(--sidebar-link-height);
	display: block;
	padding-left: 20px;
	color: #1D2225;
}
.side-item a:hover {
	background-color: #E6F6ED;
}
.sidebar-icon {
	width: 25px;
	text-align: center;
}
.logout-box {
	width: var(--sidebar-width);
	position: absolute;
	bottom: 0;
	margin-bottom: 100px;
}
.logout-box .side-item a,
.logout-box .side-item span {
	color: #ADBCB2;
}

/* -----------------------------
	main-content
----------------------------- */
main {
	font-size: 14px;
	font-family: 'Hiragino Sans Roboto';
	color: #393F4D;
	width: 100vw;
	min-height: calc(100vh - var(--header-height));
	display: flex;
}
.main-content {
	width: var(100vw - --sidebar-width);
	padding: 2% 3%;
	background-color: #F0F0F2;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
a {
	color: #0089AE;
}
a:hover,
a:focus,
a:active {
	color: #393F4D;
}

/* infoアイコン */
.fa-info-circle {
	color: #3EB272;
}

/*------ タイトル関連 -------*/
.main-title {
	font-family: sans-serif;
}
.main-title a {
	color: #393F4D;
}
.main-title a:hover {
	color: #0089AE;
}
.main-title span{
	font-size: 75%;
	font-family: sans-serif;
}

/*------ テーブル関連 -------*/
th {
	background-color: #F5F6F8;
}
td {
	border-bottom:0.1rem solid #e1e1e1;
}
tbody tr:hover {
	background-color: rgba(0, 0, 0, 0.025);
}
.page-jump:hover {
	cursor: pointer;
}
.emphasis-td {
	font-weight: bold;
}
.nowrap-td, .nowrap-link {
	white-space: nowrap;
}

/*------ フォーム関連 -------*/
input,
select,
textarea {
	border-radius:.4rem;
}
.hearing_content {
	height: 50rem;
}
.form-item-label {
	font-weight: bold;
	color: #393F4D;
}
.form-item-box {
	margin-bottom: 2.0rem;
}
.form-item-info .fas {
	color: #0089AE;
}
.form-required-badge {
	height: 15px;
	width: 30px;
	line-height: 15px;
	text-align: center;
	color: white;
	font-size: 10px;
	font-weight: bold;
	background-color: #D05569;
	border-radius: 4px;
	display: none;
}
.form-required-badge.required {
	display: block;
}
.all-check {
	font-size: 15px;
	margin-top: 1rem;
	margin-bottom: 0.1rem;
}
.all-check input {
	margin-right: 0.5rem;
}
.align-checkbox label,
.align-radio label {
	font-size: 15px;
	margin-top: 0.1rem;
	margin-bottom: 1rem;
	padding-right: 1.5rem;
}
.align-checkbox label input,
.align-radio label input {
	margin-right: 0.5rem;
}
.area-checkbox-label {
	font-weight: bold;
	padding-right: 0.5rem;
}
.label-box {
	padding-left: 1rem;
}
.error-message {
	color: #D05569;
}

input[type="file"] {
	display: none;
}
.form-file-label {
	padding: 0.5rem 7rem;
	margin-bottom: 0rem;
	border-radius: 0.4rem;
    color: #393F4D;
    background-color: #E0E0E0;
	font-size: 14px;
    cursor: pointer;
}
.form-file-label:hover {
	background-color: #AAAAAA;
}
/* フォーム単位 */
.unit {
	font-weight: bold;
}

/*------ ボタン関連 -------*/
.button {
	background-color: #3EB272;
}
.add-button {
	background-color: #3EB272;
}
.button-width {
	width: 15%;
}
@media(max-width: 1300px) {
	.button-width {
		width: 30%;
	}
}
.cancel {
	background-color: #393F4D;
	border: none;
	margin-bottom: 0.25rem;
}
.save-button {
	background-color: #3EB272;
	border: none;
}

/*------ 検索欄 -------*/
.search-box {
	padding: 2rem 2rem 0rem 2rem;
	margin: 2rem 0rem;
	border-radius: 0.4rem;
	border: 1px solid #CACED5;
}
.search-input {
	background-color: white;
	border-radius: 6px 0px 0px 6px;
	border: 0.1rem solid #CACED5;
}
.search-button {
	height: 3.8rem;
	line-height: 3.8rem;
	border-radius: 0px 6px 6px 0px;
	border: 0.1rem solid #CACED5;
	border-left: none;
	background-color: #F8F7F7;
	color: #3EB272;
}
.search-select {
	border-radius: 6px;
}
.clear-button {
	height: 3.8rem;
	padding: 1rem 1.5rem;
	border-radius: 6px;
	border: 0.1rem solid #3EB272;
	background-color: none;
	color: #3EB272;
}
.clear-button:hover {
	height: 3.8rem;
	padding: 1rem 1.5rem;
	border-radius: 6px;
	border: 0.1rem solid #3EB272;
	color: white;
	background-color: #3EB272;
}

/*------ テキスト関連 -------*/
.sent_message, .positive_message {
	color: #2A8F58;
}
.normal_message {
	color: #0089AE;
}
.unsent_message, .negative_message {
	color: #D05569;
}

/*------ リンク関連 -------*/
.pankuzu {
	font-size: 16px;
}
.view-operation-link {
	font-size: 17px;
	font-weight: bold;
}
#add-office-link, .add-link {
	color: #0089AE;
	font-weight: bold;
	cursor: pointer;
}
.edit-link {
	color: #3EB272;
}
.delete-link {
	color: #D05569;
	font-weight: bold;
	cursor: pointer;
}

/*------ モーダル -------*/
.modal-content {
	border-radius: 0.4rem;
}