@charset "UTF-8";

/* animation */
@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes animation-1 {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}
	
	60% {
		opacity: 1;
		transform: translateX(20px);
	}
	
	100% {
		transform: translateX(0);
	}
}

/* intro */
.intro .table-contents .headline {
	padding-top: 0;
	border-bottom: none;
}

.table-contents .title.eng i {
	margin-right: 3rem;
	color: #a5a5a5;
	line-height: 1.2;
	vertical-align: top;
}

.table-contents .title.eng i+span {
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-size: 3rem;
	font-weight: 700;
	vertical-align: top;
	line-height: 1.75;
}

.intro .info>ul {
	padding-left: 0;
}

.intro .info>ul>li>div.list-title {
	position: relative;
	padding-right: 9rem;
}

.intro .info>ul>li>div.list-title>.title {
	margin-bottom: 0;
}

.intro .info>ul>li>div.list-icon {
	right: 25%;
	color: #a5a5a5;
}

.intro .info>ul>li:last-child>div.list-title>.title {
	color: #198754;
}

/* history */
.history-btn {
	position: relative;
	margin-bottom: 7rem;
}

.history-btn.fixed {
	width: 100%;
	background-color: #fff;
	position: fixed;
	top: 16.2rem;
	left: 0;
	z-index: 99;
	animation: slide-down .5s;
}

.history-btn::before {
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #ccc;
	position: absolute;
	top: 0.83rem;
	left: 0;
}

.history-btn.fixed::before {
	top: calc(3rem + 0.83rem);
}

.history-btn ul {
	position: relative;
	display: table;
	width: 100%;
	table-layout: fixed;
}

.history-btn>ul {
	margin-bottom: 0;
	padding-left: 0;
}

.history-btn.fixed ul {
	width: 128rem;
	max-width: 100%;
	margin: auto;
	padding-top: 3rem;
}

.history-btn ul li {
	display: table-cell;
	text-align: center;
	vertical-align: top;
	text-align: center;
	padding: 0 1rem;
}

.history-btn ul li a {
	display: inline-block;
	position: relative;
	padding-top: 2.6rem;
	color: #a5a5a5;
}

