@charset "UTF-8";
a,
input[type=submit],
input[type=button],
.link-circle,
.icon-link-circle{
	transition: all .2s ease;
}
.select-box{
	position: relative;
    display: inline-block;
    align-items: center;
}
.select-box::after{
	content: '';
    display: inline-block;
    border: 2px solid #000;
    border-top: none;
    width: 5px;
    height: 5px;
    transform: rotate(-45deg);
    border-right: none;
    position: absolute;
    right: 7px;
    user-select: none;
    /*top: 9px;*/
    pointer-events: none;
    top: calc(50% - 5px);
}

.select-box.select-box-open::after{
	content: '';
    display: inline-block;
    border: 2px solid #000;
    border-top: none;
    width: 5px;
    height: 5px;
    transform: rotate(135deg);
    border-right: none;
    position: absolute;
    right: 7px;
    user-select: none;
    /*top: 9px;*/
    pointer-events: none;
    top: calc(50%);
}
select{
	appearance: none;
	-webkit-appearance: none;
    padding: 6px 20px 6px 10px;
	
	text-rendering: auto;
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    box-sizing: border-box;
    align-items: center;
    white-space-collapse: preserve;
    text-wrap: nowrap;
    -webkit-rtl-ordering: logical;
    background-color: field;
    cursor: default;
    margin: 0em;
    border-width: 1px;
    border-style: solid;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    border-radius: 0px;
}
.ui-datepicker .select-box select.ui-datepicker-month,
.ui-datepicker .select-box select.ui-datepicker-year{
	width: 100%;
}
.red{
	color:rgba(233, 46, 60, 1);
}
#public-layout{
	text-align: center;
	background-color: #fafafa;
	min-height: 100vh;
}
#base-layout{
	background-color: #fafafa;
	/*background-color: #e84a5f;*/
	min-height: 100vh;
}
/*#cmn-header {
	overflow: visible;
    height: 50px;
	width: 100%;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;

}*/
#cmn-header > #site-name{
	color: #d70c19;
	font-size: 1.6em;
	font-weight: 600;
	margin-left: 10px;
	line-height: 1em;
	margin-right: 10px;
}
#header-right {
	width: auto;
	margin-left: auto;
	display: flex;
	height: 80px;
	align-items: center;
	font-size: 1.2em;
}

#header-right-name-container{
	position: relative;
	user-select: none;
    margin-right: 20px;
}
#header-right-name{
	font-size: 11px;
    display: inline-block;
    padding: 2px 10px  2px 15px;
	color: #505050;
	cursor: pointer;
	/*height: 50px;*/
	border: 1px solid #e92e3c;
	border-radius: 13px;
	border-right-width: 30px;
	position: relative;
    min-width: 150px;
    display: flex;
    align-items: center;
}
#header-right-name:hover{
	border-color: #ff4a58;
}
#header-right-name:after{
	display: inline-block;
	content: url(../images/icon_expand_more.svg);
	width: 20px;
	height: 20px;
	position: absolute;
	right:-24px;
	/*top: 1px;*/
}
#header-right-menu a:first-child{
	/*padding-top: 5px;*/
}
#header-right a img {
}
#header-right #contact{
	height: 86px;
	width: 80px;
	min-width: 80px;
	background-color: rgba(233, 46, 60, 1);
	color: #FFF;
	font-size: 10px;
	text-decoration: none;
	flex-direction: column;
}
#header-right #contact:hover{
	background-color: #ff4a58;
}
#header-right #contact .email{
	width: 23px;
	height: 16px;
	text-align: center;
	margin-top: 28px;
	margin-bottom: 12px;
	margin-left: 28px;
}
#header-right #contact img{
	width: 100%;
	height: 100%;
}
#header-right #contact .contact-text{
	/*transform: scale(0.9);*/
	text-align: center;
}
#logo{
	width: 100px;
	text-align: center;
	/*padding:20px 0px 20px 0px;*/
	margin-left: 20px;
}
#logo img{
	width: 80px;
}
#logo a:hover {
	background-color: #fff !important;
}
#main-line{
	display: flex;
	background-color: #fafafa;
}



