@charset "utf-8";


/* 회사소개 */

#container_title {
	background: url("/theme/IDEN_TN1/img/sub_1.jpg")no-repeat top center;
	background-size:cover;
}


.company {
	max-width: 1200px;
	overflow: hidden;
	margin: 50px auto 70px auto;
}

.company:after {
	content: "";
	display: block;
	clear: both;
}


.company h3 {
	font-size: 2em;
	text-align: center;
	font-weight: 300;
}

.company h4 {
	font-size: 1.6em;
	text-align: center;
	font-weight: 400;
	margin-bottom: 35px;
}

.company .photo {
	display: block;
	position: relative;
	width: 100%;
	height: 320px;
	background-image: url("/theme/IDEN_TN1/img/about.jpg");
	background-position: center;
	background-attachment: fixed;
	margin-top: 30px;
	margin-bottom: 30px;
	border-radius: 25px;
}

.company .photo span {
	position: absolute;
	font-size: 1.8em;
	font-weight: 100;
	color: white;
	text-shadow: 1px 1px 1px #222;
}

.company .photo span:first-child {
	left: 20px;
	top: 10px;
}

.company .photo span:last-child {
	right: 20px;
	bottom: 10px;
}

.company p {
	font-size: 1.3em;
	word-break: keep-all;
}

.company p.slogan {
	text-align: center;
	margin-top: 40px;
}

.company p.slogan strong {
	font-size: 1.5em;
	font-weight: 300;
}

.company p.slogan b {
	display: inline-block;
	font-size: 1.9em;
	color: darkorange;
	position: relative;
	margin-top: 15px;
	font-weight: 500;
}

.company p.slogan b::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 3px;
	transition: 0.3s ease;
	background-color: darkorange;
}

.company h5 {
    text-align: center;
    font-size: 4em;
    font-style: italic;
    margin-top: 90px;
    font-weight: 400;
    color: forestgreen;
    font-family: 'Nanum Pen Script', cursive;
}

.company .box_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.company .box_wrap .left {
	width: calc(50% - 10px);
}

.company .box_wrap .right {
	width: calc(50% - 10px);
}

.company .box_wrap .right img {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 250px;
    border-radius: 25px;
    object-fit: cover;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

@media screen and (hover:hover) {
	.company p.slogan:hover b::after {
		width: 100%;
	}
}

@media screen and (hover:none) {
	.company p.slogan b::after {
		width: 100%;
	}
}

@media screen and (max-width:992px) {
	.company {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width:550px) {
	.company .box_wrap .left {
		width: 100%;
	}

	.company .box_wrap .right {
		width: 100%;
	}

	.company p {
		font-size: 1.2em;
	}

	.company p.slogan b {
		font-size: 1.6em;
	}

	.company h3 {
		font-size: 1.4em;
	}

	.company h4 {
		font-size: 1.3em;
	}

	.company h5 {
		font-size: 2.4em;
	}
}

@media screen and (max-width:360px) {
	.company p.slogan b {
		font-size: 1.3em;
	}
	.company h5 {
		font-size: 1.9em;
	}
}