/*--------------------------------
header
--------------------------------*/
header {
	background-color: #20B2D3;
	margin: 0px;
	overflow: hidden;
}

/*--------------------------------
body
--------------------------------*/
.main {}

.date {}

.category {
	background: #20B2D3;
	color: #FFF;
	padding: 0 10px 2px;
	min-width: 8rem;
	border-radius: 3px;
	text-align: center;
}

/***************************
	MAIN_PAGE_CATEGORY
***************************/
.tabs {
	margin-top: 50px;
	padding-bottom: 40px;
	margin: 0 auto;
}

.page-numbers,
.tab_item {
	display: inline-block;
	background: #fff;
	background-size: 210% 50%;
	font-weight: bold;
	line-height: 1.5;
	color: #20B2D3;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	transition: .5s;
	border: 1px solid #20B2D3;
	border-radius: 8px;
	margin-right: 15px;
}

.tab_item:hover,
.active {
	background: #20B2D3;
	color: #FFF;
}

.tab_content {
	display: none;
	padding-top: 40px;
	clear: both;
	overflow: hidden;
	opacity: 0;
	transition: .3s;
}

.page-numbers.current,
.tabs input:checked+label {
	background: #20B2D3;
	color: #FFF;
	border: 1px solid #FFF;
}

input[name="tab_item"] {
	display: none;
	cursor: pointer;
	transition: .3s;
	opacity: 0;
}

#programming,
#item1,
#item2,
#item3,
#item4 {
	transition: .3s;
}

#programming:checked~#programming_content,
#item1:checked~#item1_content,
#item2:checked~#item2_content,
#item3:checked~#item3_content,
#item4:checked~#item4_content {
	transition: .3s;
	display: block;
	opacity: 1;
}

/* CONTENT01 ******************/
.content1 {
	padding-top: 150px;
	padding-bottom: 150px;
}

.newsList li,
.newsList .col-md-12 {
	border-bottom: 1px solid rgb(200 200 200/90%);
	padding: 1rem;
	margin-bottom: 1rem;
}

.newsList li a,
.newsList .col-md-12 a {
	text-decoration: none;
	color: #FFF;
}

.newsList li a div,
.newsList .col-md-12 a div {
	width: calc(100% - 120px);
}

.newsList li a .ttl,
.newsList .col-md-12 a .ttl {
	font-weight: bold;
}

.more,
.readBtn {
	background: #20B2D3;
	box-shadow: 10px 10px 10px rgb(0 0 0/10%);
	border: 1px solid #20B2D3;
	color: #fff;
	width: 121px;
	padding: 10px 20px;
	transition: .5s;
	text-decoration: none;
	text-align: center;
}

.more:hover,
.readBtn:hover {
	background: #FFF;
	color: #20B2D3;
	border: 1px solid #20B2D3;
}

/*--------------------------------
WP-CONTENT
--------------------------------*/
/* PAGENATION ******************/
.page-numbers {
	background: #20B2D3;
	border-radius: 5px;
	color: #FFF;
	padding: 15px;
	text-decoration: none;
	transition: .5s;
}

.page-numbers:hover {
	opacity: 0.5;
	color: #FFF;
}

.page-numbers.current {
	background: #999;
	color: #000;
}

.page-numbers.current:hover {
	opacity: 1;
}

.page-numbers+.page-numbers {
	margin-left: 10px;
}

/*--------------------------------
PARALUX
--------------------------------*/
.para01,
.para02,
.para03,
.para04 {
	position: absolute;
	z-index: 5;
}

.para01 {
	top: 0;
	right: -5%;
	max-width: 200px;
	margin: auto;
}

.para02 {
	top: 0;
	right: -15%;
	max-width: 200px;
	margin: auto;
}

.para03 {
	bottom: 0;
	left: -5%;
	max-width: 200px;
	margin: auto;
}

.para04 {
	bottom: 0;
	left: -15%;
	max-width: 200px;
	margin: auto;
}

/*--------------------------------
media
--------------------------------*/

@media (max-width: 991px) {

	/** CONTENT3 **/
	/** Paralux ************************/
	.para01 {
		max-width: 160px;
	}

	.para02 {
		max-width: 130px;
	}
}

@media (max-width: 767px) {
	header {
		padding-top: 2rem;
	}

	/** CONTENT1 **/
	.newsList li a {
		flex-wrap: wrap;
	}

	.newsList li a div,
	.newsList .col-md-12 a div {
		width: 100% !important;
		margin-bottom: .5rem;
	}

	.tab_item {
		margin-bottom: 15px;
	}

	.tabs .d-flex {
		flex-wrap: wrap;
	}

	.content1 {
		padding-top: 45px;
	}

	/** Paralux ************************/
	.para01 {
		right: -20%;
	}

	.para02 {
		right: -20%;
	}
}

@media (max-width: 575px) {

	/** CONTENT1 ************************/
	/** Paralux ************************/
	.para01 {}

	.para02 {
		right: -20%;
	}

	.para03 {
		left: -50%;
	}

	.para04 {
		left: -35%;
	}
}

/***********************************/
.sa {
	opacity: 0;
	transition: all .5s ease;
}

.sa.show {
	opacity: 1;
	transform: none;
}

.sa--lr {
	transform: translate(-100px, 0);
}

.sa--rl {
	transform: translate(100px, 0);
}

.sa--up {
	transform: translate(0, 100px);
}

.sa--down {
	transform: translate(0, -100px);
}

.sa--scaleUp {
	transform: scale(.5);
}

.sa--scaleDown {
	transform: scale(1.5);
}

.sa--rotateL {
	transform: rotate(180deg);
}

.sa--rotateR {
	transform: rotate(-180deg);
}