@charset "utf-8";
.intro {
    text-align: center;
}
.intro h5 {margin-bottom:2rem;font-size: 26px;font-weight: 700;color: var(--color-main);}
.intro_txt {
    margin-top: 2rem;
}
.intro_txt p {
    font-size: 20px;
    line-height: 150%;
}
.corp_sec1 {
    /* margin-bottom: 5%; */
}
.corp_sec1_flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.corp_sec1_flow:after {content:""; position:absolute; width:100%; height:2px; background-color:#214F72; z-index:-1}
.corp_sec1_flow li {
    width: 240px;
    height: 240px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: var(--color-main); */
    border-radius: 50%;
    color: #fff;
    background-image: linear-gradient(134deg, #93A1BF, #214F72);
    font-size: 24px;
}
.corp_sec1_flow li:first-child {
    width: 320px;
    height: 320px;
    background-image: none;
    background-color: #fff;
    border: 2px solid #214F72;
    color: #000;
    box-shadow: 2px 10px 15px rgb(0 0 0 / 15%);
}
.corp_sec1_flow li strong {
    font-size: 34px;
    font-weight: 600;
}
.corp_sec1_flow li p {
    font-size: .8em;
    color: #214F72;
}
.corp_sec1_info {
    background-color: #f5f5f7;
    padding: 3rem;
    margin-top: 3rem;
}
.corp_sec1_info li {
    line-height: 1.8;
}
.corp_conts {
    padding: 6rem 0;
    display: flex;
    gap: 4rem;
}
.corp_conts > div {width:100%}

.corp_sec2_info {
    background-color: #fff;
    padding: 3rem;
    border-radius: 1rem;
}
.corp_sec2_info  p {
    word-break: keep-all;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.corp_sec2_info  p  span {color: var(--color-main);font-weight: 500;}

.corp_conts dl {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    /* margin-bottom: 3rem; */
    border-bottom: 1px solid #ddd;
    border-top: 2px solid var(--color-main);
    height: 373px;
}
.corp_conts dl dt {
    width: 28%;
    /* padding: 1rem; */
    background-color: var(--color-bg-gray);
    /* color: #fff; */
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
} 
.corp_conts dl dd {
    width: 72%;
    padding-left: 1rem;
    border-bottom: 1px solid #ddd;
    /* height: 74px; */
    display: inline-flex;
    align-items: center;
    font-size: 17px;
}
.corp_conts dl dt:last-of-type {border-bottom: 0;}
.corp_conts dl dd:last-of-type {/* width: 85%; */border-bottom: 0;}
.corp_conts dl dd a{
    background-color: var(--color-main);
    padding: .5rem 2rem;
    color: #fff;
    border-radius: 2rem;
    margin-left: 2rem;
}
.corp_conts dl dd img {height: 40px;margin-right: 1rem;}
.corp_oper {}
.corp_oper ul {
}
.corp_oper li {
    display: flex;
    font-size: 17px;
}
.corp_oper li .oper_tit{width:30%}
.corp_oper li .oper_list {width:70%}

/* PC */ 
@media only screen and (min-width:1023px) and (max-width: 1500px)  {
    .corp_conts {gap:3rem}
	.corp_conts dl dd {flex-wrap:wrap}
	.corp_conts dl dd a {margin-left:0}
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (max-width:1024px) {
	.intro_txt p {
    word-break: keep-all;
    text-align: left;
}
    .intro_txt p br {display:none;}
    .corp_conts {flex-wrap: wrap;}
    .corp_conts dl {height:auto;}
    .corp_conts dl dt, .corp_conts dl dd {padding:.5rem 0;}
    .corp_conts dl dd {padding-left:1rem}
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px) {
	p li dt dd {font-size: clamp(.9rem, 4.5vw, 1rem);}
    .intro img {width:100%}
    .intro h5 {font-size: clamp(1.3rem, 5.5vw, 1.8rem);}
	.intro_txt p {font-size: clamp(.95rem, 4.5vw, 1.1rem);}
	.corp_conts dl dd {flex-wrap: wrap;}
	.corp_conts dl dt, .corp_conts dl dd, .corp_oper li {font-size: clamp(.9rem, 4.5vw, 1rem);}
	.corp_conts dl dd a {margin-left:0}
}