@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-size: 16px;
	line-height: 1.9;
	word-wrap: break-word;
	overflow-wrap: break-word;
	color: #141414;
}

#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

body>#wrapper {
	height: auto;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

@media print {

	html,
	html body {
		overflow: visible !important;
	}
}

a {
    cursor: pointer;
}

/* アクセシビリティ */
.guidance {
	left: -999px;
	position: absolute;
	width: 990px;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
}

/* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0;
	/* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0;
	/* IE7対応 */
}

/* Windows Chrome 画像ぼやけ防止 */
@media screen and (min-width: 768px) {
	img {
		image-rendering: -webkit-optimize-contrast;
	}
}

/* リンク */
a {
	display: inline-block;
}

a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	opacity: .7;
	text-decoration: none !important;
}

.NotoSans {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.NotoSerif {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

.center {
	text-align: center;
}

/* ベースカラー */
.base-txt-dark {
	color: #666666;
}

.base-txt-pale {
	color: #8c8c8c;
}

.base-bg-dark {
	background-color: #E5E7EB;
}

.base-bg-pale {
	background-color: #F9FAFB;
}

/* アクセントカラー */
.accent-txt {
	color: #6366F1;
}

.accent-bg-dark {
	background-color: #D7E3F8;
}

.accent-bg-pale {
	background-color: #EEF3FB;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.flex_wrap {
	display: flex;
}

.pc {
	display: block;
}

.sp {
	display: none;
}


/* ▼ タイトル
--------------------------------------- */
#site_title {
	overflow: hidden;
}

h1 .logo a {
	display: block;
	margin: 0 auto;
	background-color: #fff;
	width: 53%;
	max-width: 137px;
	border-radius: 50%;
	object-fit: cover;
}

h2 {
	font-size: 1.75rem;
}


/* ▼▼▼ ヘッダー
====================================================== */
header {
	width: 30%;
	max-width: 300px;
	min-height: 100vh;
	overflow: hidden;
}

header .container {
	padding: 40px 0;
}

.menu {
	display: none;
}

/* グローバルナビゲーション */
#gnav {
	overflow: hidden;
}

#gnav .company a {
	position: relative;
	display: block;
	text-align: center;

}

#gnav .company .arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #666;
	border-right: 2px solid #666;
	transform: rotate(135deg);
	transition: transform 0.2s ease;
	margin: 0 2% 1% 4%;
}

.menu_fixed #gnav ul .company .close .arrow {
	transform: rotate(-45deg);
}

#gnav .company i.fa-gear {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2em;
}

#gnav .company .child {
	display: none;
}

#gnav ul>li a {
	display: block;
	text-decoration: none;
	height: 60px;
	align-content: center;
}

#gnav ul>li a:hover {
	-ms-filter: "alpha(opacity=60)";
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
}

#gnav ul>li.olc a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px 0 50px !important;
}

#gnav ul>li.olc a i {
	display: none;
}

#gnav ul>li.olc>a:hover>i {
	display: block;
}

#gnav ul>li:not(:first-child) a {
	padding: 0 50px;
}

#gnav>ul>li:not(:first-child) a:hover {
	background-color: #fff;
	opacity: unset;
}

#gnav ul>li:not(:first-child) a i {
	width: 33px;
	font-size: 1.3em;
	text-align: center;
}

#gnav ul>li:not(:first-child) a i.fa-file {
	vertical-align: middle;
}


/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	width: 100%;
	clear: both;
	overflow: hidden;
}

/* ヘッダー検索バーエリア */
.search-bar .fa-bullhorn,
.search-bar .fa-bell {
	position: relative;
}

.search-bar .fa-bullhorn .badge,
.search-bar .fa-bell .badge {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #FF0000;
	border-radius: 50%;
	top: -3px;
}

.search-bar .fa-bullhorn .badge {
	right: 18px;
}

.search-bar .fa-bell .badge {
	right: 10px;
}

.search-bar {
	display: flex;
	height: 80px;
	background-color: #fff;
	padding: 20px 30px 20px 10px;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 3px 13px rgba(229, 231, 235, 1.0)
}

.search-left {
	display: flex;
	align-items: center;
}

.search-bar .fa-bullhorn {
	padding: 0 20px;
	font-size: 1.5rem;
}