#cmn-header {
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
    border-radius: 0 0 24px 24px;
	border-bottom: 1px solid white;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
	z-index: 1002;
}
#cmn-header.login {
	justify-content: left;
}

/* FAQボタン */
.faq-button {
	display: flex;
	/*background-color: #e84a5f;
	color: #ffffff;*/
	background-color: #ffffff;
	border: 1px solid #e84a5f;
	color:  #e84a5f;
	padding: 4px 14px;
	border-radius: 14px;
	text-decoration: none;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.faq-button:hover {
	/*background-color: #ffffff;
	border: 1px solid #e84a5f;
	color:  #e84a5f;*/
	background-color: #e84a5f;
	color: #ffffff;
	.faq-circle {
		/*background-color: #e84a5f;*/
		background-color: #ffffff;
	}
	.faq-circle span {
		/*color: #ffffff;*/
		color: #e84a5f;
	}
}
a:has(.faq-button) {
	text-decoration: none;
}
.faq-circle {
	width: 16px;
	height: 16px;
	/*background-color: #ffffff;*/
	background-color: #e84a5f;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1px 7px 0 0;
}
.faq-circle span {
	/*color: #e84a5f;*/
	color: #ffffff;
	font-size: 0.8em;
	font-weight: bold;
	line-height: 0;
}
.faq-text {
	line-height: 18px;
}

#header-right {
	height: 80px;
}
/* メニュー */
#header-right .faq,
#header-right .info,
#header-right .menu {
	margin-right: 30px;
	color: #505050;
	height: 60px;
    display: flex;
	align-items: center;
	border: 3px solid #ffffff;
}
#header-right .menu {
	cursor: pointer;
}
#header-right .faq a,
#header-right .info a,
#header-right .menu a {
	text-decoration: none;
}
#header-right .info:hover {
	border-bottom: 3px solid #d53841;
	cursor: pointer;
}
#header-right .info:hover a {
	color: #e92e3c;
}
#header-right .menu:after {
	display: inline-block;
	/*content: url(../images/icon_menu_compress_more.svg); Javascriptで制御*/
	width: 22px;
	height: 22px;
	position: relative;
	right: 0;
	top: 1px;
}
.expand-menu {
	display: flex;
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
	position: fixed;
	width: 100%;
	/*	height: 130px;*/
	top: 40px;
	background-color: #ffffff;
	padding-top: 20px;
	padding-left: 40px;
	font-size: 1.2em;
	z-index: 1001;
}
.expand-menu .title,
.expand-menu .link {
	display: flex;
	align-items: center;
}
.expand-menu .title a,
.expand-menu .link a {
	text-decoration: none;
}
.expand-menu .link a:hover {
	color: rgb(233, 46, 60)
}
.expand-menu .title {
	font-size: 1.5em;
	font-weight: 500;
	margin-right: 48px;
}
.expand-menu .link {
	font-size: 1.1em;
	margin-right: 40px;
}

/* ユーザー情報 */
#header-right .user-info {
	height: 60px;
	background-color: #e84a5f;
	color: #ffffff;
	padding: 0 10px;
	border-radius: 0 0 16px 0;
	display: flex;
	align-items: center;
	cursor: pointer;
}
#header-right .user-info:hover {
	background-color: #ff4a58;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
