/* --------------------
	home
---------------------*/
.p-home {
	position: relative;
	width: 100%;
	margin-top: 105px;
	padding-bottom: 130px;
	background: #F7F0E9 url(/assets_cms/home/images/bg-stripe.png) repeat 0 0;
	background-size: 30px 30px;
}

.p-home::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 72px;
	background: url(/assets_cms/home/images/img-city.png) no-repeat center top;
	background-size: cover;
}

.p-home button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: "Noto Sans JP", "ヒラギノ角ゴシック", Hiragino Sans, "MS Pゴシック", sans-serif;
}

@media (min-width: 768px) {
	.p-home {
		min-width: 1250px;
		margin-top: 140px;
		padding-bottom: 220px;
	}

	.p-home::before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #039A75;
	}

	.p-home::after {
		width: 1050px;
		height: 102px;
		background: url(/assets_cms/home/images/img-city.png) no-repeat center top;
		background-size: cover;
	}
}

/* Narrow PC display mode */
@media (min-width: 768px) {
	body[data-viewmode='PC_NARROW'] .p-home {
		margin-top: 0;
	}
}

.f-home-section {
	width: 100%;
	max-width: 1250px;
	margin-inline: auto;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 768px) {
	.f-home-section {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* hide（js用） */
.p-home .f-home-section .is-hide {
	display: none;
	opacity: 0;
}

/* carousel */
.p-home-carousel {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding-bottom: 30px;
}

.p-home-carousel__slides {
	position: relative;
}

.p-home-carousel__slide {
	background-color: #fff;
}

.p-home-carousel__prev, .p-home-carousel__next {
	width: 40px;
	height: 40px;
}

.p-home-carousel__prev > a,
.p-home-carousel__next > a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid #999;
	border-radius: 100%;
	color: #4e4e4e;
	font-size: 13px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
}

.p-home-carousel__prev > a > span, .p-home-carousel__next > a > span {
	display: inline-block;
	text-indent: -9999px;
}

.p-home-carousel__prev {
	left: 5%;
}

.p-home-carousel__next {
	right: 5%;
}

.p-home-carousel__plays {
	position: relative;
	display: grid;
	place-content: center;
	width: 40px;
	height: 40px;
	margin-left: 15px;
	background-color: #fff;
	border: 1px solid #999;
	border-radius: 100%;
	cursor: pointer;
}

.p-home-carousel__plays::after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background: url(/assets_cms/home/images/icon-stop-gray.png) no-repeat 0 0;
	background-size: cover;
}

.p-home-carousel__plays.is-pause::after {
	background: url(/assets_cms/home/images/icon-start-gray.png) no-repeat 0 0;
	background-size: cover;
}

.p-home-carousel__counter {
	padding: 0 5px;
	font-size: 1.6rem;
}

.p-home-carousel__counter > span {
	padding: 0 10px;
	line-height: 40px;
	text-transform: uppercase;
}

