/* Styles definition here */

#fbuilder .pbreak.pb0 {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

/* Appointment　非表示 */
#field_1-0 > label {
	display: none;
}

/* 診療科目　非表示 */
.ahb_m3 #fbuilder .fieldCalendarService {
	display: none;
}

#fbuilder .ui-datepicker .ui-datepicker-prev, #fbuilder .ui-datepicker .ui-datepicker-next {
	width: 10px;
	height: 10px;
	background-image: none;
}

#fbuilder .ui-datepicker-title {
    line-height: normal;
    margin-top: 12px;
}

.ahb_m3 #fbuilder .ui-datepicker th, .ahb_m3 #fbuilder .ui-datepicker td {
    font-size: 1.4rem;
}

.ahb_m3 #fbuilder td:not(.ui-datepicker-unselectable) a.ui-state-default {
	background: rgba(169, 157, 133, 0.3);
	transition: all 0.3s;
}

.ahb_m3 #fbuilder td:not(.ui-datepicker-unselectable) a.ui-state-default:hover {
	background: #A99D85;
}

.ahb_m3 #fbuilder td:not(.ui-datepicker-unselectable) a.ui-state-default.ui-state-active {
	background: #A99D85;
}

.ahb_m3 #fbuilder td a, .ahb_m3 #fbuilder td span {
	border-radius: 4px;
}

.ahb_m3 #fbuilder .slots div a {
	font-size: 1.2rem;
	border-radius: 4px;
    background: #ffffff;
    color: #A99D85;
    border: 1px solid #A99D85;
    font-weight: 500;
    padding: 8px 16px;
}

.ahb_m3 #fbuilder .slots div.htmlUsed a  {
	color: #ccc;
}

.ahb_m3 #fbuilder .slots div.htmlUsed a:hover  {
	background: transparent !important;
}

.ahb_m3 #fbuilder .slots > span  {
	font-size: 1.4rem;
	font-weight: 500;
}

.ahb_m3 #fbuilder .slots div.currentSelection a  {
	background: #A99D85 !important;
}

.ahb_m3 #fbuilder .slots div a  {
	transition: all 0.3s;
}

.ahb_m3 #fbuilder .slots div a:hover  {
	background: #A99D85 !important;
}

.ahb_m3 #fbuilder .usedSlots .ahb_list {
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.ahb_m3 #fbuilder a.cancel {
    padding: 0;
}

.ahb_m3 #fbuilder a.cancel:before {
    content: "×";
    background: #A99D85;
    border-radius: 4px;
    margin-top: 1px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fields > label {
	font-size: 1.4rem;
	font-weight: 500;
}

.fields > label .r {
	color: #A99D85;
}

.fields > .dfield {
	margin-top: 8px;
	font-size: 1.6rem;
}

#fbuilder .medium {
	width: 100% !important;
	padding: 16px 14px;
	border: 1px solid #EAEAEA;
	background-color: #F5F5F5;
	border-radius: 8px;
}

input::placeholder {
	color: #C3C3C3;
}

 #fbuilder .pbSubmit {
	 position: relative;
    background: #A99D85;
    color: #ffffff;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 240px;
    height: 56px;
    border-radius: 6px;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 auto;
	transition: all 0.3s;
}

#fbuilder .pbSubmit .arrow {
	position: absolute;
	width: 10px;
	height: 10px;
	display: flex;
    align-items: center;
    justify-content: center;
	overflow: hidden;
    right: 24px;
    filter: invert(1);
    filter: brightness(0) invert(1);
}

#fbuilder .pbSubmit:hover {
	opacity: 0.8;
}

#fbuilder .pbSubmit:hover .arrow img {
	animation: 0.3s ease-in slideIn;
}

@keyframes slideIn {
	0% {
		transform: translateX(0);
	}
	33% {
		opacity: 0;
		transform: translateX(100%);
	}
	66% {
		opacity: 0;
		transform: translateX(-100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}