.history-btn ul li a::before, .history-btn ul li a::after {
	display: block;
	content: '';
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.history-btn ul li a::before {
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	border: 0.5rem solid #a5a5a5;
}

.history-btn ul li.active a {
	color: #198754;
}

.history-btn ul li.active a::before {
	width: 2.1rem;
	height: 2.1rem;
	top: -0.2rem;
	border-radius: 50%;
	border: 0.5rem solid #198754;
}

.history-btn .year {
	display: block;
	padding: 1.35rem 0;
	opacity: .9;
	font-size: 2rem;
	font-weight: 600;
}

.history-btn ul li.active .year {
	opacity: 1;
}

.history-list {
	position: relative;
	overflow: hidden;
}

.history-list::before {
	display: block;
	content: '';
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
	z-index: -1;
	background-color: #c7c7c7;
	transition: .5s;
}

.history-list::after {
	display: block;
	content: 'GYICT HISTORY';
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
	background-color: #fff;
	font-family: 'Montserrat';
	font-size: 5rem;
	font-weight: 700;
	color: rgba(199,199,199,.35);
	text-align: center;
	padding: 2.5rem 0;
}

.history-list .history-line {
	display: block;
	width: 2px;
	height: 0;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
	z-index: 1;
	background-color: #198754;
	transition: .5s;
}

.history-list>ul {
	position: relative;
	padding-left: 0;
}

.history-list>ul>li {
	padding: 9rem 0 0;
	position: relative;
	z-index: 3;
}

.history-list>ul>li::after {
	display: block;
	content: '';
	clear: both;
}

.history-list>ul>li .txt-box {
	margin-bottom: 2.4rem;
	opacity: 1;
	transition: .3s .2s;
	position: relative;
	top: 4rem;
}

.history-list>ul>li.active .txt-box {
	opacity: 1;
	top: 0;
}

.history-list .title {
	display: block;
	position: relative;
	font-family: 'Montserrat';
	font-size: 3rem;
	font-weight: 700;
	color: #198754;
	text-align: center;
	padding: 2.5rem 0 4.4rem;
	margin-bottom: 0;
	background-color: #fff;
}

.history-list .title::after {
	display: block;
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	background-color: #fff;
	position: absolute;
	bottom: 1.2rem;
	left: 50%;
	transform: translateX(-50%);
	border: 0.3rem solid #a5a5a5;
	border-radius: 50%;
}

.history-list>ul>li.active .title::after {
	left: calc(50% - 5px);
	border: 0.3rem solid #198754;
	animation: 500ms ease 0ms forwards 1 pulse;
}

.history-list .img, .history-list .txt {
	width: 50%;
	padding: 0 6.5rem;
	position: relative;
	float: left;
}

.history-list>ul>li.active .img {
	opacity: 1;
}

.history-list .img img {
	width: 100%;
	max-width: 100%;
}

.history-list>ul>li:nth-of-type(odd).active .img {
	animation: animation-1 .6s;
}

.history-list .txt .month {
	display: block;
	font-family: 'Montserrat';
	font-size: 2.5rem;
	font-weight: 700;
	position: relative;
	color: #000;
	margin: 2rem 0 1.5rem;
}

.history-list ul {
	padding-left: 0;
}

.bullet {
	margin-top: 1rem;
	padding-left: 0;
}

.history-list .txt .bullet>li {
	margin-bottom: 1.1rem;
}

.bullet>li {
	position: relative;
	padding-left: 1.2rem;
	line-height: 2.5rem;
	font-weight: 400;
}

.bullet>li::before {
	display: block;
	content: '';
	width: 0.6rem;
	height: 2px;
	background-color: #555;
	position: absolute;
	top: 1.05rem;
	left: 0;
}

.history-list>ul>li>div::after, .history-layout::after {
	display: block;
	content: '';
	clear: both;
}

/* recruit */
.table-contents>div {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-bottom: 1px solid #ccc;
	padding: 8.3rem 0;
}

.table-contents>div:last-of-type {
	border-bottom: none;
}

.table-contents .headline {
	padding: 7.3rem 0;
}

.table-contents .headline>div {
	vertical-align: top;
}

.table-contents .title {
	width: 49rem;
	display: table-cell;
	vertical-align: middle;
}

.table-contents .title i {
	margin-right: 3rem;
	color: #a5a5a5;
	line-height: 0.6;
	vertical-align: top;
}

.table-contents>div>div {
	display: table-cell;
}

.table-contents .title>i+span {
	display: inline-block;
	font-size: 2.5rem;
	font-weight: 600;
	vertical-align: middle;
	color: #000;
}

.table-contents .title strong {
	display: block;
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.5;
	color: #000;
}

.table-contents .title strong .dot {
	display: inline;
	vertical-align: bottom;
	font-size: 5rem;
	line-height: 1;
	color: #198754;
	top: -0.5rem;
}

.table-contents .info {
	width: calc(100% - 49rem);
	position: relative;
}

.table-contents .info .desc {
	font-size: 2rem;
	color: #555;
	line-height: 1.7;
	margin-bottom: 3rem;	
}

.table-contents .info .desc:last-of-type {
	margin-bottom: 0;
}

.table-contents .headline .info .desc {
	font-size: 2.2rem;
	font-weight: 500;
}

.info>ul {
	margin: -4rem -7.5rem;
	padding-left: 0;
}

.info>ul>li {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	margin-right: -4px;
	padding: 4rem 7.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: #555;
	line-height: 1.5;
	position: relative;
}

.info>ul.first>li {
	display: block;
	width: 100%;
	margin-right: 0;
}

.info>ul>li>div.list-content {
	position: relative;
	padding-right: 9rem;
}

.info>ul>li .title {
	display: block;
	width: 100%;
	font-size: 2.2rem;
	font-weight: 600;
	color: #000;
}

.info>ul>li>div.list-content>.title {
	margin-bottom: 0;
}

.recruit .info>ul>li>div.list-icon {
	width: auto;
	max-width: 7rem;
	top: 47.5%;
	color: #a5a5a5;
}

.info>ul>li div.list-icon {
	width: 5.2rem;
	max-height: 100%;
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	text-align: center;
}

.recruit .info>ul>li>.list-title {
	position: relative;
}

.recruit .info>ul>li>.list-title>div.list-icon {
	width: auto;
	max-width: 7rem;
	right: 0;
	color: #a5a5a5;
	font-weight: 200;
}

.list-num {
	display: block;
	font-family: 'Montserrat';
	font-size: 2rem;
	font-weight: 600;
	color: #ccc;
	margin-bottom: 0.35rem;
}

.recruit .info>ul>li>ul.bullet>li {
	font-size: 1.5rem;
}

.inquiry {
	display: flex;
	margin: 1.5rem 0;
	justify-content: center;
	align-items: center;
}

.inquiry a {
	display: flex;
	width: 18.8rem;
	height: 4.8rem;
	border: 2px solid #198754;
	background-color: #fff;
	justify-content: center;
	align-items: center;
}

.inquiry a span {
	display: inline-block;
	padding-right: 3rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: #198754;
	line-height: calc(4.8rem - 2px);
	vertical-align: top;
	letter-spacing: -0.035em;
	position: relative;
}

.inquiry a span::after {
	display: block;
	content: '\e90b';
	font-family: 'xeicon';
	font-size: 1.6rem;
	position: absolute;
	top: calc(50% - 0.175rem);
	right: 0;
	transform: translateY(-50%);
	color: #198754;
}

.inquiry a:hover {
	background-color: #198754;
}

.inquiry a:hover span, .inquiry a:hover span::after {
	color: #fff;
}

/* contact */
.contact .map {
	width: 100%;
	height: 550px;
	position: relative;
}

.contact .zoom-ctl {
	position: absolute;
	top: -30rem;
	bottom: 0;
	right: 7.5rem;
	z-index: 20;
	height: 94px;
	margin: auto;
}

.contact .zoom-ctl .zoom-in,
.contact .zoom-ctl .zoom-out,
.contact .zoom-ctl .reload {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	padding: 8px;
	background-color: #fff;
	border: 1px solid #666;
	cursor: pointer;
}

.contact .zoom-ctl .zoom-in {
	border-bottom: none;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.contact .zoom-ctl .zoom-out {
	border-top: 1px solid #a5a5a5;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.contact .zoom-ctl .reload {
	margin-top: 4px;
	padding: 5px 0;
	border-radius: 5px;
}

.contact .title>i {
	margin-right: 1.5rem;
}

.contact .info>ul {
	margin: 0;
}

.contact .info>ul>li {
	width: 100%;
	display: block;
	position: relative;
	color: #555;
	padding: 0;
	margin-bottom: 1.5rem;
}

.contact .info>ul>li strong {
	width: 15.5rem;
	display: inline-block;
	vertical-align: top;
	margin-right: -4px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #000;
	position: relative;
	padding-left: 3rem;
}

.contact .info>ul>li strong::before {
	display: block;
	font-family: 'xeicon';
	font-size: 2rem;
	color: #a5a5a5;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.contact .info>ul>li.address strong::before {
	content: '\eb59';
}

.contact .info>ul>li.call strong::before {
	content: '\e9d3';
}

.contact .info>ul>li.fax strong::before {
	content: '\e9bc';
}

.contact .info>ul>li.email strong::before {
	content: '\ea06';
}

.contact .info>ul>li span {
	width: calc(100% - 15.5rem);
	display: inline-block;
	font-variant-numeric: top;
	margin-right: -4px;
	color: #555;
}

/* service */
.service-contents {
	padding: 15rem 0 !important;
}

.service .table-contents .headline .info .desc {
	position: relative;
}

.service .table-contents .headline .info .desc::before,
.service .table-contents .headline .info .desc::after {
	display: block;
	content: '';
	width: 8.9rem;
	height: 8px;
	position: absolute;
	background-color: #a5a5a5;
	transform: rotate(135deg);
	z-index: -1;
}

.service .table-contents .headline .info .desc::before {
	top: -0.5rem;
	left: -6.5rem;
}

.service .table-contents .headline .info .desc::after {
	bottom: 0;
	right: 0.5rem;
}

.service .table-contents .headline .info .desc strong {
	color: #198754;
}

.service .service-list>ul {
	display: table;
	width: 100%;
	table-layout: fixed;
	padding-left: 0;
	margin-bottom: 0;
}

.service .service-list>ul>li {
	display: table-cell;
	text-align: center;
	border-right: 1px dashed #a5a5a5;
	padding: 0 3rem;
}

.service .service-list>ul>li:last-child {
	border-right: none;
}

.service .service-list>ul>li .img {
	margin-bottom: 2.8rem;
}

.service .service-list>ul>li .img img {
	width: 50%;
	height: 130px;
	object-fit: cover;
	border-radius: 50%;
}

.service .service-list>ul>li .txt>strong {
	display: block;
	font-size: 2.5rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.5rem;
}

.service .service-list>ul>li .txt>p {
	font-size: 2rem;
	font-weight: 500;
	color: #555;
}

/* portfolio */
.slides-portfolio {
	width: 100%;
	overflow: hidden;
}

.swiper-pagination {
	width: 100%;
	display: table;
	position: static;
	table-layout: fixed;
	padding: 8.3rem 0;
}

.slides-tab {
	height: 5rem;
	display: table-cell;
	font-size: 1.8rem;
	font-weight: 400;
	vertical-align: middle;
	text-align: center;
	color: #555;
	letter-spacing: -0.05em;
	position: relative;
	cursor: pointer;
}

.slides-tab::after {
	display: block;
	content: '';
	width: 1px;
	height: 2rem;
	background-color: #b5b5b5;
	position: absolute;
	top: 50%;
	right: -0.5px;
	transform: translateY(-50%);
}

.slides-tab-active {
	color: #fff;
	font-weight: 700;
	background-color: #198754;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
	border-radius: 1.5rem;
}

.slides-tab-active::after {
	display: none;
}

.swiper-button-prev, .swiper-button-next {
	top: 10.8rem;
	text-indent: -9999px;
	vertical-align: top;
	font-size: 0;
	z-index: 2;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	width: 3.6rem;
	height: 0;
	display: block;
	background-color: #717171;
	border-radius: 50%;
	font-family:'xeicon';
	font-size: 1.6rem;
	color: #fff;
	text-align: center;
	line-height: 1.7;
	text-indent: 0;
	padding-bottom: 100%;
}

.swiper-button-prev::after {
	content: '\e93b';
}

.swiper-button-next::after {
	content: '\e93e';
}

.portfolio-list>ul {
	width: 100%;
	margin-bottom: 0;
	padding-left: 0;
}

.portfolio-list>ul::after {
	display: block;
	content: '';
	clear: both;
}

.portfolio-list>ul>li {
	width: 33.3%;
	float: left;
	vertical-align: top;
	margin-right: -4px;
	padding: 2.5rem 2.8rem;
}

.portfolio-list>ul>li>.img {
	display: block;
	width: 100%;
	overflow: hidden;
	border: 1px solid #c7c7c7;
	cursor: pointer;
}

.portfolio-list>ul>li>.img>img {
	width: 100%;
	height: 184.64px;
}

.portfolio-list>ul>li>.txt {
	width: 100%;
	padding-top: 1.8rem;
	text-align: center;
	letter-spacing: -0.025em;
}

.portfolio-list>ul>li>.txt>span {
	display: block;
	width: 100%;
	font-size: 2.2rem;
	font-weight: 500;
}

/* portfolio-modal */
#portfolioModal h5 {
	font-size: 2.3rem;
	font-weight: 600;
}

#portfolioModal h6 {
	font-size: 2rem;
	font-weight: 600;
}