#header-right .user-info:after {
	display: block;
	/*content: url(../images/icon_expand_more2.svg); Javascriptで制御*/
	width: 22px;
	height: 22px;
	position: relative;
	right: 0;
	top: 1px;
	color: #ffffff;
}
#header-right .user-info-circle {
	width: 32px;
	height: 32px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	margin: 0 10px 0 5px;
}
#header-right .user-info-circle span {
	color: #e84a5f;
	font-size: 1.5em;
	font-weight: bold;
}
#header-right .user-info span {
	margin-left: 9px;
	line-height: 0;
}
#header-right .login-info {
	width: 170px;
}
#header-right .company,
#header-right .dealer,
#header-right .user {
	display: flex;
	flex-direction: column;
}
#header-right .company,
#header-right .dealer {
	font-size: 0.8em;
}
#header-right .user {
	font-size: 1em;
}
#header-right-menu {
    display: none;
    flex-wrap: wrap;
    position: fixed;
    border: 1px solid #f2efef;
    background-color: #fff;
    width: 259px;
    right: 0px;
    top: 60px;
}
#header-right-menu a {
	text-align: left;
	display: inline-block;
	font-size: 13px;
	text-decoration: none;
	width: 100%;
	padding-top: 10px;
	padding-left: 10px;
	color: #000000;
}
#header-right-menu a:hover {
	text-decoration: underline;
	color: #808080;
}
#header-right-menu a.infomanage {
	border-top: 1px solid #f2efef;
	margin-top: 10px;
}
#header-right-menu a#signout {
	border-top: 1px solid #f2efef;
	margin-top: 10px;
	padding: 5px 10px;
	background-color: #fef2f2;
	color: #e84a5f;
	font-weight: bold;
}
#header-right-menu a#signout:hover {
	background-color: #e84a5f;
	color: #ffffff;
	text-decoration: none;
}

/* スクロール時の調整
---------------------------------------------------------------*/
.cmn-header-scroll,
.header-right-scroll,
.header-right-user-info-scroll {
	height: 45px !important;
	border-radius: 0 !important;
}
.expand-menu-scroll {
	top: 25px !important;
}
.header-right-menu-scroll {
	top: 45px !important;
}
.hidden-contents-scroll {
	display: none !important;
}

/* コンテンツ
---------------------------------------------------------------*/
#contents{
	flex-grow: 1;
	padding: 100px 30px;
}
#contents-container{
	box-sizing: border-box;
	min-height: 400px;
	padding: 24px 24px 0 24px;
}

/* FAQ
-------------------------------------------------------------------*/
.floating_faq {
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
    background-color: #e84a5f;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 14px 0 0 0;
    text-decoration: none;
	align-items: center;
	font-size: 1.2em;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.floating_faq:before {
	content: url(../images/faq_icon.svg);
	margin: 10px 15px 0 0;
	transform: scale(1.9, 1.5);
}
.floating_faq:hover {
	background-color: #ff4a58;
}

/* フッター
---------------------------------------------------------------*/

#footer {
	text-align: left;
	width: 100%;
    min-height: 60px;
	padding: 20px;
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: #e84a5f;
}

#footer a{
	display: inline-block;
	margin: 0px 10px 0px 10px;
	text-decoration: none;
	color: #ffffff;
}
#footer a:hover {
	text-decoration: underline;
}
#footer .copyright {
	float:left;
	color: #ffffff;
	width: 50%;
}
#footer .menu {
	float: right;
	width: 50%;
	text-align: right;
}
#footer .menu .link-circle{
	background-color: transparent;
	border: 0;
    position: relative;
    top: 3px;
	left: 3px;
    width: 14px;
    height: 14px;
}
#footer .menu .link-circle::before{
	height: 10px;
	margin-top: -3px;
}
#pub-footer{
	text-align: center;
	font-size: 0.8em;
	color: #909090;
	margin-top: 30px;
}
.pub-footer-text1{
	display: inline-block;
}
.pub-footer-text2{
	display: inline-block;
}
.pub-footer-text3{
}

/* インフォメーション */
#information-container{
	display: flex;
}
#information-container > #search-container{
	flex-basis: 30%;
	flex-grow: 3;
	min-width: 250px;
	max-width: 250px;
	/*height: 100vh;*/
	overflow: auto;
	padding-right:20px;
	background-color: #fafafa;
}

