@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,700|Roboto:400,700&display=swap');

/* Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	 -webkit-text-size-adjust:none;
}
body {
	line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 0;
	padding: 0;
}
ol, ul, nav {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
b {
	font-weight: 300;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img {
	border: none;
}
img {
	display: block;
}
a {
	color: #f00;
	text-decoration: none;
}
a:hover {
}

/* common 
------------------------------------------------------------------------ */
* { -webkit-text-size-adjust: none; }
.smooth {
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
}
.smooth:hover {
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
}
.smooth-sl {
	transition: all 120ms ease-in;
	-webkit-transition: all 120ms ease-in;
	-moz-transition: all 120ms ease-in;
	-o-transition: all 120ms ease-in;
}
.smooth-sl:hover {
	transition: all 120ms ease-in;
	-webkit-transition: all 120ms ease-in;
	-moz-transition: all 120ms ease-in;
	-o-transition: all 120ms ease-in;
}
.ctw {
	transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);
	-moz-transform: translate(-50%, 0%);
	-o-transform: translate(-50%, 0%);
}
.cth {
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
}
.cent {
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
*:focus {
	outline: none;
}
.zero {
	font-size: 0;
	letter-spacing: 0;
	word-spacing: 0;
}
textarea, input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
/* common 
------------------------------------------------------------------------ */
figure {
	width: 100%;
	margin: 0;
	border: 1px solid #ddd;
	box-sizing: border-box;
}
figure img {
	width: 100%;
	height: auto;
}
.btn {
	text-transform: uppercase;
	text-indent: 25px;
	display: block;
	width: 228px;
	font-weight: 300;
	height: 52px;
	line-height: 54px;
	background-color: #00b8ff;
	background-image: url('images/arrow-down.svg');
	background-position: right 24px center;
	background-size: 20px;
	background-repeat: no-repeat;
	color: #fff;
}
/* layout
------------------------------------------------------------------------ */
html {
	width: 100%;
}
body {
	width: 100%;
	position: relative;
	box-sizing: border-box;
	-webkit-text-size-adjust:none;
	text-rendering: optimizeLegibility;
	overflow: auto;
	letter-spacing: -0.03em;
	font-size: 18px;
	font-weight: 400;
	padding: 40px;
	color: #111;
	font-family:
		'Roboto',
		'Noto Sans KR',
		sans-serif;
}
.fair {
	background-color: #ff543f;
}
.forum {
	background-color: #257ce1;
}
header {
}
header.chg #hamberger span {
	background-color: #00B8FF;
}
header #home {
	width: 32px;
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 9;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
}
header #info {
	width: 32px;
	position: fixed;
	top: 40px;
	right: 90px;
	z-index: 9;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
}
#nav {
	width: 50%;
	height: 100vh;
	top: 0%;
	left: 101%;
	box-sizing: border-box;
	background-color: #ffc503;
	position: fixed;
	overflow: hidden;
	z-index: 9;
}
#dark {
	display: none;
	width: 100%;
	height: 100vh;
	top: 0%;
	left: 0%;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.4);
	z-index: 8;
	position: fixed;
}
#dark.dark {
	display: block;
}
#nav img {
	position: absolute;
	left: 50%;
	bottom: -100vh;

	-webkit-animation-name: yell; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 3s; /* Safari 4.0 - 8.0 */
	animation-timing-function: ease;
	animation-name: yell;
	animation-iteration-count: infinite;
	animation-duration: 3s;
}
@-webkit-keyframes yell {
	0% {
		bottom: -70vh;
	}
	50% {
		bottom: -15vh;
	}
	100% {
		bottom: -15vh;
	}
}
@keyframes yell {
	0% {
		bottom: -70vh;
	}
	50% {
		bottom: -15vh;
	}
	100% {
		bottom: -17vh;
	}
}
#nav div {
	position: absolute;
	bottom: 32px;
	left: 32px;
	color: #fff;
}
#nav.open-menu {
	left: 50%;
	opacity: 1 !important;
	visibility: visible !important;
}
#gnb {
	margin-top: 40px;
	padding: 0 40px;
}
#gnb li {
	margin-bottom: 18px;
}
#gnb li:first-child {
	margin-left: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 18px;
}
#gnb li a {
	font-size: 28px;
	color: #000;
	letter-spacing: -0.03em;
}
#gnb li a span {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
#hamberger {
	width: 32px;
	height: 19px;
	position: fixed;
	z-index: 10;
	top: 40px;
	right: 40px;
	cursor: pointer;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