.p-home-carousel__controls {
	width: auto;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.p-home-carousel__arrows {
	display: flex;
	position: relative;
}

@media (min-width: 768px) {
	.p-home-carousel {
		min-width: 1170px;
		padding-bottom: 40px;
	}

	.p-home-carousel__controls {
		margin-top: 16px;
	}

	.p-home-carousel__slides a {
		transition: opacity .2s;
	}

	.p-home-carousel__slides a:hover {
		opacity: .7;
	}

	.p-home-carousel__plays,
	.p-home-carousel__prev > a,
	.p-home-carousel__next > a {
		transition: border-color .2s, background-color .2s;
	}

	.p-home-carousel__plays:hover,
	.p-home-carousel__prev > a:hover,
	.p-home-carousel__next > a:hover {
		border: 1px solid #059A75;
		background-color: #059A75;
	}

	.p-home-carousel__prev > a:hover i,
	.p-home-carousel__next > a:hover i {
		color: #fff;
	}

	.p-home-carousel__plays:hover::after {
		background: url(/assets_cms/home/images/icon-stop-wh.png) no-repeat 0 0;
		background-size: cover;
	}

	.p-home-carousel__plays.is-pause:hover::after {
		background: url(/assets_cms/home/images/icon-start-wh.png) no-repeat 0 0;
		background-size: cover;
	}

	.p-home-carousel__counter {
		padding: 0 13px;
	}
}

/* important-notice */
.p-home-important-notice {
	padding: 25px 20px;
	margin-bottom: 30px;
	background-color: #fff;
	border: 1px solid #C3001D;
	border-radius: 15px;
}

.p-home-important-notice__title {
	position: relative;
	margin-bottom: 11px;
	color: #C3001C;
	font-size: 1.8rem;
	font-weight: 700;
}

.p-home-important-notice__title > i {
	position: relative;
	top: 1px;
	margin-right: 10px;
}

.p-home-important-notice__block + .p-home-important-notice__block {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
	.p-home-important-notice {
		padding: 40px 60px;
		margin-bottom: 40px;
	}

	.p-home-important-notice__title {
		font-size: 2rem;
	}

	.p-home-important-notice__title > i {
		top: 2px;
	}

	.p-home-important-notice .p-home-noticelist__item a:hover .text {
		color: #222;
		text-decoration: underline;
	}
}

/* おしらせ系スクロールコンテンツ */
.p-home-noticelist-wrap {
	height: 400px;
	padding-right: 10px;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.p-home-noticelist-wrapinner {
	min-height: 410px;
}

/* スクロールバー */
.p-home-noticelist-wrap::-webkit-scrollbar {
	display: none;
}

.simplebar-scrollbar::before {
	width: 8px;
	margin-top: 2px;
	margin: 2px auto 0;
	background: #C2C2C2;
	border-radius: 4px;
}

.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1;
}

.simplebar-track {
	width: 14px !important;
	background-color: #FAFAFA;
}

.simplebar-content {
	padding-right: 14px !important;
}

/* おしらせ系リスト */
.p-home-noticelist {
	font-size: 1.4rem;
	line-height: 1.8;
}

.p-home-noticelist .date {
	margin-bottom: 6px;
	font-size: 1.2rem;
	line-height: 1;
}

.p-home-noticelist li + li {
	margin-top: 10px;
}

.p-home-noticelist__item__inner {
	display: block;
	position: relative;
	color: #222;
}

.p-home-noticelist__item.new .text::before {
	content: 'NEW';
	display: inline-block;
	position: relative;
	top: -1px;
	padding: 2px 5px 3px;
	margin-right: 5px;
	background-color: #F48A3F;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.p-home-noticelist .date,
.p-home-noticelist .text {
	line-height: 1.5;
	padding-bottom: 1px;
}

@media (min-width: 768px) {
	.p-home-noticelist-wrap {
		height: 180px;
	}

	.p-home-noticelist-wrapinner {
		min-height: 200px;
	}

	.p-home-noticelist__item__inner {
		display: flex;
	}

	.p-home-noticelist .date,
	.p-home-noticelist .text {
		padding-bottom: 1px;
	}

	.p-home-noticelist .date {
		margin-bottom: 0;
		padding-right: 20px;
		font-size: 1.6rem;
	}

	.p-home-noticelist__item .text {
		font-size: 1.6rem;
		transition: color .2s;
	}

	.p-home-noticelist__item a:hover .text {
		color: #039A75;
		text-decoration: underline;
	}
}

/* section h2 */
.p-home-section__title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	margin-bottom: 20px;
}

.p-home-section__title::before,
.p-home-section__title::after {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	transform: translateY(100%);
}

.p-home-section__title::before {
	background-color: #039A75;
	margin-right: 10px;
}

.p-home-section__title::after {
	background-color: #F48A3F;
	margin-left: 10px;
}

@media (min-width: 768px) {
	.p-home-section__title {
		font-size: 3.6rem;
		margin-bottom: 40px;
	}

	.p-home-section__title::before,
	.p-home-section__title::after {
		width: 80px;
		height: 3px;
	}

	.p-home-section__title::before {
		margin-right: 30px;
	}

	.p-home-section__title::after {
		margin-left: 30px;
	}
}

/* section contents */
.p-home-section__contents {
	padding: 40px 20px;
	margin-top: 40px;
	background-color: #fff;
	border-radius: 15px;
}

@media (min-width: 768px) {
	.p-home-section__contents {
		padding: 60px;
		margin-top: 60px;
		border-radius: 25px;
	}
}

/* buttonlist */
.p-home-buttonlist li + li {
	margin-top: 10px;
}

.p-home-button {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
}

.p-home-button__inner {
	display: block;
	width: 100%;
	padding: 10px 20px 10px 46px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 15px;
	color: #222;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	cursor: pointer;
}

.p-home-button > i {
	position: absolute;
	height: 1.6rem;
	width: 1.6rem;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	font-size: 1.6rem;
	pointer-events: none;
	color: #039a75;
}

@media (min-width: 768px) {
	.p-home-buttonlist {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.p-home-buttonlist li + li {
		margin-top: 0;
	}

	.p-home-button__inner {
		padding: 16px 30px 16px 56px;
		transition: all .2s;
	}

	.p-home-button__inner:hover {
		background-color: #F1F9F7;
		border: 1px solid #059A75;
		color: #039A75;
		text-decoration: underline;
	}
}

/* btn */
.p-home__btn {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	border: 1px solid #ddd;
	position: relative;
	background-color: #fff;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
	font-weight: bold;
	color: #222;
	transition: border-color .2s, background-color .2s, color .2s;
}

.p-home__btn__inner {
	display: block;
	width: 100%;
	padding: 7px 40px;
	background: none;
	color: inherit;
	cursor: pointer;
}

.p-home__btn i {
	position: absolute;
	height: 1.6rem;
	width: 1.6rem;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	font-size: 1.6rem;
	pointer-events: none;
	color: #039a75;
}

@media (min-width: 768px) {
	.p-home__btn:not(.disabled):hover {
		border-color: #039a75;
		background-color: #f1f9f7;
		color: #039a75;
		text-decoration: underline;
	}
}

/* news */
.p-home-news {
	margin-top: 30px;
	padding-top: 30px;
}

.p-home-news__btn {
	width: 100%;
	max-width: 240px;
	margin: 25px auto 0;
}

@media (min-width: 768px) {
	.p-home-news {
		margin-top: 60px;
		padding-top: 60px;
	}

	.p-home-news__btn {
		max-width: 240px;
	}
}

/* used */
.p-home-usedlist {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 3px;
}

.p-home-usedlist__item {
	flex: 0 0 calc((100% - 6px) / 3);
}

.p-home-usedlist__inner {
	display: block;
}

.p-home-usedlist__icon {
	display: grid;
	place-content: center;
	place-items: center;
	background-color: #D9F4ED;
	border-radius: 100%;
	width: 80%;
	margin-inline: auto;
	aspect-ratio: 1 / 1;
}

.p-home-usedlist__icon img {
	width: 50%;
}

.p-home-usedlist__text {
	margin-top: 10px;
	color: #222;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.p-home-usedlist {
		justify-content: center;
		gap: 30px;
	}

	.p-home-usedlist__item {
		flex: 0 0 calc((100% - 150px) / 6);
	}

	.p-home-usedlist__icon {
		width: 100%;
		transition: opacity .2s;
	}

	.p-home-usedlist__icon img {
		width: 80px;
	}

	.p-home-usedlist__text {
		margin-top: 15px;
		font-size: 1.6rem;
		transition: color .2s;
	}

	.p-home-usedlist__item a:hover .p-home-usedlist__icon {
		opacity: .7
	}

	.p-home-usedlist__item a:hover .p-home-usedlist__text {
		color: #039A75;
		text-decoration: underline;
	}
}

/* features */
.p-home-feature {
	padding-bottom: 40px;
}

.p-home-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 15px;
}

