@charset "utf-8";
/* swiper slider */
:root {
  --swiper-navigation-size: 25px;
	--swiper-theme-color: #6aa33c;
	--swiper-easing: cubic-bezier(.2, 1, .2, 1);
	--swiper-transition: .8s var(--swiper-easing);
}

/* カルーセルスライダー（おすすめ商品等）
------------------------------------- */
.swiper {
	background: #ecf0e9;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	padding: 10px 30px;
	width: calc(100% - 60px);
	height: 160px;
	position: relative;
}
.swiper-wrapper {
	max-height: 150px;
	align-items: center;
}
.swiper-slide {
	background: #FFF;
	border-radius: 2px;
	color: #262626;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}
.swiper-slide .swiper-slide-visible {}
.swiper-slide a {
	border-radius: 2px;
	color: #000;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.swiper-slide a:hover {
	opacity: 0.8;
}
.swiper-slide div,
.swiper-slide figure {
	letter-spacing: 0;
	line-height: 15px;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 5px;
	word-break: break-all;
	margin: 0;
}
.swiper-slide .itemimage {
	padding: 5px 0;
}
.swiper-slide .itemtext {
	background: #c9d5c1;
	border-radius: 0 0 2px 2px;
	font-size: 11px;
	font-weight: bold;
	display: block;
	padding: 4px 2px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: calc(100% - 4px);
}
/* 前へ / 次へボタン */
.swiper-button-prev,
.swiper-button-next {
	background: #ecf0e9;
	background-size: 24px 40px;
	color: var(--swiper-navigation-color,#6aa33c);
	/* transform: translateY(-50%); */
	margin: auto;
	bottom: 0;
	top: 0;
	position: absolute;
	height: calc(100% - 30px);
	width: 30px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: #dce3d7;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 0;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	content: "";
	border-top: 2px solid #6AA33C;
	border-right: 2px solid #6AA33C;
	border-bottom: 0 solid transparent;
	border-left: 0 solid transparent;
	transform: rotate(45deg);
	border-radius: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 10px;
	margin: auto;
	width: 15px;
	height: 15px;
}
.swiper-button-prev::after {
	transform: rotate(-135deg);
	left: 10px;
	right: 0;
}
.swiper-slide:not(.swiper-slide-visible) {
	pointer-events: none;
	opacity: .3;
}
/*.swiper-wrapper:hover .swiper-slide:not(:hover) {
	opacity: .3;
}*/

@media screen and (max-width: 768px) {
	.swiper {
		background: #ecf0e9;
		border-radius: 4px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
		padding: 10px 30px;
		width: calc(100% - 60px);
		height: 160px;
		position: relative;
	}
	.swiper-wrapper {
		max-height: 150px;
		align-items: center;
	}
	.swiper-slide {
		background: #FFF;
		border-radius: 2px;
		color: #262626;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		opacity: 0.8;
	}
	.swiper-slide .swiper-slide-visible {}
	.swiper-slide a {
		border-radius: 2px;
		color: #000;
		display: inline-flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 100%;
		text-decoration: none;
	}

	.swiper-slide div {
		letter-spacing: 0;
		line-height: 15px;
		font-size: 12px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 5px;
		word-break: break-all;
		margin: 0;
	}
	.swiper-slide div.itemimage {
		padding: 5px 0;
	}
	.swiper-slide div.itemtext {
		background: #c9d5c1;
		border-radius: 0 0 2px 2px;
		font-size: 11px;
		display: block;
		padding: 4px 2px;
		text-align: center;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: calc(100% - 4px);
	}
	/* 前へ / 次へボタン */
	.swiper-button-prev,
	.swiper-button-next {
		background: #ecf0e9;
		background-size: 24px 40px;
		color: var(--swiper-navigation-color,#6aa33c);
		/* transform: translateY(-50%); */
		margin: auto;
		bottom: 0;
		top: 0;
		position: absolute;
		height: calc(100% - 30px);
		width: 30px;
	}
	.swiper-button-prev:hover,
	.swiper-button-next:hover {
		background: #dce3d7;
	}
	.swiper-button-prev,
	.swiper-rtl .swiper-button-next {
		left: 0;
	}
	.swiper-button-next,
	.swiper-rtl .swiper-button-prev {
		right: 0;
	}
	.swiper-button-next::after,
	.swiper-button-prev::after {
		content: "";
		border-top: 2px solid #6AA33C;
		border-right: 2px solid #6AA33C;
		border-bottom: 0 solid transparent;
		border-left: 0 solid transparent;
		border-radius: 1px;
		position: absolute;
		transform: rotate(45deg);
		top: 0;
		bottom: 0;
		left: 0;
		right: 10px;
		margin: auto;
		width: 15px;
		height: 15px;
	}
	.swiper-button-prev::after {
		transform: rotate(-135deg);
		left: 10px;
		right: 0;
	}
	.swiper-slide:not(.swiper-slide-visible) {
		pointer-events: auto;
		opacity: 1;
	}
}


/* スライドショー形式のスライダー（ノンストップ）
------------------------------------- */
.swiper.nonstop {
	background: #EEF0F1;
	padding: 20px 10px;
	width: calc(100% - 20px);
	/* border: 10px solid #EEF0F1; */
}
.swiper.nonstop .swiper-slide .itemimage {
	padding: 5px 0;
	height: calc(100% - 50px);
	width: 100%;
}
.swiper.nonstop .swiper-slide .itemtext {
	background: #fff;
	display: inline-flex;
	height: 45px;
	white-space: normal;
	font-size: 12px;
	letter-spacing: 1px;
}

.swiper.nonstop .swiper-wrapper {
    transition-timing-function: linear;
}
.swiper.nonstop .swiper-slide:not(.swiper-slide-visible) {
	pointer-events: auto;
	opacity: 1;
}


/* 横スライドのみ（スワイプのみ・autoplay、loopなし）
------------------------------------- */
.swiper.swipe_only {
	background: #EEF0F1;
	padding: 20px 30px;
	width: calc(100% - 60px);
	/* border: 10px solid #EEF0F1; */
}
.swiper.swipe_only .swiper-slide .itemimage {
	padding: 5px 0;
	height: calc(100% - 50px);
	width: 100%;
}
.swiper.swipe_only .swiper-slide .itemtext {
	background: #fff;
	display: inline-flex;
	height: 45px;
	white-space: normal;
	font-size: 12px;
	letter-spacing: 1px;
}

.swiper.swipe_only .swiper-slide:not(.swiper-slide-visible) {
	pointer-events: auto;
	opacity: 1;
}
.swiper.swipe_only .swiper-button-prev.swiper-button-disabled {
	pointer-events: auto;
}


/* スライドショー形式のスライダー（導入事例等）
------------------------------------- */

.swiper[class*="slideshow"],
.swiper.slidegallery {
	height: 350px;
	margin-right: 0;
	margin-left: 0;
	padding: 10px;
	width: calc(100% - 20px);
}
.swiper.slidegallery {
	background: #f2f2f2;
	padding: 15px 50px 25px;
	height: auto;
	max-width: 500px;
	margin: 20px auto;
}
.swiper[class*="slideshow"] .swiper-wrapper,
.swiper.slidegallery .swiper-wrapper {
	align-items: center;
	max-height: 100%;
	width: calc(100% - 0px);
}
.swiper[class*="slideshow"] .swiper-slide:not(.swiper-slide-visible),
.swiper.slidegallery .swiper-slide:not(.swiper-slide-visible) {
	opacity: 1;
	pointer-events: revert;
}
.swiper[class*="slideshow"] .swiper-slide,
.swiper.slidegallery .swiper-slide {
	height: calc(100% - 30px);
	opacity: 1;
	padding: 0;
}
/*.swiper.slidegallery .swiper-slide {
	height: 100%;
}*/
.swiper[class*="slideshow"] .case-study_wrap,
.swiper.slidegallery .case-study_wrap {
	padding: 0;
	width: calc(100% - 60px);
	height: 100%;
}
.swiper[class*="slideshow"] .case-study_wrap a,
.swiper.slidegallery .case-study_wrap a {
	box-sizing: border-box;
	padding: 5px;
}
/* 左上のタグ帯 */
.swiper[class*="slideshow"] .tag {
	background: #166697;
	/*background: #8e9985;*/
	color: #fff;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	position: absolute;
	min-width: 120px;
	text-align: center;
	height: 30px;
	left: -10px;
	top: -19px;
}
.swiper[class*="slideshow"] .tag::before {
	content: "";
	border-top: 15px solid #166697;
	border-right: 0 solid #166697;
	border-bottom: 15px solid #166697;
	border-left: 5px solid #0000;
	position: absolute;
	left: -5px;
}
.swiper[class*="slideshow"] .tag::after {
	content: "";
	border-top: 15px solid #166697;
	border-right: 5px solid #0000;
	border-bottom: 15px solid #166697;
	border-left: 0 solid #166697;
	position: absolute;
	right: -5px;
}
.swiper[class*="slideshow"] .case-study_content ,
.swiper.slidegallery .case-study_content {
	flex-direction: row;
	padding: 0;
	width: 100%;
	height: 100%;
}
.swiper[class*="slideshow"] .case-study_image,
.swiper.slidegallery .case-study_image {
	margin: 0;
	max-width: 400px;
}
.swiper.slidegallery .case-study_image {
	max-width: 100%;
	width: 100%;
	height: 400px;
}
.swiper[class*="slideshow"] .case-study_image img,
.swiper.slidegallery .case-study_image img {
	border-radius: 2px;
	object-fit: cover;
	/*width: 100%;*/
}
.swiper.slidegallery .case-study_image img {
	width: 100%;
	height: 100%;
}
/* sup:補足分ありの場合は縦幅調整 */
.swiper[class*="slideshow"] .sup-wrap .case-study_image img,
.swiper.slidegallery .sup-wrap .case-study_image img {
	height: 100%;
	aspect-ratio: 400/257.8;
}
.swiper[class*="slideshow"] .case-study_overview,
.swiper.slidegallery .case-study_overview {
	margin-left: 10px;
	margin-bottom: 20px;
	width: calc(100% - 410px);
	position: relative;
}
.swiper[class*="slideshow"] .case-study_overview h3,
.swiper.slidegallery .case-study_overview h3 {
	font-size: 23px;
	line-height: 28px;
	margin: 0;
	width: 100%;
}
.swiper[class*="slideshow"] .case-study_overview h4,
.swiper.slidegallery .case-study_overview h4 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 18px;
	position: relative;
	padding: 4px 15px;
	z-index: 0;
}
.swiper[class*="slideshow"] .case-study_overview h4::before,
.swiper.slidegallery .case-study_overview h4::before {
	content: "";
	/* background: #caf209; */
	background: linear-gradient(45deg, #f1fbb4 0%,#ddec96 100%);
	top: 0;
	left: 0;
	transform: skew(-10deg);
	width: auto;
	height: 100%;
	z-index: -1;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	bottom: 0;
	right: 0;
	margin: auto;
	padding: 0 5px;
	min-height: 30px;
}
.swiper[class*="slideshow"] .case-study_overview .readmore {
	position: absolute;
	right: 0;
	bottom: -30px;
}
.swiper[class*="slideshow"] .case-study_overview .readmore span {
	margin: 0;
}
.swiper[class*="slideshow"] .case-study_overview .case-study_scale,
.swiper.slidegallery .case-study_overview .case-study_scale {
	align-items: flex-start;
	box-sizing: border-box;
	width: 100%;
	margin: 10px;
}
.swiper[class*="slideshow"] .case-study_overview .case-study_scale div,
.swiper.slidegallery .case-study_overview .case-study_scale div {
	border-bottom: 1px solid #F4F4F4;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 2px 0;
	text-align: left;
	width: 100%;
}
.swiper[class*="slideshow"] .case-study_overview .case-study_scale div:last-child,
.swiper.slidegallery .case-study_overview .case-study_scale div:last-child {
	border-bottom: none;
}
.swiper[class*="slideshow"] .case-study_overview .case-study_scale div .title,
.swiper.slidegallery .case-study_overview .case-study_scale div .title {
	font-weight: bold;
	margin-right: 10px;
	white-space: nowrap;
}

.swiper[class*="slideshow"] .swiper-button-prev,
.swiper[class*="slideshow"] .swiper-button-next,
.swiper.slidegallery .swiper-button-prev,
.swiper.slidegallery .swiper-button-next {
	background: transparent;
	background-size: 24px 40px;
	color: var(--swiper-navigation-color,#6aa33c);
	/* transform: translateY(-50%); */
	margin: auto;
	bottom: 0;
	top: 0;
	position: absolute;
	height: 100px;
	width: 50px;
}
.swiper.slidegallery .swiper-button-prev,
.swiper.slidegallery .swiper-button-next {
	background: #f2f2f2;
	height: 100%;
}
.swiper[class*="slideshow"] .swiper-button-prev:hover,
.swiper[class*="slideshow"] .swiper-button-next:hover {
	background: rgba(207, 221, 195, 0.2);
}

.swiper.slidegallery .swiper-button-prev:hover,
.swiper.slidegallery .swiper-button-next:hover {
	background: rgb(230, 230, 230);
}

.swiper[class*="slideshow"] .swiper-horizontal > .swiper-pagination-bullets,
.swiper[class*="slideshow"] .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper[class*="slideshow"] .swiper-pagination-custom,
.swiper[class*="slideshow"] .swiper-pagination-fraction,
.swiper.slidegallery .swiper-horizontal > .swiper-pagination-bullets,
.swiper.slidegallery .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper.slidegallery .swiper-pagination-custom,
.swiper.slidegallery .swiper-pagination-fraction {
	bottom: 4px;
}

.swiper.slidegallery .swiper-slide div,
.swiper.slidegallery .swiper-slide figure {
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
}
.swiper.slidegallery .swiper-slide div.text {
	background: rgba(0, 0, 0, 0.7);
	color: #FFF;
	box-sizing: border-box;
	padding: 5px;
	min-height: 30px;
	position: absolute;
	bottom: 0;
}

@media screen and (max-width: 768px) {
	.swiper.slidegallery {
		width: 100%;
		border-radius: 0;
		padding: 15px 0;
	}
	.swiper[class*="slideshow"] .swiper-slide,
	.swiper[class*="slideshow"] .swiper-slide:not(.swiper-slide-visible),
	.swiper.slidegallery .swiper-slide,
	.swiper.slidegallery .swiper-slide:not(.swiper-slide-visible) {
		height: 100%;
		opacity: 1;
		pointer-events: revert;
	}
	.swiper[class*="slideshow"] .swiper-slide.swiper-slide-visible,
	.swiper.slidegallery .swiper-slide.swiper-slide-visible {
		z-index: 1;
	}
	.swiper[class*="slideshow"] .case-study_wrap a,
	.swiper.slidegallery .case-study_wrap a {
		padding: 0;
	}
	.swiper[class*="slideshow"] .tag {
		top: 1px;
		height: 26px;
	}
	.swiper[class*="slideshow"] .tag::after {
		border-top: 13px solid #166697;
		border-bottom: 13px solid #166697;
	}
	.swiper[class*="slideshow"] .tag::before {
		border-top: 13px solid #166697;
		border-bottom: 13px solid #166697;
	}
	.swiper[class*="slideshow"] .case-study_content,
	.swiper.slidegallery .case-study_content {
		flex-direction: column;
	}
	.swiper[class*="slideshow"] .case-study_image,
	.swiper.slidegallery .case-study_image {
		max-width: 100%;
		margin-top: -15px;
	}
	.swiper.slidegallery .case-study_image {
		height: auto;
		max-height: 300px;
	}
	.swiper[class*="slideshow"] .case-study_image img {
		max-height: 100px;
	}
	.swiper[class*="slideshow"] .case-study_overview,
	.swiper.slidegallery .case-study_overview {
		margin: 5px 0 0 0;
		width: 100%;
	}
	.swiper[class*="slideshow"] .case-study_overview h3,
	.swiper.slidegallery .case-study_overview h3 {
		background: transparent;
		border: 0;
		font-size: 18px;
		line-height: 23px;
		padding: 0;
		margin: 0;
		width: 100%;
	}
	.swiper[class*="slideshow"] .case-study_overview h3 span.px17,
	.swiper.slidegallery .case-study_overview h3 span.px17 {
		font-size: 80%;
	}
	.swiper[class*="slideshow"] .case-study_overview h4,
	.swiper.slidegallery .case-study_overview h4 {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	.swiper[class*="slideshow"] .case-study_overview .case-study_scale,
	.swiper.slidegallery .case-study_overview .case-study_scale {
		margin: 0;
		flex-direction: row;
		flex-wrap: wrap;
		padding: 0;
	}
	.swiper[class*="slideshow"] .case-study_overview .case-study_scale div,
	.swiper.slidegallery .case-study_overview .case-study_scale div {
		flex-direction: row;
		padding: 4px 0;
		width: calc(50% - 4px);
		margin-right: 4px;
	}
	.swiper[class*="slideshow"] .case-study_overview .case-study_scale div:nth-child(2n),
	.swiper.slidegallery .case-study_overview .case-study_scale div:nth-child(2n) {
		margin-right: 0;
	}
	.swiper[class*="slideshow"] .case-study_overview .case-study_scale div:last-child,
	.swiper.slidegallery .case-study_overview .case-study_scale div:last-child {
		border-bottom: 1px solid #F4F4F4;
	}
	.swiper[class*="slideshow"] .sup-wrap .sup {
		font-size: 11px;
		line-height: 13px;
		padding: 0;
	}
	.swiper[class*="slideshow"] .case-study_overview .readmore {
		bottom: -40px;
	}
}



/* フロントページの
　　レンタルの流れスライダー
------------------------------------- */

.swiper.flow_slide {
	height: 400px;
	background: linear-gradient(160deg, rgba(221, 221, 221, 0.2) 0%,rgba(221, 221, 221, 0.2) 70px, rgba(244, 244, 244, 0.2) 70px),linear-gradient(102deg, rgba(221, 221, 221, 0.2) 0%,rgba(221, 221, 221, 0.2) 50px, rgba(244, 244, 244, 0.2) 50px),linear-gradient(10deg, rgba(221, 221, 221, 0.2) 0%,rgba(221, 221, 221, 0.2) 60px, rgba(244, 244, 244, 0.2) 60px),linear-gradient(-120deg, rgba(221, 221, 221, 0.2) 0%,rgba(221, 221, 221, 0.2) calc(100% - 330px), rgba(244, 244, 244, 0.2) calc(100% - 330px));
}
.swiper.flow_slide .swiper-slide {
	border-radius: 7px;
	height: 400px;
	justify-content: flex-start;
}
.swiper.flow_slide .swiper-slide:not(.swiper-slide-visible) {
	pointer-events: auto;
	opacity: 1;
}
.swiper.flow_slide .swiper-slide > div::after {
	content: "";
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #6AA33C;
	position: absolute;
	top: 15px;
	right: -20px;
	z-index: 4;
	bottom: auto;
	height: 0;
	width: 0;
	margin: auto;
}
.swiper.flow_slide .swiper-slide:last-child > div::after {
	content: "";
	border: none;
}
	
.swiper.flow_slide .swiper-wrapper {
	max-height: 100%;
}
.swiper.flow_slide .rental_flow_step {
	border-radius: 7px;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 0;
	height: 100%;
	position: relative;
}
.swiper.flow_slide h3 {
	background: #6aa33c;
	border-radius: 7px 7px 0 0;
	border: none;
	box-sizing: border-box;
	/*color: #555;*/
	color: #FFF;
	font-size: 18px;
	display: inline-flex;
	flex-direction: row;
	width: 100%;
	justify-content: center;
	align-items: center;
	height: 50px;
	margin: 0;
}
.swiper.flow_slide h3 * {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.swiper.flow_slide .swiper-slide:first-child h3 {
	background: linear-gradient(90deg, #C8DF70 0%,#BAD55A 30%, #BAD55A 70%,#C8DF70 100%);
}
.swiper.flow_slide .swiper-slide:first-child h3 * {
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.swiper.flow_slide .swiper-slide:first-child > div::after {
	border-left: 10px solid #C8DF70;
}
.swiper.flow_slide .swiper-slide:nth-child(2) div h3 {
	background: #83CC7D;
}
.swiper.flow_slide .swiper-slide:nth-child(2) > div::after {
	border-left: 10px solid #83CC7D;
}
.swiper.flow_slide .swiper-slide:nth-child(3) div h3 {
	background: #4BC1B9;
}
.swiper.flow_slide .swiper-slide:nth-child(3) > div::after {
	border-left: 10px solid #4BC1B9;
}
.swiper.flow_slide .swiper-slide:nth-child(4) div h3 {
	background: #4B9ACE;
}
.swiper.flow_slide .swiper-slide:nth-child(4) > div::after {
	border-left: 10px solid #4B9ACE;
}
.swiper.flow_slide .swiper-slide:nth-child(5) div h3 {
	background: #7E7CB9;
}
.swiper.flow_slide .swiper-slide:last-child > div {
	margin: 0;
}
.swiper.flow_slide h3 em {
	border-radius: 5px;
	font-style: normal;
	margin-right: 10px;
}
.swiper.flow_slide h3 em::before {
	content: "";
	bottom: -7px;
	border-bottom: 4px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	position: absolute;
	left: 0;
	right: 0;
}
	
.swiper.flow_slide .contents_wrap {
	box-sizing: border-box;
	height: calc(100% - 50px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	padding: 5px 5px 15px;
	width: 100%;
}
.swiper.flow_slide .contents dl {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	margin: 5px 0;
}
.swiper.flow_slide .contents dl dt {
	font-size: 16px;
	padding: 3px 5px;
	width: 100%;
	color: #333;
	font-weight: bold;
}
.swiper.flow_slide .contents dl dd {
	flex-direction: column;
	display: inline-flex;
	justify-content: center;
	align-items: flex-start;
	width: calc(100% - 15px);
	padding: 2px 0 2px 15px;
	margin: 0;
}
.swiper.flow_slide .contents dl img {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 5px auto;
	object-fit: cover;
	width: 170px;
	aspect-ratio: 200/95;
	border-radius: 3px;
	height: auto;
}
.swiper.flow_slide .image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50%;
	box-sizing: border-box;
}
.swiper.flow_slide .image img {
	object-fit: cover;
	width: 250px;
	aspect-ratio: 250/160;
	border-radius: 3px;
	height: auto;
}
.swiper.flow_slide .swiper-button-prev,
.swiper.flow_slide .swiper-button-next {
	border-radius: 25px;
	height: 80px;
	width: 40px;
}
.swiper.flow_slide .swiper-button-prev,
.swiper.flow_slide .swiper-rtl .swiper-button-next {
	left: 5px;
}
.swiper.flow_slide .swiper-button-next,
.swiper.flow_slide .swiper-rtl .swiper-button-prev {
	right: 5px;
}

@media screen and (max-width: 768px) {
	.swiper.flow_slide,
	.swiper.flow_slide .swiper-slide {
		height: 420px;
	}
}

