@charset "utf-8";

/*管理画面のヘッダー部分のリンク位置設定*/
.headerTopic{
    float: right;
    margin: 15px 10px 0 0;
}

.headerTopic li{
    padding: 0 10px;
    display: inline-block;
}

.headerTopic a{
    text-decoration: none;
    color: #fff;
}

/*検索窓全体の設定*/
.search{
    /*width: 90%;*/
    padding: 5px;
    margin: 15px auto 10px auto;
    text-align: center;
}

/*検索窓のテキスト部分の装飾*/
.search input[type="text"]{
    padding: 5px;
    font-size: 15px;
    margin: 5px;
}

/*検索窓の見出し装飾*/
.search_title{
    color: #858787;
    background-color: #fefefe;
    padding: 0 10px;
    display: inline-block;
    text-align: center;
}

/*検索窓の検索開始ボタンの装飾*/
.searchButton{
    width: 63px;
    border-radius: 10px;
    font-size: 22px;
    background-color: #7ca1c4;
    color: #ffffff;
    margin: 10px;
    cursor: pointer;
}
button.searchButton:hover{
    border-radius: 10px;
    background-color: #1e70bd;
}

/*テーブルの見出し部分全体の設定*/
.admin_table th{
    background-color: #20486d;
    border: 1px solid #dedede;
    font-weight: normal;
    color: #fefefe;
    padding: 17px 5px;
    font-size: 11px;
    box-sizing: border-box;
    height: 52px;
}

/*テーブルの見出し設定（No）*/
th.number{
    width: 50px;
}
/*テーブルの見出し設定（営業担当）*/
th.sales {
    width: 85px;
}
/*テーブルの見出し設定（契約者名）*/
th.agreement{
    width: auto;
}
/*テーブルの見出し設定（ドメイン）*/
th.domain{
    width: 190px;
}
/*テーブルの見出し設定（回答日時）*/
th.answerDate{
    width: 130px;
}
/*テーブルの見出し設定（詳細）*/
th.inDetail{
    width: 70px;
}
/*テーブルの見出し設定（ダウンロード）*/
th.download{
    width: 90px;
}

.admin_table tr:hover td {
    background-color: #e2f3f2;
}

/*.admin_table td:nth-child(3), .admin_table td:nth-child(4) {
    text-align: left;
}*/

/*テーブルの内容部分の設定*/
.admin_table td{
    background-color: #ffffff;
    border: 1px solid #ababab;
    text-align: center;
    padding: 5px;
    font-size: 11px;
    box-sizing: border-box;
    
}

/*詳細の確認とダウンロードボタンの装飾*/
button.details{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    font-size: 12px;
    background-color: #7ca1c4;
    color: #ffffff;
    margin: 0;
}
button.details:hover{
    border-radius: 5px;
    background-color: #1e70bd;
}

/*一覧へ遷移する際のボタンの装飾*/
.listButton {
    width: auto;
    padding: 5px 15px;
    border-radius: 10px;
    text-align: center;
    float: right;
    margin: 5px;
    background-color: #88deca;
    color: #ffffff;
    border: 1px solid #bababa;
    cursor: pointer;
    font-size: 14px;
    height: auto;
}
.listButton:hover{
    border-radius: 10px;
    background-color: #10b98a;
}

/*モーダル背景の装飾*/
.modalBackground{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    background: #484747;
    opacity: 0;
    transform: scale(0);
}

/*モーダルの動的な装飾*/
.modalMove{
    transform: scale(1);
    opacity: 1;
}

/*モーダル全体の装飾*/
.modalMain{
    position: absolute;
    margin: 0 auto;
    top: 5vh;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fefefe;
    opacity: 1;
    min-width:980px;
    width: 60vw;
    height: 90vh;
    border-radius: 10px;
}

.modal_adjust {
    height: 99%;
    overflow: hidden;
}

/*モーダルのボタンの配置*/
.modalButtonArea{
    text-align: center;
    margin-top: 8px;
}
.modalButtonArea form{
    display: inline-block;
}

/*モーダルの閉じるボタン装飾*/
.close_modal2{
    float: right;
    text-align: center;
    width: 30px;
    height: 30px;
    margin: 10px;
    vertical-align: middle;
    font-size: 20px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 30px;
    cursor: pointer;
}
.close_modal2:hover{
    background-color: #00BCD4;
}

/*モーダルのスクロール部分*/
.modalScroll {
    height: calc(100% - 200px);
    overflow-y: scroll;
}

/*モーダルの編集画面ボタン装飾*/
.editButton{
    background-color: #de8888;
}
.editButton:hover{
    background-color: #da3636;
    border-radius: 5px;
}

/*モーダルの全画面表示ボタン編集*/
.fullscreenButton{
    background-color: #deb088;
}
.fullscreenButton:hover{
    background-color: #ec9c37;
    border-radius: 5px;
}

/*モーダルの個別編集ボタン装飾*/
.each_editButton{
    width: 236px;
    height: 34px;
    margin: 0;
    border-radius: 30px;
    font-size: 17px;
    background-color: #88deca;
    color: #ffffff;
    float: right;
}
.each_editButton:hover{
    border-radius: 30px;
    background-color: #10b98a;
}

/* 複数案件登録用ポップアップ用の記述 */
.popup_content2 {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 1000px;
}
.details_area2 {
    padding: 20px 15px;
    height: 87%;
    width: 80%;
    margin: 15px auto;
    box-shadow: none;
    background-color: #eee;
}
.details_button {
    display: block;
    width: 280px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #A6CC7C;
    color: #ffffff;
    margin: 30px auto;
    text-align: center;
    line-height: 45px;
}

.details_button:hover {
    background-color: #6aae74;
}