.search-box {
	position: relative;
	width: 50vw;
	max-width: 520px;
	border-radius: 5px;
	flex-grow: 1;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal .content{
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
}

.modal .error {
    color: #ff0000;
    font-size: 0.9em;
    margin-top: 10px;
}

.modal table {
    width: 100%;
}

.form-element {
	padding: .5rem .5rem .5rem 2rem;
	width: 100%;
	outline: 0;
	border: none;
	background-color: transparent;
	box-sizing: border-box;
	appearance: none;
	line-height: 1.4rem;
}

.form-element::placeholder {
	color: #a6a6a6;
}

.form-element+i {
	position: absolute;
	color: #a6a6a6;
	top: 50%;
	left: .5rem;
	transform: translateY(-50%);
	content: '';
	transition: .3s;
}

.form-element:focus {
	border: 1px solid #6366F1;
	box-shadow: 0 0 3px #6366F1;
	border: none;
	border-radius: 5px;
}

.form-element:focus+i {
	color: #6366F1;
}

.search-bar ul {
	display: flex;
}

.search-bar ul li i {
	font-size: 1.5rem;
	padding: 0 10px;
}

.notification-wrapper {
	position: relative;
}

.notification-wrapper button,
.user-wrapper button {
	color: #8c8c8c;
	background-color: transparent;
	border: none;
}

.user-wrapper button {
	cursor: pointer;
}

#notification-icon {
	position: relative;
	cursor: pointer;
}

/* .badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: red;
	color: white;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	font-size: 10px;
} */

/* ドロップダウン本体 */
#notification-dropdown {
	position: absolute;
	top: 55px;
	right: 0;
	width: 370px;
	background: white;
	border-radius: 5px;
	border: 1px solid #E5E7EB;
	z-index: 1000;
}

#notification-dropdown.hidden {
	display: none;
}

.notification-list {
	display: block !important;
	color: #141414;
	font-size: 0.9em;
}

.notification-list .pic {
	width: 50px;
	margin-right: 10px;
}

.notification-list li,
.notification-list li .comment-left,
.notification-list li .comment-left .comment-inner div {
	display: flex;
}

.notification-list>li {
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
}


.notification-list>li:not(:last-child) {
	border-bottom: 1px solid #E5E7EB;
}

.comment-inner div {
	justify-content: space-between;
}

.comment-inner div .accent-txt {
	margin-right: 10px;
}

/* ユーザーメニュー */
#user-dropdown {
	position: absolute;
	top: 55px;
	right: 0;
	width: 200px;
	background: white;
	border-radius: 5px;
	border: 1px solid #E5E7EB;
	z-index: 1000;
}

#user-dropdown.hidden {
	display: none;
}

#user-dropdown .user-menu {
	display: block;
	margin: 0;
	padding: 0;
}

.user-menu li {
	padding: 12px 16px;
	border-bottom: 1px solid #E5E7EB;
}

.user-menu li:last-child {
	border-bottom: none;
}

.user-menu li a {
	color: #333;
	text-decoration: none;
	display: block;
}

/* モーダル内ボックス */
.modal-content {
	/* display: none; */
	position: fixed;
	background-color: #D7E3F8;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	text-align: center;
	width: 1000px;
	max-width: 90%;
	max-height: 60%;
	overflow: auto;
	inset: 0;
	margin: 80px auto;
	flex-direction: column;
	z-index: 9999;
}

/* 閉じるボタン */
.close-modal {
	margin: 1.5rem auto 0;
	width: 100px;
	padding: 8px 16px;
	background-color: #6366F1;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
}

/* ▼ コンテンツ
--------------------------------------- */
#content_wrap {
	width: 90%;
	max-width: 906px;
	margin: 60px auto;
}

.breadcrumbs {
	display: flex;
	position: relative;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	position: absolute;
	margin: 0 12px;
}

.breadcrumbs li:not(:first-child) {
	padding: 0 15px;
}

.breadcrumbs li:first-child {
	padding-right: 15px;
}