#information-container > #list-container{
	flex-basis: 70%;
	flex-grow: 7;
	padding-left:20px;
}
#information-container > #search-container .search-box{
	margin-bottom: 20px;
}
#information-container > #search-container .search-box > .title{
	color: rgba(233, 46, 60, 1);
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-size: 1.2em;
}
.between-text{
	display: inline-block;
	padding: 0 10px 0 10px;
	line-height: 1em;
}
#information-container > #search-container .search-box > .data{
	display: flex;
	align-items: center;
}
#information-container > #search-container .search-box .keyword{
	width: 100%
}
#information-container > #search-container .search-box .is_download{
	width: 100%
}
#information-container > #search-container .search-box .public_target{
	width: 100%
}
#information-container > #search-container .search-box .period-box{
	display: flex;
	align-items: center;
	width: 100px;
}
#information-container > #search-container .search-box .period-box > *{
	white-space: nowrap;
}
#information-container > #search-container .search-box .period-box:has(.date_from){
	white-space: nowrap;
}
#information-container > #search-container .search-box .period-box .date_from,
#information-container > #search-container .search-box .period-box .date_to{
	width: 100%;
}
#information-container > #search-container .button-box{
	text-align: center;
}
#information-container > #search-container .button-box .cmn-btn{
	width: 100%;
}
#information-container > #search-container label{
	line-height: 3em;
}

#information-container > #list-container .information-list{
	background-color: #fff;
	padding: 20px;
}

#information-container.top > #list-container .information-list{
	overflow: auto;
	height: 578px;
}

#information-container > #list-container .information-box{
	border-bottom: 1px solid #e0e0e0; 
	padding-bottom: 15px;
	margin-bottom: 15px;
}
#information-container > #list-container .information-box:last-child{
	border-bottom: 1px solid #e0e0e0; 
	padding-bottom: 15px;
	margin-bottom: 0;
}
#information-container > #list-container .information-box .row1{
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
#information-container > #list-container .information-box .row2{
	display: flex;
	flex-wrap: wrap;
	/*align-items: center;*/
}
#information-container > #list-container .information-box .date{
	color: #808080;
	margin-right: 10px;
}
#information-container > #list-container .information-box .category-box{
	/*margin-left:auto;*/
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 10px;
}
#information-container > #list-container .information-box .category{
	border: 1px solid rgba(233, 46, 60, 1);
	border-radius: 1em;
	padding: 2px 15px;
	background-color: #fff;
	margin-left: 10px;
}
#information-container > #list-container .information-box .title{
	font-weight: bold;
	font-size: 1.2em;
	/*white-space: nowrap;*/
	width: 100%;
	margin-bottom: 3px;
}
#information-container > #list-container .information-box .files{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 20px;
}
#information-container > #list-container .information-box .files > li{
	display: flex;
	align-items: center;
	/*margin-right: 20px;*/
}
.square{
	width: 12px;
	height: 12px;
	background-color: #92c353;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 4px;
    min-width: 12px;
}
.square.red{
	background-color: #e92e3c;
}
.check {
	display: inline-block;
	width: 8px;
	height: 4px;
	border: 0;
	border-left-width: 2px;
	border-bottom-width: 2px;
	border-color: #fff;
	transform: rotate(-45deg);
	border-style: solid;
}
#edit_form .file-box{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
#edit_form .file-box div:has(.file){
	min-width: 230px;
}
#edit_form .file-box div:has(.delete_row){
	margin-left: auto;
}
#edit_form .add-file{
	display: inline-block;
	color: #1a73e8;
	cursor: pointer;
}
#edit_form .add-file:hover{
	opacity: 0.8;
}
#information-container > #search-container .sp-search-close-box,
#search-container .sp-search-form .sp-search-close-box{
	display: none;
}
#edit_form .information_mail{
	display: flex;
	align-items: center;
}
#sp-search-popup{
	display: none;
}

#fixed-pager{
	position: sticky;
	top: 45px;
	z-index:100;
}
.pager-limit-box{
	margin-right: 10px;
}
.link-container{
	background-color: #fff;
	padding: 20px;
	margin-bottom: 20px;
}
.link-container > .link-title{
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 20px;
	margin-bottom: 10px;
	padding-left: 10px;
}
.link-container > .link-list{
	display: flex;
	flex-wrap: wrap;
}
.link-container > .link-list > li{
	width: 50%;
	margin: 10px 0;
	padding-left: 10px;
	display: flex;
	align-items: center;
}
.link-container > .link-list .link-circle{
	margin-right: 10px;
}

