@charset "UTF-8";

/*=======================================================
共通
=======================================================*/
/*=======================================================
therapist
=======================================================*/
.bl-therapist {
	padding: 40px 0 56px;
}
.el-intro-txt {
	text-align: center;
	margin-bottom: 40px;
}
.bl-therapist .bl-cardUnit {
	flex-flow: wrap;
	justify-content: start;
	gap: 32px;
}
.bl-therapist .bl-card {
	width: 320px;
	background-color: #F6F3EF;
	padding: 24px;
}
.bl-therapist .bl-card-imgWrapper {
	width: 100%;
	margin-bottom: 16px;
}
.bl-therapist .el-card-name,
.bl-therapist .el-card-years {
	color: #A7660F;
	text-align: center;
}
.bl-therapist .el-card-name {
	margin-bottom: 24px;
	position: relative;
}
.bl-therapist .el-card-name::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	border: 1px solid #A7660F;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
	.bl-therapist {
	    padding: 56px 0;
    }
    .el-intro-txt {
	    text-align: start;
	    margin-bottom: 56px;
    }
    .bl-therapist .bl-card {
	    width: 320px;
    }
    .bl-therapist .bl-card-imgWrapper {
	    margin-bottom: 24px;
    }
}
/*=======================================================
ポップアップ
=======================================================*/
.popup-check {
    display: none;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
	left: 0;
    width: 100vw;
    height: 100vh;
    background: #31180E;
    z-index: 1000;
    cursor: pointer;
}
/* チェック状態のときに表示 */
.popup-check:checked + .popup-open + .popup-overlay {
    display: block;
}
/* モーダル本体 */
.popup-body {
    background: #F6F3EF;
    width: 640px;
	height: auto;
	max-height: 90svh;
	position: absolute;
    padding: 32px 24px;
	overflow-y: scroll;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: auto;
}
/* 開くボタン */
.popup-open {
    cursor: pointer;
}
/* 閉じるボタン */
.popup-close {
    position: absolute;
    top: calc(50% - 45vh - 25px);
    left: calc(50% + 320px - -10px);
    width: 40px;
    height: 40px;
    z-index: 1010;
    cursor: pointer;
}
.bl-therapist-imgWrapper {
	width: 100%;
	margin-bottom: 24px;
}
.el-therapist-name,
.el-therapist-years {
	color: #A7660F;
	font-size: 34px;
	text-align: center;
}
.el-therapist-name {
	margin-bottom: 32px;
	position: relative;
}
.el-therapist-name::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	border: 1px solid #A7660F;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}
.bl-therapist-message {
	margin-top: 32px;
	background-color: #FFFFFF;
	width: 100%;
	padding: 32px;
}
@media screen and (max-width: 750px) {
	.popup-body {
	    width: 690px;
		padding: 40px 32px;
	}
    .popup-close {
        top: calc(50% - 45vh - 65px);
        left: calc(50% + 320px - 16px);
        width: 60px;
        height: 60px;
    }
	.bl-therapist-imgWrapper {
	    margin-bottom: 32px;
    }
    .el-therapist-name,
    .el-therapist-years {
	    font-size: 40px;
    }
    .bl-therapist-message {
	    margin-top: 40px;
	    padding: 40px;
    }
}