.more-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.more-btn a,
.more-btn button {
	display: flex;
	width: 100px;
	height: 35px;
	border: 1px solid #6366F1;
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.more-btn button {
	cursor: pointer;
}



/* ▼ キーワード検索リア
--------------------------------------- */

.search {
	background-color: #fff;
	padding: 20px 50px 30px 50px;
	border-radius: 5px;
	box-shadow: 0 3px 13px rgba(0, 0, 0, 0.16);
}

.search-form {
	display: flex;
	width: 100%;
	max-width: 334px;
	align-items: center;
	overflow: hidden;
	border-radius: 24px;
}

.search-form:hover {
	box-shadow: 0 3px 13px rgba(0, 0, 0, 0.16);
}

.search-form input {
	width: 300px;
	height: 40px;
	padding: 5px 20px;
	border: none;
	box-sizing: border-box;
	outline: none;
}
/* ▼ セレクトボックス（検索フォーム用）
--------------------------------------- */
.select-search {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-search select {
    appearance: none;
    cursor: pointer;
}

/* .select-search::after {
    content: '';
    position: absolute;
    top: 50%;
    right: .5rem;
    width: 8px;
    height: 8px;
    border-top: 2px solid #a6a6a6;
    border-right: 2px solid #a6a6a6;
    transform: translateY(-50%) rotate(135deg);
    pointer-events: none;
    transition: .3s;
} */

.select-search:has(select:focus)::after {
    border-color: #6366F1;
}
/* ▲ セレクトボックス（検索フォーム用） */

input[type=checkbox] {
	display: none;
}

.check_list {
	display: flex;
	flex-wrap: wrap;
}

.checkbox01-parts {
	position: relative;
	margin-right: 25px;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
}

.checkbox01-parts::before {
	content: "";
	display: inline-block;
	margin-right: 8px;
	width: 17px;
	height: 17px;
	border: 1px solid #6366F1;
	border-radius: 2px;
	vertical-align: middle;
}

input[type=checkbox]:checked+.checkbox01-parts::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 6px;
	width: 5px;
	height: 10px;
	transform: rotate(40deg);
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}

input[type=checkbox]:checked+.checkbox01-parts::before {
	border: none;
	background: #6366F1;
	border: 1px solid #6366F1;
}

/* ▼ プルーフ
--------------------------------------- */
.proof {
	background-color: #fff;
	box-shadow: 0 3px 13px rgba(0, 0, 0, 0.16);
	border-radius: 5px;
}

.proof li {
	display: flex;
	height: 100px;
	align-items: center;
	justify-content: space-between;
}

.proof li:not(:last-child) {
	border-bottom: 2px solid #E5E7EB;
}

.proof li .left-wrap {
	width: 58%;
	display: flex;
	align-items: center;
}

.proof>li>.left-wrap>span {
	width: 10%;
	max-width: 40px;
	text-align: center;
	cursor: pointer;
}

.proof li span i {
	text-align: center;
}

.proof li .pic {
	width: 68px;
	border-radius: 5px;
	margin-right: 10px;
}

.proof li .date-wrap {
	display: flex;
	margin: 0 40px;
}

.proof li .date-wrap .limit {
	margin-right: 40px;
}

.proof li .date-wrap i {
	margin-left: 10px;
}

.proof li .updated span {
	display: inline-block;
	width: 30px;
	/* height: 30px; */
	background-color: #EEF3FB;
	margin-right: 5px;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
	vertical-align: middle;
}

/* ▼ 表示件数
--------------------------------------- */
.pagenate-wrap {
	display: flex;
	justify-content: space-between;
}

.selectbox-item-displayed {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.selectbox-item-displayed::after {
	content: '';
	position: absolute;
	bottom: 20px;
	left: 43px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #6366F1;
	border-right: 2px solid #6366F1;
	transform: rotate(135deg);
	pointer-events: none;
}

.selectbox-item-displayed select {
	background-color: transparent;
	appearance: none;
	min-width: 40px;
	height: 2.8em;
	padding: .2em calc(.4em + 15px) .2em .4em;
	border: none;
	font-size: 1em;
	font-weight: bold;
	cursor: pointer;
}

.selectbox-item-displayed select:focus {
	outline: none;
}

/* ▼ ページネーション
--------------------------------------- */

.pagination-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	list-style-type: none;
	padding: 0;
}

.pagination-1 a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	border: 1px solid #8c8c8c;
	border-radius: 5px;
	color: #666;
}

.pagination-1 a:not(:hover) {
	text-decoration: none;
}

.pagination-1 .current a {
	background-color: #6366f1;
	color: #fff;
	border-color: #6366F1;
	pointer-events: none;
}

.pagination-1 a {
	font-weight: 500;
}

/* ▼ 新規追加
--------------------------------------- */
.add {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.add button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 132px;
	height: 38px;
	background-color: #6366F1;
	color: #fff;
	border-radius: 5px;
	border: none;
	font-size: 1em;
	cursor: pointer;
}

.add button:hover {
	background-color: transparent;
	color: #6366F1;
	border: 1px solid #6366F1;
}