.p-home-features__link > a {
	display: block;
	width: 100%;
	height: 100%;
}

.p-home-features__link dl {
	margin-top: 14px;
	color: #222;
}

.p-home-features__link dl dt {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-home-features__link dl dt > i.icon-blank {
	display: inline-block;
	margin-right: 10px;
}

.p-home-features__link dl dd {
	margin-top: 8px;
	font-size: 1.4rem;
	line-height: 1.8;
}

.p-home-features__link .p-home-features__image {
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
	.p-home-feature {
		padding-top: 80px;
		padding-bottom: 70px;
	}

	.p-home-features {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		padding-top: 10px;
	}

	.p-home-features__link dl {
		margin-top: 20px;
		padding: 0 18px 25px;
	}

	.p-home-features__caption dt {
		transition: color .2s;
	}

	.p-home-features__link .p-home-features__image {
		border-radius: 20px 20px 0 0;
	}

	.p-home-features__image > img {
		display: block;
		transform: scale(1);
		transition: transform .2s;
	}

	.p-home-features__link > a:hover .p-home-features__image > img {
		transform: scale(1.1);
	}

	.p-home-features__link > a:hover .p-home-features__caption dt {
		color: #039A75;
		text-decoration: underline;
	}
}

/* sub_features */
.p-home-sub_features__inner {
	display: block;
	position: relative;
}

.p-home-sub_features__link + .p-home-sub_features__link {
	margin-top: 10px;
}

.p-home-sub_features__link > a {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
}

.p-home-sub_features__caption {
	width: auto;
	flex: 1 1 auto;
	padding-left: 10px;
	padding-right: 25px;
	color: #222;
	font-weight: 700;
	font-size: 1.6rem;
}

.p-home-sub_features__inner >  i {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.p-home-sub_features__image {
	width: 60px;
	padding-bottom: 60px;
	flex: 0 0 60px;
}

.p-home-sub_features__image img {
	border-radius: 5px;
	overflow: hidden;
}

.p-home__morebtn {
	width: 100%;
	max-width: 240px;
	margin: 30px auto 0;
}

/* もっと見る制御 */
.p-home-sub_features__link {
	display: block;
	opacity: 1;
	transition: opacity .2s allow-discrete;
	@starting-style {
		opacity: 0;
	}
}

@media (min-width: 768px) {
	.p-home-sub_features {
		padding-bottom: 80px;
	}

	.p-home-sub_features__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.p-home-sub_features__link + .p-home-sub_features__link {
		margin-top: 0;
	}

	.p-home-sub_features__link > a {
		transition: background-color 0.2s, border 0.2s;
	}

	.p-home-sub_features__caption {
		transition: color .2s;
	}
	
	.p-home-sub_features__link > a > img {
		display: block;
	}

	.p-home-sub_features__image > img {
		display: block;
	}

	.p-home-sub_features__link > a:hover {
		background-color: #F1F9F7;
		border: 1px solid #059A75;
	}

	.p-home-sub_features__link > a:hover .p-home-sub_features__caption {
		color: #039A75;
		text-decoration: underline;
	}
}


/* tab */
.p-home-tab__tab {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 4px;
	padding-bottom: 30px;
}

.p-home-tab__tab-item.is-active {
	pointer-events: none;
	cursor: default;
}

.p-home-tab__tab-link {
	display: grid;
	place-content: center;
	width: 100%;
	min-height: 60px;
	height: 100%;
	padding: 9px 0;
	background: #F3F3F3;
	border: 1px solid #ddd;
	border-radius: 5px;
	color: inherit;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	cursor: pointer;
}

.p-home-tab__tab-item.is-active .p-home-tab__tab-link {
	position: relative;
	background: #D9F4ED;
	border: 1px solid #059A75;
	z-index: 1;
}

.p-home-tab__tab-link::before,
.p-home-tab__tab-link::after {
	opacity: 0;
	transition: opacity .2s;
}

.p-home-tab__tab-item.is-active .p-home-tab__tab-link::before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: -11px;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #D9F4ED transparent transparent transparent;
	border-width: 11px 7px 0px 7px;
	transform: translateX(-50%);
	opacity: 1;
}

.p-home-tab__tab-item.is-active .p-home-tab__tab-link::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: -14px;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #059A75 transparent transparent transparent;
	border-width: 14px 8px 0px 8px;
	transform: translateX(-50%);
	z-index: -1;
	opacity: 1;
}

