
/* 
XCh·ι^uΨθΦ¦
https://codepen.io/kusamura_mono/pen/BaNQPQR
 */



.tab-wrap {
	background: White;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 0 0 20px;
}

.tab-label {
	color: Gray;
	cursor: pointer;
	flex: 1;
	font-weight: bold;
	order: -1;
	padding: 12px 24px;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.tab-label:hover {
	background: rgba(0, 191, 255,.1);
}

.tab-switch:checked + .tab-label {
	color: DeepSkyBlue;
}

.tab-label::after {
	background: DeepSkyBlue;
	bottom: 0;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}

.tab-switch:checked ~ .tab-label::after {
	transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
	opacity: 1;
	transform: translateX(0);
}

.tab-content {
	height:0;
	opacity:0;
	padding: 0 0px;
	pointer-events:none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked ~ .tab-content {
	transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events:auto;
	transform: translateX(0);
}

.tab-wrap::after {
	content: '';
	height: 20px;
	order: -1;
	width: 100%;
}

.tab-switch {
	display: none;
}
.tab-content tr{
}
.tab-content tr th{
}
.tab-content tr td{
	margin-bottom: 0px;
}
.tab-content tr th h4{
}
.tab-content tr td p{
}
#job_openings #content #job_openings-txt h3,
.tab-content tr th h4,
.tab-content tr th h3,
.tab-content tr td h4,
.tab-content tr td p{
	font-size: small !important;
	margin: 0em 0;
}

.sold_out{
	min-height: 60vh;
}
.sold_out h2{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; /* cϋό΅¦iSafaripj */
	align-items: center; /* cϋό΅¦ */
	-webkit-justify-content: center; /* ‘ϋό΅¦iSafaripj */
	justify-content: center; /* ‘ϋό΅¦ */
	margin-right: 40%;
	margin-top: 5em;
	width: 100%;
}