.add button i {
	margin-right: 10px;
	font-size: 0.8em;
}

/* ▼ システム
--------------------------------------- */
.disabled {
	opacity: .5;
	pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */

#footer_inner {
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}


/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
	position: fixed;
	bottom: ;
	right: 20px;
	z-index: 2000;
	cursor: pointer;
	font-size: 3em;
}


/* ▼▼▼ 404
====================================================== */
#not_found {
	padding: 8vw 20px;
}

#not_found p {
	font-size: 14px;
	text-align: center;
}

#not_found p.arial {
	margin-bottom: 10px;
	font-size: 42px;
	font-family: "Arial", "メイリオ";
}

#not_found p.arial+p {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: bold;
}

#not_found p.txt {
	margin-bottom: 30px;
	line-height: 1.9;
}

#not_found .top_btn a {
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #ccc;
}

/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body {
		font-size: 14px;
	}

	body.wrap {
		overflow: hidden;
	}


	#wrapper {
		width: 100%;
	}

	#screen {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: 200;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	/* ▼タイトル
	--------------------------------------- */
	#site_title {
		overflow: hidden;
	}

	/* ▼▼▼ ヘッダー
	====================================================== */
	header {
		width: 100%;
		padding: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		overflow: visible;
	}

	.header_inner {
		width: 100%;
		height: 51px;
		background: #fff;
		border-bottom: 1px solid #ccc;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
	}

	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	#gnav {
		display: block !important;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		float: none;
		width: 100%;
		max-height: 100vh;
		padding-top: 51px;
		margin: 0;
		position: absolute;
		top: -1000px;
		left: 0;
		z-index: 1000;
		overflow: auto;
	}

	#gnav.open {
		-moz-transform: translateY(1000px);
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px);
	}

	#gnav ul {
		display: block;
	}

	#gnav ul>li {
		width: 100% !important;
		max-width: 100% !important;
		height: auto;
		text-indent: 0;
	}

	#gnav ul>li>a {
		height: 50px !important;
		background: #fff;
		background-size: 10px 10px !important;
		border-bottom: 1px solid #ccc;
		padding: 0 15px;
		color: #333;
		line-height: 50px;
		font-weight: bold;
	}

	#gnav ul>li>a:hover {
		text-decoration: none;
		opacity: 1;
	}

	/* ▼メニューボタン
	--------------------------------------- */
	.menu {
		display: block;
		width: 50px;
		height: 50px;
		background: #000;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2000;
	}

	.menu .icon {
		display: block;
		width: 30px;
		height: 2px;
		border-top: 2px solid #fff;
		position: absolute;
		top: 40%;
		right: 10px;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.menu .icon:before,
	.menu .icon:after {
		content: '';
		width: 30px;
		border-top: 2px solid #fff;
		position: absolute;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		right: 0;
	}

	.menu .icon:before {
		top: -11px;
	}

	.menu .icon:after {
		bottom: -9px;
	}

	.menu .icon.active {
		border-color: #000;
	}

	.menu .icon.active:before {
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		top: -2px;
		right: 0;
	}

	.menu .icon.active:after {
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		bottom: 0;
		right: 0;
	}

	.menu .icon span:before {
		content: "Menu";
		color: #fff;
		font-size: 12px;
		position: absolute;
		left: 50%;
		bottom: -24px;
		transform: translate(-50%, -0%);
		-webkit-transform: translate(-50%, -0%);
	}

	.menu .icon.active span:before {
		content: "Close";
	}

	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,
	#contents,
	#side,
	footer,
	#footer_inner {
		float: none;
		width: 100%;
	}

	#main {}

	.menu_fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	.read {
		margin: 0 0 15px;
	}

	/* 2column の場合！！各自修正して使用してください */
	.flex_box {}


	/* ▼▼▼ フッター
	====================================================== */
	footer {
		padding: 20px;
	}

	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop {
		background: #000;
		padding: 10px;
		color: #fff;
	}

	/* ▼▼▼ 404
	====================================================== */
	#not_found {
		padding: 100px 20px 60px;
	}

	#not_found p.arial {
		margin-bottom: 10px;
		font-size: 39px;
	}

	#not_found p.arial+p {
		font-size: 17px;
	}

	#not_found p.txt {
		line-height: 1.6;
	}

}


@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Font Awesome spinner rotation */
.fa-spinner,
.fas.fa-spinner {
	animation: spin 1.5s linear infinite;
}