#hamberger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #111;
	border-radius: 3px;
	opacity: 1;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 200ms ease-in-out;
	-moz-transition: 200ms ease-in-out;
	-o-transition: 200ms ease-in-out;
	transition: 200ms ease-in-out;
}
#hamberger span:nth-child(1) {
	top: 0px;
}
#hamberger span:nth-child(2) {
	top: calc(50% - 2px);
}
#hamberger span:nth-child(3) {
	top: auto;
	bottom: 0;
}
#hamberger:hover span {
}
#hamberger.open span:nth-child(1) {
	top: calc(50% - 1px);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#hamberger.open span:nth-child(2) {
	visibility: hidden;
	opacity: 0;
}
#hamberger.open span:nth-child(3) {
	top: calc(50% - 1px);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* main */
.home {
	padding: 0;
}
#main-section {
	width: 100%;
	height: 100vh;
}
#main-section section {
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background-color: #ff543f;
}
.mbo {
	display: none;
}
#main-section section#main-forum {
	left: 50%;
	background-color: #1182e6;
}
#main-section section {
	overflow: hidden;
}
#main-section section h1 b {
	font-size: 44px;
	letter-spacing: -0.04em;
	margin-right: 10px;
	color: #000;
	font-weight: 300;
}
#main-section section h1 {
	margin-top: 108px;
	margin-left: 40px;
}
#main-section section a {
	display: block;
}
#main-section section span {
	background-color: #242424;
	display: inline-block;
	border-radius: 4px;
	padding: 4px 16px;
	color: #fff;
	letter-spacing: 0.03em;
	margin-top: 10px;
	margin-left: 40px;
	font-size: 15px;
}
#main-section section img {
	position: absolute;
	left: 50%;
	bottom: -20vh;

	-webkit-animation-name: fair; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
	animation-name: fair;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-duration: 4s;
}
@-webkit-keyframes fair {
	0% {
		bottom: -21vh;
	}
	50% {
		bottom: -16vh;
	}
	100% {
		bottom: -21vh;
	}
}
@keyframes fair {
	0% {
		bottom: -21vh;
	}
	50% {
		bottom: -16vh;
	}
	100% {
		bottom: -21vh;
	}
}
#main-section #main-forum img {
	position: absolute;
	left: 50%;
	bottom: -21vh;

	-webkit-animation-name: forum; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 3s; /* Safari 4.0 - 8.0 */
	animation-timing-function: ease;
	animation-name: forum;
	animation-iteration-count: infinite;
	animation-duration: 3s;
}
@-webkit-keyframes forum {
	0% {
		bottom: -21vh;
	}
	50% {
		bottom: -16vh;
	}
	100% {
		bottom: -21vh;
	}
}
@keyframes forum {
	0% {
		bottom: -21vh;
	}
	50% {
		bottom: -16vh;
	}
	100% {
		bottom: -21vh;
	}
}
#main-section #main-fair img {
}
#main-section section h1 {
	color: #fff;
	font-size: 46px;
	font-weight: 300;
	line-height: 1.2;
	text-transform: uppercase;
}
/* forum */
#forum-content .list li.s h3 {
	text-transform: uppercase;
}
#forum-content .list li.s {
	box-sizing: border-box;
	background-color: #fffcf4;
	border: 1px solid #757575;
	border-radius: 4px;
	color: #111;
	display: block;
	height: 180px;
	padding: 22px;
	position: relative;
}
#forum-content .list a.mini {
	position: absolute;
	bottom: 20px;
	right: 190px;
	width: 160px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px;
	font-size: 14px;
	padding: 0 10px;
}
#forum-content .list a.mini:last-child {
	right: 20px;
}
.forum-title {
	width: 50%;
	float: left;
	overflow: auto;
	padding-bottom: 30px;
}
.forum-title h6 {
	text-align: center;
	font-size: 18px;
	border: 1px solid #111;
	padding: 10px;
	width: 100px;
	margin-top: 10px;
}
.forum-title table {
	width: 100%;
	margin-top: 50px;
}
.forum-title table tr td {
	font-size: 16px;
	line-height: 1.6;
}
.forum-title table tr td:first-child {
	width: 10%;
	font-weight: 700;
}
.forum-title article {
	background-color: #7ab8ff;
	padding: 20px;
	margin-top: 30px;
}
.forum-title article h5 {
	color: #111;
	margin: 0;
	font-size: 16px;
	margin-bottom: 4px;
}
.forum-title article p {
	color: #111;
	margin-top: 0 !important;
	font-size: 16px !important;
}
.forum-title h5 {
	font-size: 18px;
	margin-top: 20px;
	line-height: 1.5;
	font-weight: 700;
}
.forum-content {
	width: 45%;
	float: right;
	margin-top: 54px;
}
.forum-content article {
	background-color: #fffdf8;
	height: 0;
	padding: 24px;
	box-sizing: border-box;
	padding-bottom: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-size: 70%;
	background-position: center bottom 40%;
}
.forum-content article.y {
	margin-bottom: 20px;
	padding-bottom: 120%;
	background-position: center bottom 60%;
}
.forum-content article h2 {
	font-size: 30px;
	letter-spacing: -0.04em;
}
.forum-content article div {
	position: absolute;
	bottom: 20px;
	font-size: 15px;
	line-height: 1.5;
	left: 0;
	padding: 0 24px;
}
.forum-content article div h4 {
	margin-bottom: 4px;
	font-weight: 700;
}
.forum-content article h2 span {
	font-size: 15px;
	letter-spacing: -0.04em;
	position: relative;
	margin-left: 10px;
	padding-left: 10px;
}
.forum-content article h2 span::before {
	content: "";
	background-image: url(images/dot-b.png);
	background-repeat: no-repeat;
	background-size: 6px;
	width: 6px;
	height: 6px;
	background-position: left center;
	position: absolute;
	left: 0;
	top: 10px;
}
.schedule-cont h3 {
	background-color: #257ce1 !important;
	width: 100px !important;
}
.schedule-cont h4 {
	display: inline-block;
	margin-bottom: 16px;
	margin-right: 16px;
}
.schedule-cont h4.i {
	color: #257ce1 !important;
	display: block;
	margin: 0;
	font-weight: 700;
}
.schedule-cont h4 span {
	margin-right: 10px;
	font-weight: 700;
}
.schedule-cont table {
	border-collapse: separate;
	border-spacing: 10px 0em;
}
.schedule-cont table tbody td:nth-child(3n+2) {
	width: 30%;
}
.schedule-cont table tbody td {
	line-height: 1.6;
}
.schedule-cont table tbody td span {
	vertical-align: middle;
	margin-left: 20px;
	position: relative;
	padding-left: 20px;
}
.schedule-cont table tbody td span::before {
	content: "";
	background-image: url(images/dot-b.png);
	background-repeat: no-repeat;
	background-size: 6px;
	width: 6px;
	height: 6px;
	background-position: left center;
	position: absolute;
	left: 0;
	top: 8px;
}
.schedule-cont table a {
	display: inline-block;
	margin-top: 4px;
	font-size: 13px;
	color: #777;
	border: 1px solid #ddd;
	padding: 8px;
	padding-right: 30px;
	background-image: url(images/arrow.svg);
	background-repeat: no-repeat;
	background-size: 5px;
	background-position: right 10px center;
}