.link-container-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
	background-color: #fff;
	padding: 20px;
	margin-bottom: 20px;
	column-gap: 20px;
	row-gap: 80px;
}
.link-container-grid > .link-container-grid-sub{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: 0;
}
.link-container-grid > .link-container-grid-sub > .link-title{
	border-bottom: 1px solid #b0b0b0;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: bold;
}
.link-container-grid > .link-container-grid-sub > .link-list{
}
.link-container-grid > .link-container-grid-sub > .link-list > li{
	width: 100%;
	margin-bottom: 15px;
	/*margin: 15px 0;*/
}
.link-container-grid > .link-container-grid-sub > .link-list > li > *{
	display: flex;
	align-items: center;
}
.link-container-grid > .link-container-grid-sub > .link-list .link-circle{
	margin-right: 10px;
	margin-left: 0px;
}
/*
.link-circle,
.link-list .link-circle{
	clip-path: circle(50%);
	width:16px;
	height: 16px;
	min-width:16px;
	min-height: 16px;
	background-color: rgba(233, 46, 60, 1);
	margin-right: 10px;
	color: #fff;
	line-height: 16px;
	font-weight: bold;
	font-size: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
a:hover .link-circle,
a:hover .link-list .link-circle{
	opacity: 0.8;
}

.link-circle::before,
.link-list .link-circle::before{
	background: url(../images/icon_right_w.svg) no-repeat;
	content: "";
	display: inline-block;
    width: 5px;
    height: 9px;
}
*/

.icon-menu-link-circle,
.icon-link-circle,
.link-circle,
.link-list .link-circle{
	/*display: inline-block;*/
    width: 16px;
    min-width: 16px;
    height: 16px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 -2px 10px;
}
.icon-menu-link-circle {
	width: 16px;
    height: 16px;
	background-color: #e92e3c;
}
.link-circle,
.link-list .link-circle{
	border: 1px solid #ffffff;
	background-color: #e92e3c;
}
.icon-link-circle{
	border: 1px solid #e92e3c;
	background-color: #ffffff;
}
.icon-menu-link-circle::before,
.icon-link-circle::before,
.link-circle::before,
.link-list .link-circle::before {
	display: inline-block;
    width: 5px;
    height: 9px;
	content:"";
	mask-image: url(../images/icon_right_w.svg);
	mask-repeat: no-repeat;
	mask-position: center;
	position: absolute;
}
.icon-link-circle::before{
	background-color: #e92e3c;
}
.icon-menu-link-circle::before,
.link-circle::before,
.link-list .link-circle::before{
	background-color: #ffffff;
}
.link-circle.link-circle-red::before{
	margin-left: 2px;
}
.link-circle.link-circle-red:hover {
	border: 1px solid #e92e3c;
	background-color: #ffffff;
}
.link-circle.link-circle-red:hover:before {
		background-color: #e92e3c;
}
.top-external-link-container a:hover .icon-link-circle{
	border: 1px solid #ffffff;
	background-color: #e92e3c;
}
.top-external-link-container a:hover .icon-link-circle::before{
	background-color: #ffffff;
}
a.top-information-link:hover .link-circle{
	border: 1px solid #ffffff;
	background-color: #ffffff;
}
a.top-information-link:hover .link-circle::before{
	background-color: #e92e3c;
}
#contact-container{
	background-color: #ffffff;
	padding: 30px;
	display: flex;
	align-items: center;
}
#contact-container .contact-img{
	margin: 0 60px 0 30px; 
}
#contact-container .contact-img > img{
	width: 60px;
	height: 60px;
}
#contact-container .contact-text{
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 2;
}
#contact-container .contact-title{
	font-weight: bold;
}
#contact-container .contact-company{
	font-size: 1rem;
}
#manual-container{
	background-color: #ffffff;
	padding: 30px;
}
#manual-container .title{
	font-weight: bold;
}
#manual-container ul{
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
}
#manual-container li{
}
.account_position-grid{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 10px;
}
.category-grid{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 10px;
}
.confirm-category_name{
	margin-bottom: 4px;
}
.confirm-category_name:last-child{
	margin-bottom: 0px;
}
.confirm_information_download_file_container{
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 10px;
	row-gap: 4px;
}
.confirm_notice_file_container{
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 10px;
	row-gap: 4px;
}
.form-table-information .table-title{
	height: 60px;
}
.form-table-information #send_open_mail{
	padding: 8px 8px;
}
.form-table-company .table-title,
.form-table-dealer .table-title{
	height: 55px;
}
.form-table-user .table-title{
	height: 64px;
}
input[name="file_name_ja[]"]{
	width: 300px;
}
.text-calendar{
	position: relative;
	display: inline-block;
}
.text-calendar > input[type="text"]{
	padding-right: 16px;
	width: 120px;
}
#ui-datepicker-div{
	z-index: 101 !important;
}
.icon-calendar:before{
	display: inline-block;
	content: url(../images/icon_calendar.svg);
	width: 14px;
	height: 14px;
	position: absolute;
	right: 4px;
	top: 6px;
	cursor: pointer;
}
.logo-pc{
	display: inline-block;
}
.logo-sp{
	display: none;
}

