@charset "utf-8";
/*-----------------------------------------------
    secForm
-----------------------------------------------*/
.secForm .secModelHouseTit .boxTit {
    position: relative;
    margin: 0 auto;
    padding: 50px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}
.secForm .secModelHouseTit .tit {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2
}
@media only screen and (max-width:767px){
    .secForm .secModelHouseTit .boxTit {
        width: auto;
        min-height: 0;
        padding: 20px 10px;
    }
    .secForm .secModelHouseTit .tit {
        font-size: 17px;
    }
}

/* boxDate */
.boxDate .box_input label{
    position: relative;
}
.boxDate label:after {
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"/><path d="M16 2v4"/><rect width="18" height="18" x="3" y="4" rx="2"/><path d="M3 10h18"/><path d="M8 14h.01"/><path d="M12 14h.01"/><path d="M16 14h.01"/><path d="M8 18h.01"/><path d="M12 18h.01"/><path d="M16 18h.01"/></svg>') no-repeat center center;
    background-size: 24px 24px;
}
.boxDate .box_input input{
    padding-left: 40px;
}


/* flatpickr */
.flatpickr-calendar{
    font-family: "YakuHanJP_Narrow","游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover{
    color: rgba(0, 0, 0, 0.9);
}
.flatpickr-day {
    background: 0 0;
    border: 1px solid transparent;
    border-radius: 150px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #393939;
    cursor: pointer;
    font-weight: 400;
    width: 14.2857143%;
    -ms-flex-preferred-size: 14.2857143%;
    flex-basis: 14.2857143%;
    max-width: 39px;
    height: 39px;
    line-height: 39px;
    margin: 0;
    display: inline-block;
    position: relative;
    justify-content: center;
    text-align: center;
}
.flatpickr-day.today {
    border-color: #959ea9;
}
.flatpickr-day:not(.flatpickr-disabled) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    line-height: 1.2;
}
.flatpickr-day:not(.flatpickr-disabled)::after {
    display: block;
    margin: 0 auto;
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #333;
    border-radius: 50%;
}
.flatpickr-day-tel:not(.flatpickr-disabled)::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23393939" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone-icon lucide-phone"><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"/></svg>') no-repeat center center;
    background-size: 16px 13px;
    border: none;
}


/*-----------------------------------------------
	popup
-----------------------------------------------*/
#popup{
    font-family: "YakuHanJP_Narrow","游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    display: none;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
}
#popup .popupContainer{
	display: table;
	width: 100%;
	height: 100vh;
}
#popup .popupContents{
	display: table-cell;
	vertical-align: middle;
}
#popup .popupMain{
    width: 440px;
	margin: 0 auto;
}
@media only screen and (max-width:767px){
	#popup .popupMain{
		width: 100%;
		padding: 2%;
	}
}
/* secPopup */
.secPopup{
	display: none;
	position: relative;
}
.secPopupItem {
	background: #FFF;
    max-height: calc(100vh - 5rem);
	overflow-y: auto;
	overflow-x: hidden;
    font-weight: 500;
    line-height: 1.75;
    color: #333;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}
.secPopupItem::-webkit-scrollbar {
    width: 15px;
}
.secPopupItem::-webkit-scrollbar-thumb {
    background-color: #c2c2c2;
	border-radius: 10px;
    border: 5px solid #fff
}
.secPopupItem::-webkit-scrollbar {
    background: #fff
}
.secPopup .btnClose{
	position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, -100%);
    padding: 5px 10px;
}
.secPopup .tit{
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}
.secPopup .titTel{
    font-weight: normal;
    text-decoration: none;
    color: #333;
}
@media only screen and (max-width:767px){
    .secPopupItem {
        font-size: 14px;
        padding: 10px;
    }
    .secPopup .btnClose{
        width: 30px;
        height: auto;
        transform: translateY(-100%);
        padding: 5px;
    }
    .secPopup .tit{
        font-size: 17px;
    }
    .secPopup .titTel{
    }
}