.p-home-tab__contents-item {
	display: none;
	opacity: 0;
	transition: opacity .5s;
}
.p-home-tab__contents-item.is-active {
	display: block;
	opacity: 1;
	@starting-style {
		opacity: 0;
	}
}

@media (min-width: 768px) {
	.p-home-tab__tab {
		gap: 0 30px;
	}

	.p-home-tab__tab-link {
		min-height: 60px;
		font-size: 1.6rem;
		padding: 10px 15px;
		transition: background-color 0.2s, border 0.2s;
	}

	.p-home-tab__tab-link:hover {
		position: relative;
		background: #D9F4ED;
		border: 1px solid #059A75;
		text-decoration: underline;
		z-index: 1;
	}

	.p-home-tab__tab-link:hover::before {
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		bottom: -11px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: #D9F4ED transparent transparent transparent;
		border-width: 11px 7px 0px 7px;
		transform: translateX(-50%);
		opacity: 1;
	}

	.p-home-tab__tab-link:hover:after {
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		bottom: -14px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: #059A75 transparent transparent transparent;
		border-width: 14px 8px 0px 8px;
		transform: translateX(-50%);
		z-index: -1;
		opacity: 1;
	}
}

/* card */
.p-home-card__inner {
	display: block;
	height: 100%;
	min-height: 285px;
	border: 1px solid #ddd;
	overflow: hidden;
	transition: border .2s;
}