/* fair */
#forum-content, 
#fair-content {
	margin-top: 50px;
}
/* title */
#title {
	margin-top: 54px;
}
#title h1 b {
	font-size: 48px;
	display: block;
	letter-spacing: -0.04em;
	color: #000;
	font-weight: 300;
}
#title h1 {
	font-size: 34px;
	color: #fff;
	font-weight: 300;
	line-height: 1.2;
	text-transform: uppercase;
}
#title p {
	font-size: 18px;
	letter-spacing: -0.05em;
	line-height: 1.5;
	margin-top: 30px;
}
.title-2 h1 {
	width: 50%;
	display: inline-block;
}
.title-2 p {
	box-sizing: border-box;
	padding-left: 9px;
	width: 42%;
	display: inline-block;
	vertical-align: top;
	margin-top: 0 !important;
}
#gocb {
	box-sizing: border-box;
	padding-left: 9px;
	width: 50%;
	display: inline-block;
	vertical-align: top;
	margin-top: 0 !important;
}
.title-2 h1 b {
	color: #111;
}
.title-2 h1 {
	color: #fefefe;
}
.post-wrap {
	box-sizing: border-box;
	padding: 48px 30px;
	background-color: #fffcf4;
	border-radius: 4px;
}
.post-wrap .c-post {
	border-top: 1px solid #ccc;
	margin-top: 32px;
	padding-top: 32px;
}
.long img.c-logo {
	max-width: 300px !important;
}
.post-wrap img.c-logo {
	max-height: 100px;
	max-width: 200px;
	width: 100%;
	display: block;
	margin: 0 auto;
}
.post-wrap article {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 10px);
}
.post-wrap article:last-child {
	margin-left: 20px;
	margin-bottom: 0 !important;
}
.post-wrap article h3 {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-top: 36px;
	margin-bottom: 6px;
}
.post-wrap article h3:first-child {
	margin-top: 0;
}
.post-wrap article p {
	font-size: 16px;
	letter-spacing: -0.04em;
	line-height: 1.7;
}
.post-wrap article ul li {
	font-size: 16px;
	letter-spacing: -0.04em;
	line-height: 1.8;
	position: relative;
	padding-left: 12px;
	word-break: keep-all;
}
.post-wrap article ul li::before {
	content: "";
	background-image: url(images/dot.png);
	background-repeat: no-repeat;
	background-size: 5px;
	width: 5px;
	height: 5px;
	background-position: left center;
	position: absolute;
	top: 11px;
	left: 0;
}
#coaching-content .post-wrap article ul li ul li::before {
	content: "";
}
.post-wrap article ul li ul li::before {
	content: "-";
	background-image: none;
	top: 0;
	width: auto;
	height: auto;
}
#company-content {
	margin-top: 40px;
	margin-bottom: 20px;
}
/* about */
.about {
	background-color: #ffc412;
}
#about-content {
	margin-top: 300px;
}
#about-content section {
	padding: 50px 0px;
	border-bottom: 1px solid #ddd;
}
#about-content p b {
	font-weight: 700;
}
#about-content p.center {
	margin: 40px 0;
}
#about-content p {
	font-size: 22px;
	text-align: center;
	line-height: 1.8;
}
#about-content div {
	margin-top: 40px;
	text-align: center;
}
#about-content div span {
	display: inline-block;
	vertical-align: top;
}
#about-content div img {
	display: inline-block;
	vertical-align: top;
	height: 50px;
	width: auto;
}
#about-content ul.list {
	margin-top: 20px;
}
#about-content ul.list a {
	text-transform: uppercase;
}
#about-content ul.list h2 {
	font-size: 36px;
}
#about-content ul.list span {
	background-color: #242424;
	display: inline-block;
	border-radius: 4px;
	padding: 4px 16px;
	color: #fff;
	letter-spacing: 0.03em;
	margin-top: 10px;
	font-size: 15px;
}
#aboutimg {
	position: absolute;
	left: 50%;
	top: -50px;
	z-index: -1;
}
/* common */
ul.list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
ul.list-2 li {
	width: calc(50% - 9px);
	margin-bottom: 18px;
}
ul.list-3 li {
	margin-bottom: 12px;
	box-sizing: border-box;
	width: calc(33% - 6px);
}
ul.list-2 li a {
	width: 100%;
}
ul.list li a {
	box-sizing: border-box;
	background-color: #fffcf4;
	border: 1px solid #757575;
	border-radius: 4px;
	color: #111;
	display: block;
	height: 180px;
	padding: 22px;
	background-image: url(images/arrow.svg);
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: right 22px center;
}
ul.list li a h2 {
	font-size: 28px;
	letter-spacing: -0.04em;
	line-height: 1.2;
}
ul.list li a h3 {
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
ul.list-narrow li a {
	height: 80px;
}
ul.list-narrow li a span {
	font-size: 16px;
	font-weight: 700;
	color: #fc5340;
	line-height: 36px;
	vertical-align: top;
	margin-right: 13px;
	display: inline-block;
}
/* footer */
footer {
	display: none;
}
footer #logo-footer {
	position: absolute;
	top: 30px;
	width: 118px;
}
footer #footer-inner {
	height: 100px;
	position: relative;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	border-top: 1px solid #ddd;
}
footer copyright {
	position: absolute;
	top: 60px;
	right: 0;
	color: #aaa;
	font-size: 14px;
}
footer ul {
	position: absolute;
	top: 30px;
	right: 0;
}
footer ul li {
	display: inline-block;
	vertical-align: top;
	margin-left: 15px;
}
footer ul li:first-child {
	margin-left: 0;
}
footer ul li a {
	font-size: 16px;
	color: #aaa;
}
footer ul li p {
	font-size: 12px;
	color: #aaa;
}

