/*--- 共通 ---*/
.absolute-center {
	position: absolute !important;
	left: 0px !important;
	right: 0px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.absolute-top {
	position: absolute !important;
	top: 0px !important;
	bottom: unset !important;
}
.absolute-middle {
	position: absolute !important;
}
.absolute-bottom {
	position: absolute !important;
	top: unset !important;
	bottom: 0px !important;
}
.absolute-right-top {
	position: absolute !important;
	top: 0px !important;
	right: 0px !important;
	left: unset !important;
	bottom: unset !important;
}
.absolute-right-bottom {
	position: absolute !important;
	right: 0px !important;
	bottom: 0px !important;
	top: unset !important;
	left: unset !important;
}
.btn-learn-more,
.btn-learn-more-xs,
.btn-view-more,
.btn-view-more-xs {
	position: absolute !important;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding-top: 36px;
	padding-bottom: 5px;
	background: linear-gradient(180deg, rgb(255, 255, 255,0) 0%, rgb(255, 255, 255,1) 70%);
	cursor: pointer;
	text-align: center;
	color: inherit;
	font-size: 24px;
}
.btn-learn-more.active,
.btn-learn-more-xs.active {
	background: none;
}
.btn-view-more span,
.btn-view-more-xs span {
	font-size: 16px;
	color: #4C8DCB;
}
.clear-both {
	clear: both;
}
.display-block {
	display: block;
}
.display-inline-block {
	display: inline-block !important;
}
.display-none {
	display: none !important;
}
.fixed-top,
.fixed-bottom {
	position: fixed !important;
	z-index: 1020;
	transition-property: top,bottom;
	transition-duration: 300ms;
	transition-delay: 0s;
	transition-timing-function: ease;
}
.fixed-bottom {
	bottom: 0px !important;
	top: unset !important;
}
.fixed-page-top-right {
	position: fixed !important;
	z-index: 1030;
	top: 0px !important;
	right: 0px !important;
}
.flexbox,
.flexbox-row-reverse,
.flexbox-middle,
.flexbox-center,
.flexbox-center-middle,
.flexbox-right,
.flexbox-right-middle {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	flex-wrap: wrap;
}
.flexbox-middle {
  align-items: center;
}
.flexbox-center {
	-webkit-justify-content: center;
	justify-content: center;
}
.flexbox-center-middle {
	-webkit-justify-content: center;
  justify-content: center;
  align-items: center;
}
.flexbox-right {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flexbox-right-middle {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	align-items: center;
}
.flexbox-nowrap {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
}
.flexbox-row-reverse {
	flex-direction: row-reverse;
}
.hover-enlarge {
	transition-duration: 0.3s;
}
.hover-enlarge:hover,
.hover-img-enlarge {
	transform: scale(1.05);
	transition-duration: 0.3s;
}
.hover-img-no-enlarge {
	transform: scale(1.00);
	transition-duration: 0.3s;
}
.hover-zoom {
    display: inline-block;
    transition: 0.3s ease;
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
    text-decoration: none;
}
.hover-zoom:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    text-decoration: none;
    cursor : pointer;
}
.learn-more {
	transition: padding 0.3s;
}
.mask-text-overflow {
	position: absolute !important;
	bottom: 0px !important;
	left: 0px !important;
	height: 60px !important;
	width: 100% !important;
	background: linear-gradient(180deg, rgb(255, 255, 255,0) 0%, rgb(255, 255, 255,1) 70%) !important;
}
.overflow-hidden {
	overflow: hidden !important;
}
.overflow-x-auto {
	overflow-x: auto !important;
}
.relative-center {
	position: relative !important;
	margin-left: auto !important;;
	margin-right: auto !important;
}
.relative-middle {
	position: relative !important;
}
.scrollbar-hidden {
	-ms-overflow-style:none;
	scrollbar-width: none;
}
.scrollbar-hidden::-webkit-scrollbar {
	display: none;
	-webkit-appearance: none;
}
.scroll-fullheight-visible {
	display: none;
}
.sticky-top,
.sticky-bottom {
	position: sticky !important;
	position: -webkit-sticky !important;
}
.text-ellipsis {
	width:100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (min-width: 768px) {
	.absolute-center-sm {
		position: absolute !important;
		left: 0px !important;
		right: 0px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.absolute-top-sm {
		position: absolute !important;
		top: 0px !important;
		bottom: unset !important;
	}
	.absolute-middle-sm {
		position: absolute !important;
	}
	.absolute-bottom-sm {
		position: absolute !important;
		bottom: 0px !important;
		top: unset !important;
	}
	.absolute-right-top-sm {
		position: absolute !important;
		top: 0px !important;
		right: 0px !important;
		left: unset !important;
		bottom: unset !important;
	}
	.absolute-right-bottom-sm {
		position: absolute !important;
		right: 0px !important;
		bottom: 0px !important;
		top: unset !important;
		left: unset !important;
	}
	.clear-both-sm {
		clear: both;
	}
	.display-block-sm {
		display: block;
	}
	.display-inline-block-sm {
		display: inline-block !important;
	}
	.flexbox-sm,
	.flexbox-middle-sm,
 	.flexbox-center-sm,
	.flexbox-center-middle-sm,
 	.flexbox-right-sm,
	.flexbox-right-middle-sm {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		flex-wrap: wrap;
	}
	.flexbox-middle-sm {
	  align-items: center;
	}
	.flexbox-center-sm {
		-webkit-justify-content: center;
		justify-content: center;
	}
	.flexbox-center-middle-sm {
		-webkit-justify-content: center;
		justify-content: center;
		align-items: center;
	}
	.flexbox-right-sm {
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.flexbox-right-middle-sm {
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		align-items: center;
	}
	.flexbox-nowrap-sm {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
	}
	.fixed-top-sm,
	.fixed-bottom-sm {
		position: fixed !important;
		z-index: 1020;
		transition-property: top,bottom;
		transition-duration: 300ms;
		transition-delay: 0s;
		transition-timing-function: ease;
	}
	.fixed-bottom-sm {
		bottom: 0px !important;
	}
	.fixed-page-top-right-sm {
		position: fixed !important;
		z-index: 1030;
		top: 0px !important;
		right: 0px !important;
	}
	.overflow-hidden-sm {
		overflow: hidden !important;
	}
	.overflow-x-auto-sm {
		overflow-x: auto !important;
	}
	.relative-center-sm {
		position: relative !important;
		margin-left: auto !important;;
		margin-right: auto !important;
	}
	.relative-middle-sm {
		position: relative !important;
	}
	.scrollbar-hidden-sm {
		-ms-overflow-style:none;
		scrollbar-width: none;
	}
	.scrollbar-hidden-sm::-webkit-scrollbar {
		display: none;
		-webkit-appearance: none;
	}
	.scroll-fullheight-visible-sm {
		display: none;
	}
	.sticky-top-sm,
	.sticky-bottom-sm {
		position: sticky !important;
		position: -webkit-sticky !important;
	}
	.text-nowrap-sm {
		white-space: nowrap;
	}
	.text-ellipsis-sm {
		width:100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media screen and (max-width: 767px) {
	.absolute-center-xs {
		position: absolute !important;
		left: 0px !important;
		right: 0px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.absolute-top-xs {
		position: absolute !important;
		top: 0px !important;
		bottom: unset !important;
	}
	.absolute-middle-xs {
		position: absolute !important;
	}
	.absolute-bottom-xs {
		position: absolute !important;
		bottom: 0px !important;
		top: unset !important;
	}
	.absolute-right-top-xs {
		position: absolute !important;
		top: 0px !important;
		right: 0px !important;
		bottom: unset !important;
		left: unset !important;
	}
	.absolute-right-bottom-xs {
		position: absolute !important;
		right: 0px !important;
		bottom: 0px !important;
	}
	.block-xs {
		display: block !important;
	}
	.btn-learn-more-xs {
		position: absolute !important;
		bottom: 0px;
		left: 0px;
		width: 100%;
		background: linear-gradient(180deg, rgb(255, 255, 255,0) 0%, rgb(255, 255, 255,1) 60%);
		transition: bottom 0.2s;
		cursor: pointer;
	}
	.clear-both-xs {
		clear: both;
	}
	.display-block-xs {
		display: block !important;
	}
	.display-inline-block-xs {
		display: inline-block !important;
	}
	.fixed-top-xs,
	.fixed-bottom-xs {
		position: fixed !important;
		z-index: 1020;
		transition-property: top,bottom;
		transition-duration: 300ms;
		transition-delay: 0s;
		transition-timing-function: ease;
	}
	.fixed-bottom-xs {
		bottom: 0px !important;
	}
	.fixed-page-top-right-xs {
		position: fixed !important;
		z-index: 1030;
		top: 0px !important;
		right: 0px !important;
	}
	.flexbox-xs,
	.flexbox-middle-xs,
	.flexbox-center-xs,
	.flexbox-center-middle-xs,
	.flexbox-right-xs,
	.flexbox-right-middle-xs {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		flex-wrap: wrap;
	}
	.flexbox-middle-xs {
		align-items: center;
	}
	.flexbox-center-xs {
		-webkit-justify-content: center;
		justify-content: center;
	}
	.flexbox-center-middle-xs {
		-webkit-justify-content: center;
		justify-content: center;
		align-items: center;
	}
	.flexbox-right-xs {
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.flexbox-right-middle-xs {
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		align-items: center;
	}
	.flexbox-nowrap-xs {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		flex-wrap: nowrap　!important;
		overflow-x: auto !important;
	}
	.overflow-hidden-xs {
		overflow: hidden !important;
	}
	.overflow-x-auto-xs {
		overflow-x: auto !important;
	}
	.relative-center-xs {
		position: relative !important;
		left: 0px !important;
		right:0px !important;
		margin-left: auto !important;;
		margin-right: auto !important;;
	}
	.relative-middle-xs {
		position: relative !important;
	}
	.scrollbar-hidden-xs {
		-ms-overflow-style:none;
		scrollbar-width: none;
	}
	.scrollbar-hidden-xs::-webkit-scrollbar {
		display: none;
		-webkit-appearance: none;
	}
	.scroll-fullheight-visible-xs {
		display: none;
	}
	.sticky-top-xs,
	.sticky-bottom-xs {
		position: sticky !important;
		position: -webkit-sticky !important;
	}
	.text-center-xs {
		text-align: center;
	}
	.text-left-xs {
		text-align: left;
	}
	.text-right-xs {
		text-align: right;
	}
	.text-nowrap-xs {
		white-space: nowrap;
	}
	.text-ellipsis-xs {
		width:100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}
