@charset "utf-8";
/*-------------------
製品ページ　雇用契約機能用スライダー
-------------------*/
.ec_case_slide_content {
    width: 80%;
    margin: 0 auto;
}
.ec_case_slide_item {
    list-style: none;
    padding: 40px 30px 35px;
    margin: 0;
    border: 1px solid #934B81;
    border-radius: 4px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    background-color: #ffffff;
}
.ec_case_slide_item_left {
	flex: 1;
}
.ec_case_slide_item_task {
    display: flex;
    flex-direction: column;
}
.ec_case_slide_item_task_title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	width: 100%;
	height: 50px;
	background: #d9d9d9;
}
.ec_case_slide_item_task ul {
	width: 100%;
	list-style-type: disc;
	padding: 8px 0;
}
.ec_case_slide_item_task ul li{
	list-style-type: circle;
	margin-left: 20px;
	line-height: 1.8 !important;
}
.ec_case_slide_item_arrow_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.ec_case_slide_item_arrow {
	display: inline-block;
	vertical-align: middle;
	color: #934B81;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 0.2em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);
	margin: 15px 0;
}
.ec_case_slide_item_result {
    display: flex;
    flex-direction: column;
}
.ec_case_slide_item_result_title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	width: 100%;
	height: 50px;
	background: #934B81;
	color: #ffffff;
}
.ec_case_slide_item_result_p {
	flex: 1;
	font-size: 19px;
	font-weight: bold;
	padding: 18px 15px;
	background: #f0e5ed;
	color: #934B81;
}
.ec_case_slide_item_right {
	border-top: 1px dashed #934B81;
	margin-top: 25px;
	padding-top: 25px;
}
.ec_case_slide_item img {
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}
.ec_case_slide_item_right_title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
}
.ec_case_slide_item_right_p {
    font-size: 14px;
    padding-top: 3px;
}
.ec_case_slide_list {
    display: none;
    opacity: 0;
    transition: opacity .3s linear;
}
.ec_case_slide_list.slick-initialized {
    opacity: 1;
    display: block;
}
@media screen and (min-width:48em) {
    .ec_case_slide_item,
    .ec_case_slide_item_task,
    .ec_case_slide_item_result {
        flex-direction: row;
    }
    .ec_case_slide_item_left {
        padding: 0 20px;
    }
    .ec_case_slide_item_task_title {
        width: 20%;
        height: auto;
    }
    .ec_case_slide_item_task ul {
        width: 80%;
    }
    .ec_case_slide_item_task ul li {
        margin-left: 35px;
    }
    .ec_case_slide_item_arrow_wrap {
        width: 20%;
    }
    .ec_case_slide_item_result_title {
        width: 20%;
        height: auto;
    }
    .ec_case_slide_item_right {
        width: 20%;
        border-left: 1px dashed #934B81;
        border-top: none;
        margin-top: 0;
        padding-top: 0;
        padding-left: 25px;
    }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
    .ec_case_slide_item_result_title {
        font-size: 16px;
    }
}
.slick-slide{
    height: auto !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.slick-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    margin: auto;
    position: absolute;
    top: 0;
}
.slick-arrow::before {
    display: none;
}

.slick-prev {
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(-45deg);
    left: -5%;
}
.slick-next {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    right: -5%;
}
.slick-track {
	display: flex;
}
@media screen and (min-width:48em) {
    .slick-arrow {
        height: 18px;
        width: 18px;
    }
}
@media screen and (min-width:64em) { 
    .slick-arrow {
        height: 20px;
        width: 20px;
    }
    .slick-prev {
        left: -30px;
        transform: rotate(-45deg) translateX(50%);
    }
    .slick-next {
        right: -30px;
        transform: rotate(45deg) translateX(-50%);
    }
}
@media screen and (min-width:75em) {
    .slick-prev {
        left: -45px;
    }
    .slick-next {
        right: -45px;
    }
}