#portfolioModal p {
	line-height: 1;
}

#portfolioModal .modal-footer button {
	background-color: #198754;
	color: #fff;
	font-size: 1.6rem;
	border: none;
}

/* inquiry */
.inquiry-service .table-contents .headline {
	padding-top: 0;
}

.inquiry-service .inquiry-contents {
	color: #555;
}

.inquiry-service .inquiry-contents .inquiry-title {
	overflow: hidden;
	color: #000;
}

.inquiry-service .inquiry-contents .inquiry-title span {
	display: inline-block;
	font-size: 2.2rem;
	font-weight: 600;
	width: 3.5rem;
	margin-right: -4px;
}

.inquiry-service .inquiry-contents .inquiry-title span b {
	font-size: 3rem;
	color: #198754;
}

.inquiry-service .inquiry-contents .inquiry-title strong {
	width: calc(100% - 3.5rem);
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 600;
	margin-right: -4px;
}

.inquiry-service .inquiry-contents .inquiry-desc {
	font-weight: 500;
	line-height: 1.5;
	margin-top: 1.25rem;
}

.inquiry-service .inquiry-contents ul.bullet {
	margin-top: 1.25rem;
	padding-left: 0;
}

.inquiry-service .inquiry {
	justify-content: flex-start;
}

/* board */
.board-info {
	margin-bottom: 2rem;
}

