
			div.whatsnew dl {
	padding: 10px 
}

.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none;
}

.wpcf7 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.wpcf7 th {
    text-align: left;
    padding: 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}

.wpcf7 td {
    padding: 10px;
    border: 1px solid #ddd;
}

.wpcf7 input, 
.wpcf7 textarea, 
.wpcf7 select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.wpcf7 [type="submit"] {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.wpcf7 [type="submit"]:hover {
    background: #005a87;
}






/* 2列表示に変更20250206 */
.amelia-app-booking .amelia-service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.amelia-app-booking .amelia-service {
    width: 48%; /* 2列にする */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.amelia-app-booking .amelia-service:hover {
    transform: scale(1.05);
}

/* 「Free」の非表示 */
.amelia-app-booking .amelia-service-price {
    display: none;
}

/* 「サービス」の文言を非表示 */
.amelia-app-booking .amelia-service-name::before {
    content: "";
}

/* 「従業員」を「担当者」に変更 */
.amelia-app-booking .amelia-employee-label::before {
    content: "担当者"; /* ラベル変更 */
    font-weight: bold;
}

.amelia-app-booking .amelia-employee-label {
    visibility: hidden;
    position: relative;
}

.amelia-app-booking .amelia-employee-label::before {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}

/* 時間単位（30min → 30分） */
.amelia-app-booking .amelia-service-duration::after {
    content: "分";
}

.amelia-app-booking .amelia-service-duration {
    visibility: hidden;
    position: relative;
}

.amelia-app-booking .amelia-service-duration::before {
    content: attr(data-duration);
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}

/* 1h → 1時間に変更 */
.amelia-app-booking .amelia-service-duration::after {
    content: "時間";
}

.amelia-app-booking .amelia-service-duration {
    visibility: hidden;
    position: relative;
}

.amelia-app-booking .amelia-service-duration::before {
    content: attr(data-duration);
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}
		