@charset "utf-8";
/***************************************************
information
  filename : app_user.css;
***************************************************/
.borderBox{
	padding:1em 1em;
	margin: 2em auto;
}


.borderBox p:last-child{
	padding-bottom:0;
}
.brdT{
	border-top:4px solid;
}
.brdL{
	border-left:4px solid;
}
.brdTBW{
	border-top: 5px double;
	border-bottom: 5px double;
}
.brdRLW{
	border-left: 5px double;
	border-right: 5px double;
}
.brd{
	border: 2px solid;
}
.brdW{
	border: 5px double;
}
.boxShadow{
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
/* 線色 */
.brdClr1{
	border-color: var(--app-glnv-cr);/*グローバルナビの色*/
}
.brdClr2{
	border-color: var(--app-main-txt-ub);/*差し色*/
}
.brdClr3{
	border-color: var(--app-main-cr-c);/*フォーカス色*/
}
.brdClr4{
	border-color: #00a381;
}
.brdClr5{
	border-color: #d9333f;
}
.brdClr6{
	border-color: #274a78;
}
/* 背景色 */
.bgClr1{
	background-color: var(--app-main-cr-ar);
}
.bgClr2{
	background-color: rgba(120,120,120,0.3);
}
.bgClr3{
	background-color: #FDE8D0;
}
.bgClr4{
	background-color: #FDEFF2;
}
.r4{
	border-radius: 4px;
}
.r10{
	border-radius: 10px;
}
.r16{
	border-radius: 16px;
}
.r20{
	border-radius: 20px;
}
/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 100％;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    color: #FFFFFF;
    font-weight: bold;
    background: #00BFFF;
    cursor :pointer;
    transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#DFF1F6;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #DFF1F6;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*一覧のプロフィール削除*/
.ListBox .column .person .prof {
    display: none;
}

/* PWAでタグ検索ができない不備対応2023/12/26oda */
#spheaderMenu .tagSearch ul.tagLink{
	overflow: auto;
	height: auto;
}
#spheaderMenu .tagSearch ul.tagLink::before {
	display: none;
}