.p-home-card__image {
	margin: -1px -1px 20px;
	height: 0;
	padding-bottom: 50%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.p-home-card__image > img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform .2s;
}

.p-home-card__content {
	padding: 0 20px 20px;
}

.p-home-card__title {
	color: #222;
	font-weight: 700;
	font-size: 1.6rem;
}

.p-home-card__text {
	margin-top: 6px;
	color: #222;
	font-size: 1.4rem;
	line-height: 1.8;
}

@media (min-width: 768px) {
	.p-home-card__title {
		transition: color .2s;
	}

	.p-home-card a:hover {
		border: 1px solid #059A75;
	}

	.p-home-card a:hover .p-home-card__title {
		color: #039A75;
		text-decoration: underline;
	}

	.p-home-card a:hover .p-home-card__image > img {
		transform: scale(1.1);
	}
}

/* useful-carousel */
.slick-slider {
	display: none;
}

.slick-slider.slick-initialized {
	display: block;
}

/* スライド枚数以下 */
.p-home-useful-carousel.is-stop .p-home-useful-carousel__controls {
	display: none;
}

.p-home-useful-carousel__prev,
.p-home-useful-carousel__next {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.p-home-useful-carousel__prev > a, .p-home-useful-carousel__next > a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 25px;
	line-height: 25px;
	color: #039A75;
	cursor: pointer;
}

.p-home-useful-carousel__prev > a > span,
.p-home-useful-carousel__next > a > span {
	display: inline-block;
	text-indent: -9999px;
}