/**
 * トップページバナー
 */
img.top-banner, img.top-banner-sp {
	width: 100%;
}
img.top-banner {
	display: block;
}
img.top-banner-sp {
	display: none;
}

/**
 * トップページ コンテンツ
 */
.top-contents-container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 20px;
}
.top-contents-container .contents_area_left{
	float: left;
	width: 51%;
}
.top-contents-container .contents_area_left img{
	width: 100%;
	border-radius: 10px 0 0 10px;
}
.top-contents-container .contents_area_right{
	position: relative;
	float: right;
	width: 49%;
}
.top-contents-container .contents_area_right .text{
	position: absolute;
	width: 80%;
	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.top-contents-container .contents_area_right .text .title{
	color: #e92e3c;
	font-size: 1.2rem;
	font-weight: bold;
}
.top-contents-container .contents_area_right .text .description{
	margin-top: 5px;
	min-height: 36px;
}
.top-contents-container a{
	position: relative;
	background: #FFFFFF;
	padding: 0;
	text-decoration: none;
	border-radius: 10px;
	/*display:grid;*/
	grid-template-columns: 1fr 30px;
	align-items: center;
}

.top-contents-container a:hover{
	/*background: #e92e3c;*/
	/*color: #ffffff;*/
}
.top-contents-container a .circle{
	position: absolute;
	right: 14px;
	bottom: 5%;
}

.external-link li{
	margin-bottom: 20px;
}
.external-link a{
	text-decoration: none;
	border-bottom: 1px solid #000000;
}
.external-link a:hover{
	text-decoration: none;
	border-bottom: 1px solid #888888;
}
.icon-external-link {
	mask-image: url(../images/icon_link.svg);
	background-color: #e92e3c;
	width: 12px;
}
.icon-external-link,
.icon-external-link2,
.icon-external-tel,
.icon-external-mail {
	display: inline-block;
	mask-repeat: no-repeat;
	mask-position: center;
	height: 10px;
	margin-left:4px
/*	position: absolute;
	right: 4px;
	top: 6px;
	cursor: pointer;*/
}
.icon-external-link2 {
	mask-image: url(../images/link_icon.svg);
}
.icon-external-tel {
	mask-image: url(../images/call_icon.svg);
}
.icon-external-mail {
	mask-image: url(../images/mail_icon.svg);
}
.icon-external-link2,
.icon-external-tel,
.icon-external-mail {
	background-color: #000000;
	width: 18px;
	height: 18px;
	margin: 0 10px -5px 0;
}

.top-external-link-container a:hover .icon-external-link{
	background: #ffffff;
}
.pc-external-link-container{
	display: block;
}
.sp-external-link-container{
	display: none;
}
.top-external-link-container{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 20px;
}
.top-external-link-container a{
	background: #FFFFFF;
	padding: 30px 20px;
	text-decoration: none;
	border-radius: 10px;
	display:grid;
	grid-template-columns: 1fr 30px;
	align-items: center;
}
.top-external-link-container a:hover{
	background: #e92e3c;
	color: #ffffff;
}

.top-category-link-li{
	padding-bottom: 10px;
	padding-top: 10px;
}
a.top-category-link{
	text-decoration: none;
}
a.top-information-link{
	display: inline-flex;
	border: 1px solid rgba(233, 46, 60, 1);
    border-radius: 25px;
    padding: 10px 10px;
    background-color: #fff;
	text-decoration: none;
	width:100%;
	text-align: center;
	align-items: center;
	justify-content: center;
}
a.top-information-link:hover{
	background-color: #e92e3c;
	color: #ffffff;
}
.top-information-link .link-circle{
	margin-left: 10px;
	margin-right:0px;
}
.top-external-link-container .top-link-text{
	font-size: 0.8em;
	margin-top: 4px;
}
.popup_contaienr_checkbox .use_system_category_byd, popup_contaienr_contact{
	padding-left: 20px;
}
.popup_contaienr_checkbox ul{
	display: grid;
	row-gap: 10px;
}
.popup_contaienr_checkbox label{
	display: inline-block;
	width: 100%;
	margin-right: 0;
}
.popup_contaienr_checkbox .search_result{
	padding: 10px;
}

#search-staff-list .search-staff-list-detail{
	width:80px;
	min-width:80px;
}