#cy {
	width: calc(100% - 80px);
	height: 440px;
	background-color: #fafaf3;
	position: fixed;
	border-radius: 4px;
	z-index: 1;
	border: 1px solid #757575;
	bottom: 40px;
	left: 40px;
}
#notice h2 {
	font-size: 32px;
	letter-spacing: -0.04em;
	text-align: center;
	font-weight: 700;
	margin-bottom: 32px;
}
#notice ul {
	padding: 0 50px;
}
#notice ul li a {
	display: inline-block;
	margin-top: 4px;
	font-size: 13px;
	color: #777;
	border: 1px solid #ddd;
	padding: 4px;
	padding-right: 30px;
	margin-left: 10px;
	background-image: url(images/arrow.svg);
	background-repeat: no-repeat;
	background-size: 5px;
	background-position: right 10px center;
}
#notice h3 {
	background-color: #242424;
	display: inline-block;
	border-radius: 4px;
	padding: 4px 16px;
	color: #fff;
	letter-spacing: 0.03em;
	margin-top: 10px;
	margin-bottom: 4px;
	margin-left: 50px;
	font-size: 14px;
}
#notice h3#r {
	background-color: #fc5340;
}
#notice h3#bb {
	margin-top: 20px;
	background-color: #216cd2;
}
#notice ul li {
	font-size: 18px;
	letter-spacing: -0.04em;
	line-height: 1.8;
	position: relative;
	padding-left: 12px;
}
#notice ul li::before {
	content: "";
	background-image: url(images/dot.png);
	background-repeat: no-repeat;
	background-size: 5px;
	width: 5px;
	height: 5px;
	background-position: left center;
	position: absolute;
	top: 11px;
	left: 0;
}
span#ty {
	margin-left: 36px;
}
#notice, 
#ability {
	display: none;
	background-color: rgba(0,0,0,0.8);
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 11;
	top: 0;
	left: 0;
}
.tablemeet ul.list li a h2 {
	font-size: 24px;
}
#notice #cont, 
#ability #cont {
	position: absolute;
	top: 34px;
	left: 40px;
	line-height: 1.6;
	width: calc(100% - 70px);
	background-color: #fffcf4;
	-webkit-box-shadow: 0px 3px 15px -6px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 3px 15px -6px rgba(0,0,0,0.7);
	box-shadow: 0px 3px 15px -6px rgba(0,0,0,0.7);
	padding: 40px;
	box-sizing: border-box;
	font-size: 16px;
	letter-spacing: -0.04em;
	z-index: 12;
}
#notice hr {
	margin: 40px 0 !important;
}
#notice #cont {
	padding: 40px 40px 60px;
}
#p-close {
	width: 24px;
	height: 19px;
	position: absolute;
	z-index: 13;
	top: 60px;
	right: 50px;
	cursor: pointer;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
