@charset "UTF-8";
/*cat: textile*/
.align-c {
	text-align: center;
}
.align-l {
	text-align: left;
}
.align-r {
	text-align: right;
}

/*###################################*/
/*cat: element*/
select,button {
	vertical-align: middle;	
}
label {
	cursor: pointer;
	vertical-align: middle;	
}
label input[type="checkbox"],
label input[type="radio"] {
	margin-right: 0.2em;
}
input[type="text"] {
	vertical-align: middle;
}
input[type="checkbox"],
input[type="radio"],
input[type="file"]
input[type="button"],
input[type="submit"],
button {
	cursor: pointer;
}
textarea {
	risize: vertical;
}
fieldset {
	border: none;
}
legend {
	display: block;
}
button {
	outline: 0;
	font-size: inherit;
	cursor: pointer;
}
ins, del {
	text-decoration: none;
}
details {
	
}
details > summary {
	cursor: pointer;
	outline: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
sup {
	margin: 0 0.2em;
}

/*##############################*/
/*cat: meta*/
.hidden {
	display: none;
}
.meta-node {
	display: none;
	visibility: hidden;
}

/*##############################*/
/*cat: behavire*/
.disable-select,
.user-select-none {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.disable-event {
	cursor: default;
}
.touch-scroll {
	-webkit-overflow-scrolling : touch;
}

/*##############################*/
/*cat: bind wrap*/
.bind {
	margin-left: auto;
	margin-right: auto;
}

/*cat: layout*/
.flexbox {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*clearfix*/
.cfb {
	clear: both;
}
.cfix:before,.cfix:after {
    content: " ";
    display: table;
}
.cfix:after {
	clear: both;
}
.cfix {
	zoom:1;
}
@media only screen and (min-width:800px) {
	.cfix-wide:before,.cfix-wide:after {
	    content: " ";
	    display: table;
	}
	.cfix-wide:after {
		clear: both;
	}
	.cfix-wide {
		zoom:1;
	}
}

/*divide*/
.div-L {
	width: 50%;
	float: left;
}
.div-R {
	width: 50%;
	float: right;
}
@media only screen and (max-width:799px) {
	/*divide*/
	.cfix-wide .div-L,
	.cfix-wide .div-R {
		width: auto;
		float: none;
	}
}

/*##############################*/
/*cat: image*/
img.fullwide,
canvas.fullwide {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.object-fit-image {
	position: relative;
	z-index: 0;
}
	.object-fit {
		object-fit: cover;
		object-position: center;
	}
	.object-fit-image > img,
	.object-fit-image .object-fit {
		position: absolute;
		z-index: 0;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.object-fit-image::before {
		content: "";
		z-index: 1;
		display: block;
		padding-top: 100%;
	}

/*##############################*/
/*cat: responsive*/
@media only screen and (max-width:639px) {
	.only-wide {
		display: none;
	}
}
@media only screen and (min-width:640px) and (max-width:1023px) {
	.only-smp {
		display: none;
	}
}
@media screen and (min-width:1024px) {
	.only-smp {
		display: none;
	}
}

/*##############################*/
/*cat: animation*/
.efx.fadein {
    animation-name: fadeIn;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
}
.efx.fadeout {
    animation-name: fadeOut;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1.0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1.0;
	}
	100% {
		opacity: 0;
	}
}

