header {
	position: relative;
}

.sub-wrap {
	position: relative;
}

.sub-visual {
	width: 100%;
	height: 460px;
}

.sub-visual .box,
.sub-visual .bg,
.sub-visual .text,
.sub-visual .title {
	width: 100%;
	height: 100%;
}

.sub-visual .box,
.sub-visual .bg {
	position: relative;
}

.sub-visual .bg img,
.sub-visual .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-visual .bg {
	border-radius: 20px;
	overflow: hidden;
}

.sub-visual .bg img {
	max-width: inherit;
	max-height: 100%;
}

.sub-visual .text * {
	color: var(--color-white);
}

.sub-visual .title {
	row-gap: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-visual .title em {
	font-size: 2.4rem;
	font-weight: 600;
}

.sub-visual .title h2 {
	font-size: calc(var(--font92) - 1.2rem);
	font-weight: 700;
}

.sub-visual .path-box,
.sub-visual .path {
	display: flex;
	align-items: center;
}

.sub-visual .path-box {
	position: absolute;
	left: 60px;
	bottom: 40px;
}

.sub-visual .path::before {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	background: var(--color-white);
	border-radius: 50%;
	margin: 0 15px;
}

.sub-visual .path a {
	font-size: 1.6rem;
	font-weight: 600;
	font-family: var(--font-pretendard);
}

.sub-contents {
	display: flex;
	flex-direction: column;
}

.sub-contents .depth1 {
	display: inline-flex;
	justify-content: center;
	margin: 30px auto 0;
}

.sub-contents .depth1>li {
	row-gap: 15px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

.sub-contents .depth1>li::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background: var(--color-primary);
	border-radius: 50%;
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.4s ease-out;
}

.sub-contents .depth1>li>a {
	display: block;
	color: #939393;
	font-size: 2.4rem;
	font-weight: 600;
	font-family: var(--font-pretendard);
	padding: 0 30px;
	transition: all 0.4s ease-out;
}

.sub-contents .depth1>li:hover::before, .sub-contents .depth1>li.on::before {
	opacity: 1;
	transform: translateY(0);
}

.sub-contents .depth1>li:hover>a, .sub-contents .depth1>li.on>a {
	color: var(--color-primary);
}

.sub-contents .scroll-tab {
	position: sticky;
	top: 30px;
	z-index: 1;
}

.sub-contents .scroll-tab::before {
	content: "";
	display: block;
	width: calc(100% + 40px);
	height: 100%;
	border-radius: 50px;
	background: rgba(231, 231, 231, 0.4);
	backdrop-filter: blur(15px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .scroll-tab>li {
	width: 200px;
}

.sub-contents .scroll-tab>li::before {
	display: none;
}

.sub-contents .scroll-tab>li>a {
	color: #666;
	font-size: 2rem;
	padding: 25px 0;
}

.sub-contents .scroll-tab>li:not(:last-child)::after {
	content: "";
	display: block;
	width: 1px;
	height: 26px;
	background: #ddd;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.sub-contents .sub-page h3 {
	color: #222;
	font-size: calc(var(--font60) - 1rem);
	font-weight: 700;
	font-family: var(--font-pretendard);
}

.sub-contents .sub-page h3.center {
	text-align: center;
}

.sub-contents .sub-page.padding {
	padding: var(--gap130) 0 calc(var(--gap180) + 10px);
}

.sub-contents .sub-page.padding.bottom-x {
	padding-bottom: 0;
}

.sub-contents .rolling .inner {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	position: relative;
}

.sub-contents .rolling span {
	display: block;
	width: 100%;
	color: #f2f2f2;
	font-size: 5.21vw;
	font-weight: 800;
	padding: 0 10px;
	position: relative;
}

.sub-contents .company * {
	font-family: var(--font-pretendard);
}

.sub-contents .company .information {
	text-align: center;
}

.sub-contents .company .information h3 {
	margin-top: -1.5em;
}

.sub-contents .company .information h3 span {
	color: var(--color-primary);
}

.sub-contents .company .information h3.on {
	transition-delay: 0.1s;
}

.sub-contents .company .information p {
	color: #666;
	font-size: 2.1rem;
	line-height: 1.6;
}

.sub-contents .company .information p b {
	color: #222;
}

.sub-contents .company .information p.on:nth-child(1) {
	transition-delay: 0.1s;
}

.sub-contents .company .information p.on:nth-child(2) {
	transition-delay: 0.2s;
}

.sub-contents .company .information p.on:nth-child(3) {
	transition-delay: 0.3s;
}

.sub-contents .overview .information h3 {
	line-height: 1.5;
}

.sub-contents .overview .information .item-box {
	width: 100%;
	max-width: 1380px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	margin: 0 auto;
}

.sub-contents .overview .information .item {
	border: 1px solid #ccc;
	border-radius: 20px;
	text-align: center;
	padding: 80px 0 65px;
}

.sub-contents .overview .information .item .icon {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .overview .information .item .text {
	margin-top: 20px;
}

.sub-contents .overview .information .item .text p {
	color: #333;
	font-size: 3.6rem;
	font-weight: 600;
}

.sub-contents .overview .information .item .text b {
	display: block;
	color: var(--color-primary);
	font-size: 2rem;
	font-weight: 500;
	margin: 10px 0;
}

.sub-contents .overview .information .item .text span {
	color: #777;
	font-size: 1.7rem;
	font-weight: 300;
}

.sub-contents .overview .ratio {
	padding-top: calc(var(--gap130) + 20px);
	position: relative;
}

.sub-contents .overview .ratio::before {
	content: "";
	display: block;
	width: 100vw;
	height: calc(100% + var(--gap180) + 10px);
	background: #f6f6f6;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .overview .ratio .item-box {
	width: 82.9545%;
	display: grid;
	grid-template-columns: 20.547945% 38.15% 20.547945%;
	align-items: flex-end;
	justify-content: space-between;
	margin: 0 auto;
}

.sub-contents .overview .ratio .text-box {
	height: calc(100% - 50px);
	display: grid;
	row-gap: 10px;
}

.sub-contents .overview .ratio .text-box>div {
	height: 100%;
}

.sub-contents .overview .ratio .text-box .text,
.sub-contents .overview .ratio .text-box .line {
	opacity: 0;
	transition: all 1s linear;
}

.sub-contents .overview .ratio .text {
	background: var(--color-white);
	border: 1px solid transparent;
	border-radius: 20px;
	text-align: center;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .overview .ratio .text span {
	font-size: 3.4rem;
	font-weight: 600;
}

.sub-contents .overview .ratio .text h6 {
	font-size: 2rem;
	margin-top: 5px;
}

.sub-contents .overview .ratio .pink {
	border-color: #C40452;
}

.sub-contents .overview .ratio .pink * {
	color: #C40452;
}

.sub-contents .overview .ratio .black {
	border-color: #000000;
}

.sub-contents .overview .ratio .black * {
	color: #484848;
}

.sub-contents .overview .ratio .blue {
	border-color: #44429D;
}

.sub-contents .overview .ratio .blue * {
	color: #2D2C7B;
}

.sub-contents .overview .ratio .many {
	position: relative;
}

.sub-contents .overview .ratio .many .line {
	width: 80%;
	height: 2px;
	background: url("/img/svg/line_overview.svg") no-repeat;
	position: absolute;
	top: 50%;
}

.sub-contents .overview .ratio .many .line::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sub-contents .overview .ratio .left-box {
	grid-template-rows: calc(76.48% - 10px) 23.52%;
}

.sub-contents .overview .ratio .left-box .text {
	transform: translateX(-50px);
}

.sub-contents .overview .ratio .left-box .line {
	right: -80%;
	transform: translate(50px, -50%);
}

.sub-contents .overview .ratio .left-box .line::after {
	left: -4px;
}

.sub-contents .overview .ratio .right-box {
	grid-template-rows: calc(61.765% - 10px) 38.235%;
}

.sub-contents .overview .ratio .right-box .text {
	transform: translateX(50px);
}

.sub-contents .overview .ratio .right-box .line {
	left: -80%;
	transform: translate(-50px, -50%);
}

.sub-contents .overview .ratio .right-box .line::after {
	right: -4px;
}

.sub-contents .overview .ratio .text-box.on .line,
.sub-contents .overview .ratio .text-box.on .text {
	opacity: 1;
}

.sub-contents .overview .ratio .text-box.on .line {
	transform: translate(0, -50%);
}

.sub-contents .overview .ratio .text-box.on .text {
	transform: translateX(0);
}

.sub-contents .overview .ratio .left-box.on .line {
	transition-delay: 1s;
}

.sub-contents .overview .ratio .left-box.on .text {
	transition-delay: 2s;
}

.sub-contents .overview .ratio .right-box.on .line {
	transition-delay: 3s;
}

.sub-contents .overview .ratio .right-box.on .text {
	transition-delay: 4s;
}

.sub-contents .overview+.rolling {
	background: #f6f6f6;
}

.sub-contents .overview+.rolling span {
	color: #eee;
}

.sub-contents .greeting .information h3 {
	font-size: var(--font60);
	line-height: 1.4;
}

.sub-contents .greeting .information .img {
	border-radius: 20px;
	padding: 11.3645% 0;
	position: relative;
	overflow: hidden;
}

.sub-contents .greeting .information .img img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transition: all 0.6s var(--slow);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .greeting .information .img img {
	max-width: inherit;
}

.sub-contents .history .content {
	display: grid;
	grid-template-columns: 0.45fr 1px 0.45fr;
	justify-content: space-between;
	position: relative;
}

.sub-contents .history .img-box {
	display: flex;
	flex-direction: column;
}

.sub-contents .history .img2 {
	margin: 130px 0 260px;
}

.sub-contents .history .img4 {
	margin: 130px 0 auto;
}

.sub-contents .history .bar {
	width: 1px;
	height: 100%;
	background: #ddd;
	position: relative;
	overflow-y: clip;
}

.sub-contents .history .bar span {
	display: block;
	width: 100%;
	height: 0;
	min-height: 12.5px;
	max-height: calc(100% - 12.5px);
	background: var(--color-primary);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.6s linear;
}

.sub-contents .history .bar span::before, .sub-contents .history .bar span::after {
	content: "";
	display: block;
	background: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .history .bar span::before {
	width: 25px;
	height: 25px;
	opacity: 0.2;
	bottom: -12.5px;
}

.sub-contents .history .bar span::after {
	width: 11px;
	height: 11px;
	bottom: -5.5px;
}

.sub-contents .history .list-box dl dt {
	color: #444;
	font-size: 5.6rem;
	font-weight: 700;
	transition: all 0.6s linear;
}

.sub-contents .history .list-box dl dd {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 30px;
	margin-top: 20px;
}

.sub-contents .history .list-box dl dd * {
	color: #333;
	font-size: 2rem;
	line-height: 1.7;
}

.sub-contents .history .list-box dl dd>div {
	display: flex;
	align-items: flex-start;
	column-gap: 15px;
}

.sub-contents .history .list-box dl span {
	font-weight: 700;
}

.sub-contents .history .list-box dl p {
	font-weight: 300;
	font-family: var(--font-pretendard);
}

.sub-contents .history .list-box dl.on dt {
	color: var(--color-primary);
}

.sub-contents .directions .content {
	display: flex;
	column-gap: 60px;
}

.sub-contents .directions .top {
	display: inline-flex;
	align-items: center;
	column-gap: 15px;
	border: 1px solid #ccc;
	border-radius: 20px;
	color: #333;
	font-size: 2.4rem;
	font-weight: 600;
	padding: 20px 30px;
}

.sub-contents .directions .map {
	margin: 30px 0 60px;
}

.sub-contents .directions .info {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.sub-contents .directions .info dl,
.sub-contents .directions .info dl dt {
	display: flex;
	align-items: center;
}

.sub-contents .directions .info dl {
	column-gap: 35px;
}

.sub-contents .directions .info dl * {
	font-size: 2rem;
	font-family: var(--font-pretendard);
}

.sub-contents .directions .info dl dt {
	flex-shrink: 0;
	column-gap: 10px;
	color: #111;
	font-weight: 700;
	white-space: nowrap;
}

.sub-contents .directions .info dl dd {
	color: #333;
}

.sub-contents .areas * {
	font-family: var(--font-pretendard);
}

.sub-contents .areas .radial.left,
.sub-contents .areas .radial.bottom {
	display: none;
}

.sub-contents .areas h3,
.sub-contents .areas h4 {
	margin: 20px 0 30px;
}

.sub-contents .areas p {
	color: #666;
	line-height: 1.6;
}

.sub-contents .areas .information,
.sub-contents .areas .lists {
	padding: calc(var(--gap130) + 20px) 0;
}

.sub-contents .areas .information,
.sub-contents .areas .lists .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sub-contents .areas .information>* {
	width: 50%;
}

.sub-contents .areas .information .text {
	padding-left: 90px;
}

.sub-contents .areas .information p {
	font-size: 2.1rem;
}

.sub-contents .areas .lists {
	position: relative;
}

.sub-contents .areas .lists::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .areas .lists .img {
	max-width: 53.0125%;
	flex-shrink: 0;
}

.sub-contents .areas .lists .item {
	background: var(--color-white);
	border-radius: 20px;
	padding: 50px;
	position: sticky;
	top: calc(var(--gap130) + 20px);
}

.sub-contents .areas .lists .text {
	padding-left: 30px;
}

.sub-contents .areas .lists span {
	font-size: 12.6rem;
	font-weight: 700;
}

.sub-contents .areas .lists h4 {
	color: #333;
	font-size: calc(var(--font42) - 0.2rem);
	font-weight: 600;
}

.sub-contents .areas .lists p {
	font-size: 2rem;
}

.sub-contents .areas .cafe .lists::before {
	background: #F4F1EE;
}

.sub-contents .areas .cafe .lists span {
	color: #F6F4F2;
}

.sub-contents .areas .care .lists::before {
	background: #ECF0F3;
}

.sub-contents .areas .care .lists span {
	color: #F0F4F8;
}

.sub-contents .process .steps {
	border: 1px solid #DFDFDF;
	border-radius: 20px;
	padding: 60px 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .process .steps .item-box {
	width: 100%;
	max-width: 1490px;
	display: grid;
	grid-template-columns: repeat(4, 14.09395% 10px) 14.09395%;
	justify-content: space-between;
}

.sub-contents .process .steps .item-box span {
	display: flex;
	align-items: center;
}

.sub-contents .process .steps .icon {
	width: 100%;
	background: #f5f5f5;
	border-radius: 50%;
	padding: 50% 0;
	position: relative;
}

.sub-contents .process .steps .icon img {
	max-height: 72px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .process .steps .text {
	text-align: center;
	margin-top: 20px;
}

.sub-contents .process .steps .text b {
	color: var(--color-primary);
	font-size: 2.4rem;
	font-weight: 700;
}

.sub-contents .process .steps .text p {
	color: #222;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 10px;
}

.sub-contents .process .details .item-box {
	border-top: 2px solid #333;
	margin-top: 60px;
}

.sub-contents .process .details .item {
	column-gap: 100px;
	border-bottom: 1px solid #e7e7e7;
	padding: 80px 85px 80px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .process .details .item span,
.sub-contents .process .details .item .icon {
	flex-shrink: 0;
}

.sub-contents .process .details .item span {
	color: #939393;
	font-size: 12rem;
	font-weight: 700;
}

.sub-contents .process .details .item dl {
	width: 100%;
}

.sub-contents .process .details .item dl * {
	color: #333;
}

.sub-contents .process .details .item dl dt,
.sub-contents .process .details .item dl p b {
	font-weight: 600;
}

.sub-contents .process .details .item dl dt {
	font-size: 2.4rem;
	margin-bottom: 30px;
}

.sub-contents .process .details .item dl dd {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.sub-contents .process .details .item dl p {
	font-size: 2rem;
	font-weight: 300;
}

.sub-contents .process .details .item .icon {
	margin-left: auto;
}

.sub-contents .process .details a {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
	background: var(--color-primary);
	border-radius: 20px;
	padding: 30px 40px;
	margin-top: calc(var(--gap90) + 20px);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .process .details a span {
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 600;
	font-family: var(--font-pretendard);
}

.sub-contents .faq .item-box {
	border-top: 2px solid #333;
}

.sub-contents .faq .item em,
.sub-contents .faq .item .plus {
	flex-shrink: 0;
}

.sub-contents .faq .item em {
	color: var(--color-primary);
	font-size: 3rem;
	font-weight: 700;
}

.sub-contents .faq .item p {
	color: #333;
	font-size: 2rem;
	font-family: var(--font-pretendard);
	text-align: left;
}

.sub-contents .faq .q,
.sub-contents .faq .a {
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.sub-contents .faq .q,
.sub-contents .faq .a .row {
	column-gap: 20px;
}

.sub-contents .faq .q {
	min-height: 100px;
	padding: 20px 60px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .faq .q em {
	transform: translateY(-0.08em);
}

.sub-contents .faq .q p {
	font-weight: 500;
}

.sub-contents .faq .q .plus {
	width: 16px;
	height: 16px;
	position: relative;
	margin-left: auto;
}

.sub-contents .faq .q .plus span {
	display: block;
	background: #ccc;
	transition: all 0.4s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .faq .q .plus span:first-child {
	width: 2px;
	height: 100%;
}

.sub-contents .faq .q .plus span:last-child {
	width: 100%;
	height: 2px;
}

.sub-contents .faq .q.on .plus span:first-child {
	height: 0;
}

.sub-contents .faq .q.on .plus span:last-child {
	background: var(--color-primary);
}

.sub-contents .faq .a {
	background: #f8f8f8;
	padding: 40px 60px;
	display: none;
}

.sub-contents .faq .a p {
	font-weight: 300;
	line-height: 1.6;
	transform: translateY(0.2em);
}

.sub-contents .welfare .radial.bottom {
	display: none;
}

.sub-contents .welfare .title {
	text-align: center;
}

.sub-contents .welfare .title p {
	color: #666;
	font-size: 2.1rem;
	line-height: 1.6;
	margin-top: 30px;
}

.sub-contents .welfare .title b {
	font-weight: 600;
}

.sub-contents .welfare .perks .item {
	column-gap: 6.5%;
	padding: calc(var(--gap130) + 20px) 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.sub-contents .welfare .perks .item.bg {
	position: relative;
}

.sub-contents .welfare .perks .item.bg::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: #F4F4F4;
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .welfare .perks .item.bg .icon {
	background: var(--color-white);
}

.sub-contents .welfare .perks .img {
	max-width: 42.6135%;
	flex-shrink: 0;
}

.sub-contents .welfare .perks .text {
	width: 100%;
}

.sub-contents .welfare .perks .text h4 {
	color: var(--color-primary);
	font-size: calc(var(--font42) - 0.2rem);
	font-weight: 600;
}

.sub-contents .welfare .perks .text ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	border-top: 1px solid #E7E7E7;
	margin-top: 40px;
}

.sub-contents .welfare .perks .text ul li {
	column-gap: 20px;
	border-bottom: 1px solid #E7E7E7;
	padding: 20px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .welfare .perks .text .icon {
	width: 130px;
	height: 130px;
	flex-shrink: 0;
	background: #F6F6F6;
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .welfare .perks .text p {
	color: #333;
	font-size: 2rem;
	font-weight: 600;
}

.sub-contents .welfare .perks .text span {
	display: block;
	color: #666;
	font-size: 1.8rem;
	margin-top: 10px;
}

.sub-contents .welfare .counsel,
.sub-contents .welfare .program,
.sub-contents .welfare .program .item {
	border-radius: 20px;
}

.sub-contents .welfare .counsel {
	background: #f6f6f6;
	text-align: center;
	padding: 30px;
	margin-bottom: calc(var(--gap90) + 10px);
}

.sub-contents .welfare .counsel h3 {
	color: #222;
	font-size: calc(var(--gap42) + 0.4rem);
	font-weight: 700;
}

.sub-contents .welfare .information {
	padding: var(--gap130) 0 calc(var(--gap90) + 10px);
	position: relative;
}

.sub-contents .welfare .information>span,
.sub-contents .welfare .information .img {
	width: 100%;
	position: absolute;
}

.sub-contents .welfare .information>span {
	display: block;
	max-width: 32.935%;
	left: -30px;
	bottom: 25px;
}

.sub-contents .welfare .information .img {
	max-width: 10%;
	right: 10%;
	bottom: 0;
}

.sub-contents .welfare .information>.top {
	position: relative;
	z-index: 1;
}

.sub-contents .welfare .information>.top h3 {
	color: #222;
	font-size: calc(var(--font42) + 0.4rem);
	font-weight: 700;
	margin-bottom: 40px;
}

.sub-contents .welfare .information>.top h3 span {
	color: var(--color-primary);
}

.sub-contents .welfare .information .column * {
	color: #333;
	font-size: 2rem;
}

.sub-contents .welfare .information .column em {
	font-weight: 500;
}

.sub-contents .welfare .information .column p {
	font-weight: 300;
}

.sub-contents .welfare .information .column b {
	font-weight: 600;
}

.sub-contents .welfare .program {
	background: var(--color-white);
	padding: 60px;
}

.sub-contents .welfare .program>.top h6 {
	color: #333;
	font-size: 2.6rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.sub-contents .welfare .program>.top p {
	color: #666;
	font-size: 2rem;
	font-weight: 300;
}

.sub-contents .welfare .program .item-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	margin-top: 45px;
}

.sub-contents .welfare .program .item {
	row-gap: 5px;
	background: #EEF4F9;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .welfare .program .item * {
	color: #3C5F93;
}

.sub-contents .welfare .program .item p {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: 2rem;
	font-weight: 500;
}

.sub-contents .welfare .program .item span {
	font-size: 1.8rem;
	font-weight: 300;
}