* {
    box-sizing: border-box;	
    font-family: sans-serif;	
}
.popup, .yoyaku-info-popup, .honyoyaku-popup-container, .popup-container {
    position: fixed;
    top: 100px;
    width: 60%;	
    height: auto;
    left: 20%;	
    background-color: rgb(255, 255, 204);	
    border: 2px solid rgb(204, 204, 119);	
    border-top-left-radius: 0.5rem;	
    border-top-right-radius: 0.5rem;	
    border-bottom-right-radius: 0.5rem;	
    border-bottom-left-radius: 0.5rem;	
    padding: 1rem;	
    background-color: white;
    z-index: 5000;
}
.pop-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.title-moji {
    font-size: 1.4rem;
    text-shadow: 2px 2px 0px #F8F,-2px 2px 0px #F8F,2px -2px 0px #F8F,-2px -2px 0px #F8F,2px 2px 0px #F8F;
    color: white;
}
.yoyakuform-delete, .pop-delete {
    width: 1.4rem;
    height: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    text-align: center;
    border: 1px #666 solid;
    border-radius: 0.2rem;
    cursor: pointer;
}
.pop-table {
    width: 99%;	
    table-layout: fixed;	
    margin: 0.5%;
    background-color: #fff;
    border: none;
}
.pop-table th {
    width: 6rem;
    border: none;
}
.pop-table td:first-child {
    width: 30%;
    height: 2rem;
    padding: 0.2rem 0.5rem;
}
.pop-table td {
    padding: 0.2rem 0.5rem;
    border: none;
}
.type1 {
    margin-left: 1%;	
    height: 2rem;	
    line-height: 2rem;	
    font-size: 1rem;	
    padding: 0.5rem;
    border: 1px #666 solid;	
}
.email {
    width: 70%;
    min-width: 200px;
}
.yoyaku-menu {
    width: 80%;
    font-size: 1rem;
}
.w2 {
    width: 20%;	
}
.name-kensaku-container {
     border: 1px #666 solid;
     width: 80%;
     margin-left: 10%;
     height: 10rem;
     overflow: auto;
     padding: 0.5rem;
}
.name-result {
    margin: 0;
    padding: 0;
}
.name-result li {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.4rem;
    color: black;
    white-space: nowrap; /* 折り返しを防ぐ */
    overflow: hidden;
    text-overflow: ellipsis; /* 超過部分を省略記号 (...) にする */
}

.btn-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.btn, .yoyaku-btn, .yoyaku-touroku {
    width: 8rem;	
    height: 2rem;	
    background-color: rgb(255, 120, 255);	
    line-height: 2rem;	
    color: rgb(255, 255, 255);	
    text-align: center;	
    cursor: pointer;	
    margin: 0.2rem auto;	
    border-top-left-radius: 0.2rem;	
    border-top-right-radius: 0.2rem;	
    border-bottom-right-radius: 0.2rem;	
    border-bottom-left-radius: 0.2rem;	
}
.kensaku {
    height: 2rem;
    border: 1px #666 solid;
    cursor: pointer;
    line-height: 2rem;
    text-align: center;
    margin: 0.1rem 0.5rem;
    background-color: rgb(255, 120, 255);
    padding: 0 0.5rem;
    color: white;
}
@media screen and (max-width: 767px) {
    .popup, .yoyaku-info-popup, .honyoyaku-popup-container, .popup-container{
        width: 96%;	
        left: 2%;
        padding: 0.5rem;	
    }
    .type1 {
        width: 80%;
    }
    .w2 {
        width: 35%;
        height: 2rem;
    }
    .kensaku {
        margin: 0;
        height: auto;
        line-height: 1.2rem;
    }
}  