.board-info::after {
	display: block;
	content: '';
	clear: both;
}

.board-info .page-info {
	float: left;
	margin-top: 10px;
	margin-bottom: 0;
}

.board-info .page-info b {
	color: #198754;
}

.board-info .page-info .perTotalPage {
	position: relative;
	padding-left: 1rem;
	margin-left: 0.8rem;
}

.board-info .page-info .perTotalPage::before {
	width: 1px;
	height: 1.4rem;
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ddd;
}

.search-result {
	float: right;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.search-filter-container,
.search-input-container,
.search-btn-container {
	height: 4rem;
}

.search-filter-container {
	min-width: 15rem;
	margin-right: 5px;
}

.search-input-container {
	width: 26rem;
	margin-right: 5px;
}

.search-btn-container {
	min-width: 4rem;
}

.search-filter, .search-input, .search-btn {
	width: 100%;
	height: 100%;
}

.search-filter, .search-input, .search-btn {
	padding: 0 1rem;
}

.search-filter, .search-input {
	border: 1px solid #ddd;
}

.search-btn, .form-write-btn, .form-close-btn {
	background-color: #198754;
	border: #198754;
	color: #fff;
}

.board-list .board-tbl {
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}

.board-list .board-tbl thead {
	border-top: 2px solid #198754;
}

.board-list .board-tbl th {
	padding: 1.4rem 0.5rem;
	border-top: 1px solid #198754;
	border-bottom: 1px solid #aaa;
	font-size: 1.6rem;
	font-weight: bold;
	color: #222;
	text-align: center;
	white-space: nowrap;
}

.board-list .board-tbl td {
	background-color: #fff;
	font-size: 1.6rem;
	color: #555;
	text-align: center;
	padding: 1.4rem 0.5rem;
	border-bottom: 1px solid #e7e7e7;
}

.board-list .board-tbl td.text-left {
	text-align: left;
	padding-left: 2rem;
}

.board-list .board-tbl td.text-left a:hover {
	color: #198754;
}

.board-pager {
	margin: 3rem auto;
	text-align: center;
}

.board-pager .inner {
	display: table;
	margin: 0 auto;
}

.board-pager a {
	width: 4rem;
	height: 4rem;
	display: inline-block;
	font-size: 1.5rem;
	color: #999;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: transparent;
	position: relative;
	margin: 0 2px;
	padding-top: 0.5rem;
	text-decoration: none;
	box-sizing: border-box;
}

.board-pager i {
	font-size: 2rem;
	margin-top: 0.4rem;
	color: #777;
	font-style: normal;
}

.board-pager .goFirst i::after {
	content: '\e93c';
	font-family: 'xeicon';
	margin-left: -1.6rem;
}

.board-pager .goPrev {
	margin-right: 2rem;
}

.board-pager .goPage {
	background-color: #198754;
	border-color: #198754;
	color: #fff;
	line-height: 1.9;
}

.board-pager .goPage:hover {
	background-color: #fff;
	border-color: #ddd;
	color: #198754;
}

.board-pager .goPage strong {
	color: #fff;
}

.board-pager .goPage:hover strong {
	color: #198754;
}

.board-pager span.total {
	display: none;
}

.board-pager .goNext {
	margin-left: 2rem;
}

.board-pager .goLast i::after {
	content: '\e93f';
	font-family: 'xeicon';
	margin-left: -1.6rem;
}

.board-view, .board-write {
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	margin-bottom: 2rem;
}

.board-view thead {
	border-top: 2px solid #198754;
}

.board-view th.board-title {
	font-size: 2.6rem;
	line-height: 2.6rem;
	text-align: center;
	padding: 3rem;
	word-break: break-all;
}

.board-view td {
	font-size: 1.8rem;
	font-weight: 300;
	color: #222;
	text-align: left;
	border-bottom: 1px solid #e7e7e7;
}

.board-view td.board-head {
	padding: 1.8rem 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background-color: #f8f9fa;
	text-align: center;
}

.board-view td.board-head ul {
	text-align: center;
	padding-left: 0;
	margin-bottom: 0;
}

.board-view td.board-head ul li {
	display: inline-block;
}

.board-view td.board-head ul li strong {
	color: #000;
	font-weight: normal;
	padding-right: 5px;
}

.board-view td.board-head ul li span {
	color: #777;
}

.board-view td.board-head ul li.date {
	position: relative;
	padding-left: 1rem;
	margin-left: 0.8rem;
}

.board-view td.board-head ul li.date::before {
	width: 1px;
	height: 1.2rem;
	display: block;
	content: '';
	background-color: #ddd;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.board-view td.board-content {
	padding: 2rem 1rem;
	border-right: 0;
}

.board-view td.board-file {
	border-bottom: none;
	padding: 0.5rem 0;
}

.board-view td.board-file-last {
	border-bottom: 1px solid #e7e7e7;
}

.label-btn {
	height: auto;
	margin: 2rem 0 0;
	font-size: 1.5rem;
	text-align: right;
}

.pi-btn {
	background-color: #fff;
	color: #444;
	border: 1px solid #cfdbe2;
	border-radius: 1px;
	padding: 5px 12px;
	font-size: 1.4rem;
	line-height: 21px;
	letter-spacing: -0.8px;
	cursor: pointer;
	transition: all .4s ease;
}

.pi-btn:hover {
	background-color: #198754;
	color: #fff;
}

@media(max-width: 1000px) {
	.table-contents .title {
		width: 33rem;
	}
	
	.table-contents .info {
		width: calc(100% - 33rem);
	}
}

@media(max-width: 800px) {
	.table-contents>div {
		display: block;
	}
	
	.table-contents .title {
		display: block;
		width: 100%;
		margin-bottom: 3.5rem;
	}
	
	.table-contents .title br {
		display: none;
	}
	
	.table-contents .info {
		display: block;
		width: 100%;
	}
	
	.info>ul {
		margin: -2rem;
	}
	
	.info>ul>li {
		padding: 2rem;
	}
	
	.history-list .img, .history-list .txt {
		padding: 0 2rem;
	}
	
	.recruit .info .xi-4x {
		font-size: 3em !important;
	}
	
	.service .table-contents .headline .title {
		text-align: center;
	}
	
	.service .table-contents .headline .info .desc {
		text-align: center;
	}
	
	.service .table-contents .headline .info .desc::before {
		top: 0;
		left: 0;
	}
	
	.service .table-contents .headline .info .desc::after {
		bottom: 0;
		right: 0;
	}
	
	.service .service-list>ul {
		display: block;
	}
	
	.service .service-list>ul>li {
		display: block;
		border-right: none;
		border-bottom: 1px dashed #a5a5a5;
		padding: 3rem 0;
	}
	
	.service .service-list>ul>li:last-child {
		border-bottom: none;
	}
	
	.search-result, .page-info {
		float: none;
	}
	
	.search-result {
		display: block;
		margin-bottom: 2rem;
	}
	
	.search-filter-container {
		margin-right: 0;
	}
	
	.search-input-container {
		width: 100%;
		margin-right: 0;
		margin-top: 5px;
	}
	
	.search-btn-container {
		margin-top: 5px;
	}
	
	.board-tbl .table-hide {
		display: none;
	}
	
	.board-pager .goFirst, .board-pager .goLast, .board-pager .goPage, .board-pager .curPage {
		display: none;
	}
	
	.board-pager span.total {
		display: inline-block;
	}
}

@media(max-width: 500px) {
	.portfolio-list>ul>li {
		float: none;
		width: 100%;
	}
	
	.info>ul>li .title {
		font-size: 1.8rem;
	}
	
	.recruit .info .xi-4x {
		font-size: 2.3em !important;
	}
}