@charset "UTF-8";
/* CSS Document */

.modal_wrap .layout_input {
    display: none;
}
.modal_overlay {
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}
    
.modal_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}

.modal_overlay.single {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
    z-index: 1000;
}
    
.modal_content {
    position: relative;
    align-self: center;
    width: 90%;
    max-width: 500px;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
    text-align: justify;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    flex-flow: column;
}
    
.modal_wrap .close_btn {
    position: absolute;
    top: 13px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
}
.modal_wrap .close_text {
    position: absolute;
    top: 13px;
    right: 20px;
    cursor: pointer;
    color: inherit;
    font-size: 14px;
}
.modal_wrap .close_text:hover {
    opacity: .7;
}
    
.modal_wrap input:checked ~ .modal_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
    z-index: 1000;
}
    
.modal_wrap input:checked ~ .modal_overlay .modal_content{
    /*transform: translateY(50px);*/
}
    
.modal_wrap .open_btn:hover{
    opacity: 0.6;
    /*transition: .3s ease;*/
}

.modal_wrap .heading01 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #EBEBEB;
}

.modal_wrap .heading01::before,
.modal_wrap .heading01::after {
	content: '';
	width: 50px;
	height: 3px;
	/*background-color: #FF6010;*/
}

.modal_wrap .heading01::before {
	margin-right: 20px;
}
.modal_content .heading01::after {
	margin-left: 20px;
}

.modal_wrap .field {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin: 10px 0;
}

.modal_wrap .field_label {
    margin-right: 20px;
    min-width: 180px;
    font-size: 16px;
}

.modal_wrap .field_content {
    flex-grow: 1;
}

.modal_wrap .field_content .name {
    font-size: 16px;
    font-weight: bold;
}

.modal_wrap .input-text {
    box-sizing: border-box;
    padding: 15px 10px;
    width: 100%;
    height: 40px;
    border-color: #707070;
    border-radius: 4px;
    border: 1px solid #999;
}
.modal_content_inner {
    overflow: auto;
    max-height: 400px;
    padding: 5px;
}
.modal_content .modal_list {
    font-weight: normal;
    overflow-y: auto;
    max-height: 300px;
    margin-bottom: 10px;
/*    padding-top: 20px;*/
}
.modal_content .modal_list.border {
    border-bottom: 1px solid #EBEBEB;
}

/* add 20240911 */
.modal_wrap.open {
    display: block !important;
} 