.history-status-req-new{
	color: #98b9e3;
}
.history-status-req-back{
	color: #e9b12e;
}
.history-status-req-edit{
	color: #3baa1b;
}
.history-status-req-del{
	color: #a6a3a3;
}
.history-status-appro-new{
	color: #3a76c5;
}
.history-status-appro-edit{
	color: #e92e3c;
}
.history-status-appro-del{
	color: #141414;
}
.form-staff-btn-box{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.icon-folder{
    display: inline-block;
    width: 16px;
    height: 14px;
}
.icon-folder:before{
	display: inline-block;
	content: url(../images/icon_folder.svg);
	width: 100%;
	height: 100%;
}

a.notice-box{
	text-decoration: none;
	border-bottom: 1px solid #e0e0e0;
}
.notice-box{
	display: flex;
	align-items: center;
	padding: 20px;
}
.notice-box .date{
	font-size: 1.2em;
	color: #808080;
	margin-right: 30px;
}
.notice-box .title{
	font-weight: normal;
	font-size: 1.2em;
	/*white-space: nowrap;*/
	width: 100%;
	color: #000;
}
a.notice-box:hover .title{
	color: #808080;
}
.notice-box .link-circle.link-circle-red{
	margin-left: 0;
}

.test-site-text {
	color: #d70c19;
	font-size: 0.5em;
}
.flat-search-container{
	display: flex;
	align-items: center;
	column-gap: 10px;
	row-gap: 10px;
	padding: 10px 0px;
	background-color: #fafafa;
	flex-wrap: wrap;
}
.flat-search-box{
	display: flex;
	align-items: center;
	column-gap: 10px;
	flex-wrap: wrap;
	
}
.inline-search-area{
	position: relative;
}
.inline-search-area > *,
.inline-search-area > .select-box > input{
	width: 100%;
	user-select: none;
	-webkit-user-select: none;
}
.inline-search-list-box{
    position: absolute;
    background: #ffffff;
    border: 1px solid #b0b0b0;
	z-index: 1;
}
.inline-search-list{
	height: 200px;
	overflow-y: auto;
}
.inline-search-list > li{
	padding: 5px 10px;
	cursor: pointer;
}
.inline-search-list > li:hover{
	background-color: #f0f0f0;
}
.inline-search-keyword-box{
	width: 100%;
	padding: 4px;
}
.inline-search-keyword{
	width: 100%;
}
.inline-search-title{
	
}
.inline-search-keyword-box{
	position: relative;
    display: inline-block;
    align-items: center;
}
.inline-search-keyword-box::after{
	content: url(../images/search_icon.svg);
    display: inline-block;
    position: absolute;
    right: 7px;
    user-select: none;
    /*top: 9px;*/
    pointer-events: none;
    top: 6px;
	transform: scale(80%);
}
.inline-search-keyword-box > input{
	padding-right: 25px;
}