.content_frame {
    padding: 0px;
    max-width: 1280px;
    margin: 0 auto !important;
}
/* 検索条件エリア配置 */
.wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 45px;
    grid-gap: 0px;
}
.box1 {
    grid-column: 1 / 2;
    grid-row: 1;
    text-align: left;
}
.box2 {
    grid-column: 2 / 3;
    grid-row: 1;
    text-align: right;
}

#tableIchiran thead tr th {
    font-size: 18px;
    font-weight: 700;
}

/* 新規追加ボタン */
.addNewButton {
    width: 180px;
    height: 36px;
    font-size: 14px;
    position: relative;
    display: inline-block;
    padding: 7px 0px 5px 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0px;
    color: #fff;
    background-color: #61a3ba;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 0px;
}
.addNewButton:hover {
    color: #fff;
}

/* テキストボックスデザイン */
.text-input {
    display: flex;
    position: relative;
}
input[type="text"] {
    display: inline-block;
    width: 315px;
    height: 36px;
    box-sizing: border-box;
    outline: none;
    border: 2px solid #2021243b;
    padding: 10px 10px 10px 10px;
    transition: all 0.1s ease-out;
    border-radius: 8px 0px 0px 8px;
    font-size: 16px;
}
input[type="text"] + button {
    position: absolute;
    top: 0px;
    left: 312px;
    bottom: 0;
    height: 36px;
    width: 76px;
    color: white;
    border-radius: 5px 5px 5px 5px;
    padding: 0 10px;
    background: #61a3ba;
    font-size: 14px;
}

/* テーブルレイアウト */
table.listTable {
    border-collapse: collapse;
}
table.listTable th {
    border-width: 1px 0px;
    border-color: #2021243b;
    border-style: solid;
    border-bottom: 0px;
    padding: 13px 5px 13px 5px;
    text-align: left;
}

table.listTable td {
    border-width: 1px 0px;
    border-color: #2021243b;
    border-style: solid;
    padding: 13px 5px 13px 5px;
    text-align: left;
    word-break: break-all;
}
.th_name {
    width: 17%;
}
.th_nameKana {
    width: 25%;
}
.th_email {
    width: 25%;
}
.th_tel {
    width: 17%;
}
.th_admin {
    width: 8%;
}
.th_riyo {
    width: 8%;
}

/* テーブルリンク */
.shimeiLink {
    color: #61a3ba;
}
.shimeiLink:hover {
    background-color: initial;
    color: #d2de32;
}

@media screen and (max-width: 700px) {
    .text-input {
        display: none;
    }
    table.listTable th {
        display: none;
    }
    table.listTable td {
        border-width: 0px 1px 1px 1px;
        display: block;
        padding: 5px 5px 5px 5px;
    }
    table.listTable td.header_dataLabel {
        text-align: center;
        display: inline-block;
        width: 100%;
    }
    table.listTable td.dataLabel {
        border-width: 0px;
        font-size: 14px;
        word-break: break-all;
        width: 100%;
    }
    table.listTable td.dataLabel:before {
        content: attr(data-label);
        font-weight: bold;
        text-align: right;
        display: inline-block;
        width: 35%;
        margin-right: 10px;
        vertical-align:top;
    }

    .storeContent{
        display: inline-block;
        width: 60%;
    }
}
@media screen and (max-width: 599px) {
    .addNewButton {
        width: 73px;
        padding: 7px 0px 0px 0px;
    }
}

.ul-padding-0{
    padding-left:0px;
}
