﻿@charset "utf-8";

/* システム設定：共通
---------------------------------------------------------------------------- */
/*検索*/
.setting-filter{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 0 0;
}
.setting-filter-item{
    margin: 0 15px 10px 0;
}
.setting-filter__title{
    line-height: 1;
    font-size: 0.8em;
    margin: 0 0 5px 0;
}
.setting-filter input{
    padding: 10px;
}
.search-btn{
    padding: 0 0 0 0;
}
@media screen and (max-width: 900px) {

}

/*テーブル*/
.table-sort{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 0 20px 0;
}
.table-sort div{
    margin: 0 0 10px 20px;
}

/*テーブル*/
.setting-table{
    width: 100% !important;
    min-width: 1200px !important;/*スクロール*/
    white-space: nowrap;/*スクロール*/
    border-left: 1px solid #CCCCCC;
	font-size: 0.9em;
}
/*横幅800px*/
.plan-table,
.qa-table{
    min-width: 800px !important;/*スクロール*/
}
/*メール本文管理*/
.mail-table{
    min-width: 500px !important;/*スクロール*/
}
/*
.setting-table tr:nth-child(even) {
    background: #f0f0f6;
}
*/
.setting-table tr:hover{
    cursor: pointer;
    background: #dadaf7;
}
.setting-table th{
	padding: 2px;
    background: #EEEEEE;
    text-align: center;
	border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
/*
.setting-table tr:nth-child(even) {
    background: #f0f0f6;
}
*/
.setting-table tr:hover{
    cursor: pointer;
    background: #dadaf7;
}
.setting-table td{
	padding: 2px;
    text-align: center;
	border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.setting-table a.edit,
.setting-table a.copy,
.setting-table a.delete{
    display: block;
    margin: -15px 0 0 0;
}
.setting-table a img:hover{
    opacity: 0.8;
}
.setting-table a.edit img,
.setting-table a.copy img,
.setting-table a.delete img{
    width: 20px;
    height: 20px;
}
.setting-table a img:hover{
    opacity: 0.8;
}

/*フォームレイアウト*/
.title-form-wrap{
    display: flex;
    justify-content: left;
}
.title-form-wrap div{
    margin: 0 20px 0 0;
}
.title-form-item__title{
    font-size: 0.8em;
    margin: 0 0 5px 0;
}

.error{
    color: #e83820;
    font-weight: bold;
    font-size: 0.9em;
}



/* トップページ
---------------------------------------------------------------------------- */
.setting-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 0 0 20px -3%;
}
.setting-list li{
    width: 30% !important;
    margin: 0 0 20px 3%;
}
.setting-list .btn-action{}
.setting-list .btn-action a{
    padding: 5px 10px 5px 10px;
    text-align: center;
}


/* アカウント管理
---------------------------------------------------------------------------- */
/*絞り込み検索*/
/*コンテンツ：タイトル＋枠*/
.box-title-wrap{
	background: #FFFFFF;
	border-radius: 5px;
	margin: 0 0 20px 0;
}
.box-title-wrap--title{
	background: #4c4c78;
	color: #FFFFFF;
	text-align: center;
	padding: 5px 20px 5px 20px;
	border-radius: 5px 5px 0 0;
	position: relative;
	transition: all 0.3s;
	cursor: pointer;
}
/*開いているときのスタイル*/
.box-title-wrap--title.is-active::before {
    transform: translateY(-50%) rotate(90deg);
}
/*横線*/
.box-title-wrap--title::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
/*縦線*/
.box-title-wrap--title::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 15px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
}
.box-title-wrap--inner{
	padding: 30px;
}
.line-box-wrap{
	display: flex;
	justify-content: left;
	/*align-items: center;*/
	border-bottom: 1px solid #eeeeee;
	padding: 10px 0 10px 0;
}
.line-box-wrap--title{
	width: 10%;
	margin: 0 3% 0 0;
	font-weight: bold;
    white-space: nowrap !important;
}
.line-box-wrap--content{
	width: 87%;
}
@media screen and (max-width: 1360px) {
    .line-box-wrap{
        flex-direction: column;
    }
    .line-box-wrap--title{
        width: 100%;
        margin: 0 0 5px 0;
    }
    .line-box-wrap--content{
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .radiobtn-wrap label{
        width: 100%;
    }
}