#p-close span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #666;
	border-radius: 3px;
	opacity: 1;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 200ms ease-in-out;
	-moz-transition: 200ms ease-in-out;
	-o-transition: 200ms ease-in-out;
	transition: 200ms ease-in-out;
}
#p-close span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#p-close span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#ability ul li ul {
}
#ability .desc-body h2 {
	display: none;
	font-size: 17px;
	margin-bottom: 4px;
	font-weight: bold;
}
#ability hr {
	margin: 10px 0;
	height: 1px;
	border: none;
	background-color: #ccc;
}
.desc-head h1 {
	font-size: 27px;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
	line-height: 1.3;
}
#ability #cont {
	height: 700px;
	overflow-y: scroll;
}
#cont h5.bg {
	background-color: #242424;
	display: inline-block;
	border-radius: 4px;
	padding: 4px 16px;
	color: #fff;
	font-size: 13px;
	margin-right: 10px;
}
#cont .desc-head h5.bg span {
	font-weight: 700;
	margin-right: 10px;
}
#cont .desc-head div {
	margin-top: 36px;
}	
#cont hr {
	margin: 24px 0;
	height: 1px;
	border: none;
	background-color: #ccc;
}
#cont .desc-head span.btnc:last-child {
	background-color: #111;
}
#cont .desc-head span.btnc {
	color: #fff;
	display: inline-block;
	background-color: #f0463c;
	text-align: center;
	border-radius: 25px;
	width: 25px;
	height: 25px;
	margin-right: 5px;
}
#cont .desc-head a.link {
	border: 1px solid #aaa;
	color: #555;
	font-size: 14px;
	letter-spacing: -0.03em;
	margin-left: 10px;
	padding: 4px 8px;
}
#cont .desc-body {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#cont .desc-body div {
	width: 100%;
	clear:both;
	margin-top: 20px;
}
#cont .desc-body div b {
	margin-top: 4px;
	display: block;
	font-size: 14px;
}
#cont .desc-body article {
	width: calc(50% - 9px);
}
#cont .desc-body article ul li, 
#cont .desc-body article ul li ul li, 
#cont .desc-body article ul li ul li ul li {
	position: relative;
	padding-left: 12px;
}
#cont .desc-body article ul li {
	font-size: 15px;
	margin-bottom: 10px;
}
#cont .desc-body article ul li ul li, 
#cont .desc-body article ul li ul li ul li {
	margin-bottom: 0;
	word-break: keep-all;
}
#cont .desc-body article ul li::before {
	content: "";
	background-image: url(images/dot.png);
	background-repeat: no-repeat;
	background-size: 5px;
	width: 5px;
	height: 5px;
	background-position: left center;
	color: #333;
	position: absolute;
	left: 0;
	top: 10px;
}
#cont .desc-body article ul li ul li::before {
	content: "";
	background-image: url(images/dot2.png);
	background-repeat: no-repeat;
	background-size: 5px;
	background-position: left center;
	position: absolute;
	left: 0;
}
#cont .desc-body article ul li ul li ul li::before {
	content: "-";
	position: absolute;
	left: 0;
}
#cont .desc-body article h3 {
	font-size: 16px;
	letter-spacing: 0.02em;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}