.p-home-useful-carousel__controls {
	position: relative;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-home-useful-carousel__dots {
	width: 100%;
	height: 12px;
	text-align: center;
}

.p-home-useful-carousel__dots > li {
	display: inline-block;
	width: 12px;
	margin: 0 9px;
	line-height: 1;
}

.p-home-useful-carousel__dots > li > button {
	width: 12px;
	height: 12px;
	padding: 0;
	border: none;
	line-height: 1;
	text-indent: -9999px;
	background-color: #ddd;
	border-radius: 50%;
}

.p-home-useful-carousel__dots > li > button[aria-selected] {
	background-color: #039A75;
}

.p-home-useful-carousel__plays {
	position: relative;
	width: 20px;
	height: 22px;
	margin-top: 1px;
	margin-left: 9px;
	border-radius: 100%;
	cursor: pointer;
}

.p-home-useful-carousel__plays::after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background: url(/assets_cms/home/images/icon-stop-gray.png) no-repeat 0 0;
	background-size: cover;
}

.p-home-useful-carousel__plays.is-pause::after {
	background: url(/assets_cms/home/images/icon-start-gray.png) no-repeat 0 0;
	background-size: cover;
}

.p-home-useful__btn {
	width: 100%;
	max-width: 240px;
	margin: 30px auto 0;
}

.p-home-useful__btn .p-home__btn__inner {
	padding: 7px 15px 7px 40px;
}

.p-home-useful-carousel__counter {
	padding: 0 5px;
	font-size: 1.6rem;
}

.p-home-useful-carousel__counter > span {
	padding: 0 10px;
	line-height: 40px;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.p-home-useful-carousel__slide {
		margin: 0 5px;
	}

	.p-home-useful-carousel__slides .slick-list {
		padding: 0 30% 0 0 !important;
	}

	.p-home-useful-carousel__prev,
	.p-home-useful-carousel__next {
		width: 25px;
		height: 25px;
	}

	.p-home-useful-carousel__prev {
		left: 0;
	}

	.p-home-useful-carousel__next {
		right: 0;
	}

	.p-home-useful-carousel__controls {
		margin-top: 20px;
	}
}

@media (min-width: 768px) {
	.p-home-useful-carousel__slide {
		margin: 0 15px;
	}

	.p-home-useful-carousel__prev,
	.p-home-useful-carousel__next {
		width: 50px;
		height: 50px;
	}

	.p-home-useful-carousel__prev > a > span,
	.p-home-useful-carousel__next > a > span {
		display: inline-block;
		text-indent: -9999px;
	}

	.p-home-useful-carousel__prev {
		left: -5%;
	}

	.p-home-useful-carousel__next {
		right: -5%;
	}

	.p-home-carousel__counter {
		padding: 0 13px;
	}

	.p-home-useful-carousel__controls {
		margin-top: 30px;
	}

	.p-home-useful-carousel__dots {
		width: 100%;
		height: 12px;
		text-align: center;
	}

	.p-home-useful-carousel__dots > li {
		display: inline-block;
		width: 12px;
		margin: 0 9px;
		line-height: 1;
	}

	.p-home-useful-carousel__dots > li > button {
		width: 12px;
		height: 12px;
		padding: 0;
		border: none;
		line-height: 1;
		text-indent: -9999px;
		background-color: #ddd;
		border-radius: 50%;
	}

	.p-home-useful-carousel__dots > li > button[aria-selected] {
		background-color: #039A75;
	}

	.p-home-useful-carousel__plays {
		position: relative;
		display: grid;
		place-content: center;
		width: 20px;
		height: 22px;
		margin-left: 9px;
		border-radius: 100%;
		cursor: pointer;
	}

	.p-home-useful-carousel__plays::after {
		content: '';
		display: block;
		width: 16px;
		height: 16px;
		background: url(/assets_cms/home/images/icon-stop-gray.png) no-repeat 0 0;
		background-size: cover;
	}

	.p-home-useful-carousel__plays.is-pause::after {
		background: url(/assets_cms/home/images/icon-start-gray.png) no-repeat 0 0;
		background-size: cover;
	}

	.p-home-useful__btn {
		width: 100%;
		max-width: 240px;
		margin: 30px auto 0;
	}

	.p-home-useful__btn .c-button__inner {
		padding: 7px 15px 7px 40px;
	}

	.p-home-useful__btn {
		max-width: 240px;
	}
}
