#place_popup {
    width: min(400px, 95%);
    height: 90vh;
    max-height: 810px;
}

.my_place_action_box {
    padding: 1em 0;
    font-size: .875em;
    line-height: 1em;
    padding-bottom: 2em;
}

.my_place_action_box a {
    display: inline-block;
    color: var(--text-01);
    text-decoration: underline;
}

.my_place_items_box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1px;
    background-color: var(--border-01);
    border-top: 1px solid var(--border-01);
    border-bottom: 1px solid var(--border-01);
}
.my_place_items_box > .my_place_item {
    background-color: var(--bg-01);
    padding: .5em 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.my_place_items_box > .my_place_item > .left {
    display: block;
    width: 100%;
    height: auto;
    line-height: 1.5em;
}
.my_place_items_box > .my_place_item p.name {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-01);
}
.my_place_items_box > .my_place_item.closed p.name {
    text-decoration: line-through;
    font-weight: 300;
}
.my_place_items_box > .my_place_item p.address, .my_place_items_box > .my_place_item p.tel {
    font-size: .875em;
    color: var(--text-03);
}
.my_place_items_box > .my_place_item > .right {
    display: flex;
    align-items: center;
    gap: .1em;
    flex-wrap: nowrap;
}
.my_place_items_box > .my_place_item > .right > * {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
}
.my_place_items_box > .my_place_item > .right img {
    display: inline-block;
    width: 100%;
    height: auto;
}
.my_place_items_box > .my_place_item > .right input[type="checkbox"] {
    display: inline-block;
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.my_place_items_box > .my_place_item > .right label.btn_star {
    cursor: pointer;
}