#list {
	position: fixed;
	z-index: 7;
	top: 100%;
	left: 0%;
	width: 100%;
	height: calc(100vh - 190px);
	overflow: scroll;
	box-sizing: border-box;
	background-color: #fffdf8;
	padding: 3vw;
}
#list.open {
	top: 190px;
}
#listopen {
	position: absolute;
	right: 40px;
	top: 100px;
	background-color: #fffdf8;
	border: 1px solid #757575;
	z-index: 8;
	color: #000;
	padding: 10px;

	width: 16px;
	height: 16px;
}
#listopen span i { 
	top: calc(50% - 0px);
	position: absolute;
	left: calc(50% - 8px);
	background-color: #0b2243;
	width: 10px;
	height: 2px;
	display: block;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: all 120ms ease-in;
	-webkit-transition: all 120ms ease-in;
	-moz-transition: all 120ms ease-in;
	-o-transition: all 120ms ease-in;
}
#listopen span i:last-child {
	top: calc(50% + 0px);
	left: calc(50% - 2px);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#listopen.act span i { 
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#listopen.act span i:last-child {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#list ul {
	padding: 3vw 0;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#list li {
	margin-bottom: 12px;
	box-sizing: border-box;
	width: calc(33% - 6px);
}
#list li a {
	font-size: 15px;
	letter-spacing: -0.02em;
	border: 1px solid #757575;
	display: block;
	color: #757575;
	border-radius: 4px;
	line-height: 1.4;
	min-height: 64px;
	padding: 14px;
	position: relative;
}
#list li a b {
	position: absolute;
	right: 14px;
	top: 14px;
}
#list span.ti {
	color: #fff;
	display: inline-block;
	background-color: #111;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	border-radius: 20px;
	width: 20px;
	height: 20px;
	margin-left: 4px;
	line-height: 20px;
}
#list li a span.btnc {
	color: #fff;
	display: inline-block;
	background-color: #111;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	border-radius: 20px;
	width: 20px;
	height: 20px;
	margin-left: 4px;
	line-height: 20px;
}
span.by {
	background-color: #f0463c !important;
}
#list li a.act {
	color: #f00;
}
h1#title {
	box-sizing: border-box;
	width: 100%;
	height: 10vh;
	border-bottom: 1px solid;
	text-align: center;
	line-height: 10vh;
}
#select {
	position: absolute; 
	width: 50%;
	top: 10vh;
	height: 90vh;
}
#select li a {
	border-bottom: 1px solid #000;
	padding: 4vh 2vw;
	font-size: 3vh;
	display: block;
	width: 100%;
	color: #000;
	box-sizing: border-box;
}
#cb {
	position: fixed;
	left: 50%;
	top: 10vh;
	box-sizing: border-box;
	width: 50%;
	height: 90vh;
	border-left: 1px solid;
}
#cb a {
	width: 100%;
	display: block;
	height: 90vh;
	line-height: 90vh;
	text-align: center;
	font-size: 10vh;
	color: #000;
}
#sustainability-content .post-wrap, 
#coaching-content .post-wrap {
	margin-top: 40px;
}
#sustainability-content article, 
#coaching-content article {
	width: 100%;
	margin: 0;
	margin-bottom: 80px;
}
#sustainability-content h4 {
	display: inline-block;
	margin-bottom: 16px;
	margin-right: 16px;
}
#sustainability-content h4 span {
	margin-right: 10px;
	font-weight: 700;
}
table.table {
	width: 100%;
}
table.table thead {
	border-bottom: 1px solid #111;
}
table.table thead td {
	padding: 16px 0;
	margin: 16px 0;
	font-weight: 700;
}
table.table tbody td {
	border-bottom: 1px solid #ccc;
	padding: 16px 0;
}
#coaching-content h3, 
#sustainability-content h3 {
	letter-spacing: -0.02em;
	color: #111;
	background-color: #fc5340;
	border: 1px solid #111;
	padding: 18px;
	width: inline-block;
	font-size: 22px;
	width: 180px;
	text-align: center;
	margin-bottom: 30px;
}
#coaching-content table tbody td {
	padding: 20px 0;
}
#coaching-content table tbody td {
	line-height: 1.5;
}
#coaching-content table tbody td.sum {
	line-height: 2.4;
	padding: 10px;
	box-sizing: border-box;
}
#coaching-content table tbody td.sum span {
	vertical-align: middle;
	margin-left: 20px;
	position: relative;
	padding-left: 20px;
}
#coaching-content table tbody td.sum span::before {
	content: "";
	background-image: url(images/dot-r.png);
	background-repeat: no-repeat;
	background-size: 6px;
	width: 6px;
	height: 6px;
	background-position: left center;
	position: absolute;
	left: 0;
	top: 8px;
}
#coaching-content article {
	margin-bottom: 0;
}
#coaching-content ul {
	margin-top: 30px;
}
#coaching-content ul li ul {
	margin-top: 0px;
}
#coaching-content ul li {
	font-size: 15px;
	color: #666;
}

