.section_01{
	position: relative;
	/* height: 800px; */
	margin-top: -80px;
	overflow: hidden;
	aspect-ratio: 1/0.42;
	transition: 0.3s;
}
.section_01 .section_01_swiper{
	width: 100%;
	height: 100%;
}
.section_01 .section_01_swiper .swiper-slide{
	position: relative;
}
.section_01 .section_01_swiper .swiper-slide video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section_01 .section_01_swiper .swiper-slide::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);
	pointer-events: none;
}
.section_01 .section_01_swiper .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section_01 .text_area{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1;
    max-width: 1440px;
    width: 100%;
	pointer-events: none;
	transition: 0.3s;
	font-size: 70px;
}
.section_01 .text_area .small{
	color: #fff;	
	font-weight: 200;
}
.section_01 .text_area .big{
	color: #fff;
	font-weight: 600;
}
.section_01 .swiper_tool{
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translate(-50%);
	z-index: 1;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 35px;
}
.section_01 .swiper_tool .swiper_button_prev{
	display: flex;
	align-items: center;
	gap: 9px;
}
.section_01 .swiper_tool .swiper_button_prev img{
	width: 6px;
}
.section_01 .swiper_tool .swiper_button_next{
	display: flex;
	align-items: center;
	gap: 9px;
}
.section_01 .swiper_tool .swiper_button_next img{
	width: 6px;
}
.section_01 .autoplay-progress .stop_play_wrap{
	width: 100%;
	height: 100%;
	z-index: 10;
	position: relative;
}
.section_01 .autoplay-progress .stop_play_wrap button{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section_01 .autoplay-progress .stop_play_wrap button img{
	width: 7px;
}
.section_01 .autoplay-progress {
	position: relative;
	z-index: 10;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #fff;
}
.section_01 .autoplay-progress::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 1px);
	height: calc(100% - 1px);
	border: 2.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	z-index: -1;
}

.section_01 .autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: #fff;
	fill: none;
	stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}
.section_01 .autoplay-progress .stop_play_wrap .stop{

}
.section_01 .autoplay-progress .stop_play_wrap .play{
	display: none;
}
@media screen and (max-width: 1450px) {
	.section_01 .text_area {
		top: 47%;
		max-width: none;
		padding: 0 70px;
	}
}

@media screen and (max-width: 1200px) {
	.section_01 .text_area {
		font-size: 50px;
	}
}

@media screen and (max-width: 1024px) {
	.section_01 .text_area {
		font-size: 35px;
	}
	
	.section_01 .swiper_tool {
		bottom: 30px;
	}
}

@media screen and (max-width: 767px) {
	.section_01{
		margin-top: -45px;
		/* aspect-ratio: 1/0.555; */
	}

	.section_01 .text_area {
		font-size: 27px;
	}	
}

@media screen and (max-width: 680px) {
	.section_01 .text_area {
		top: 51%;
		font-size: 22px;
		text-align: center;
		padding: 0 20px;
	}

	.section_01 .swiper_tool {
		display: none;
	}
}
@media screen and (max-width: 425px) {
	.section_01 .text_area {
		font-size: 19px;
		top: 47%;
	}
}




.section_02{
	padding-top: 60px;
	transition: 0.3s;
}
.section_02 .box_wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 50px 0;
	transition: 0.3s;
}
.section_02 .box_wrap .box{
	width: 16.6666%;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: 0.3s;
}
.section_02 .box_wrap .box img{
	width: 76px;
	aspect-ratio: 1/1;
	transition: 0.3s;
}
.section_02 .box_wrap .box .text{
	margin-top: 1px;
	font-size: 18px;
	font-weight: 500;
	transition: 0.3s;
}

@media screen and (max-width: 1024px) {
	.section_02 {
		padding-top: 35px;
	}

	.section_02 .box_wrap{
		gap: 40px 0;
	}

	.section_02 .box_wrap .box .text {
		font-size: 16px;
	}

	.section_02 .box_wrap .box img{
		width: 60px;
	}
}

@media screen and (max-width: 680px) {
	.section_02 {
		padding-top: 20px;
	}
	.section_02 .box_wrap{
		justify-content: space-between;
		gap: 25px 0;
	}

	.section_02 .box_wrap .box{
		width: calc(25% - 7px);
	}

	.section_02 .box_wrap .box .text {
		font-size: 14px;
		letter-spacing: -1px;
	}
	
	.section_02 .box_wrap .box img{
		width: 45px;
	}
}





.section_03{
	padding-top: 80px; /* 이전 홈페이지 링크 있는 동안*/
	/* padding-top: 160px; */
	transition: 0.3s;
}
.section_03 .common_title{
	display: flex;
	justify-content: space-between;
}
.section_03 .common_title .left_zone{
	display: flex;
	align-items: flex-end;
	gap: 25px;
	transition: 0.3s;
}
.section_03 .common_title .left_zone .big{
	font-size: 40px;
	font-family: 'KOHIBaeumOTF';
	transition: 0.3s;
}
.section_03 .common_title .left_zone .small{
	font-size: 22px;
	transition: 0.3s;
}
.section_03 .common_title .right_zone{

}


.section_03 .contents{
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 75px;
	transition: 0.3s;
}
.section_03 .contents .box{
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	width: calc(33.3333% - 50px);
	transition: 0.3s;
}
.section_03 .contents .box .image{
	aspect-ratio: 1 / 0.6;
}
.section_03 .contents .box .tit{
	margin-top: 15px;
	font-weight: 600;
	font-size: 20px;
	color: #222;	
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 57px;
    text-overflow: ellipsis;
}
.section_03 .contents .box .con{
	margin-top: 20px;
	font-size: 18px;
	color: #656263;
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 57px;
    text-overflow: ellipsis;
}
.section_03 .contents .box .date{
	margin-top: 10px;
	font-size: 16px;
	color: #888888;
}

@media screen and (max-width: 1200px) {
	.section_03 .contents {
		gap: 36px;
	}
	.section_03 .contents .box {
		width: calc(33.3333% - 24px);
	}

	.section_03 .contents .box .con{
		-webkit-line-clamp: 3;
		max-height: 78px;
	}
}

@media screen and (max-width: 1024px) {
	.section_03 {
		padding-top: 75px;
	}

	.section_03 .common_title .left_zone {
		gap: 10px;
	}
	.section_03 .common_title .left_zone .big {
		font-size: 25px;
	}

	.section_03 .common_title .left_zone .small {
		font-size: 17px;
	}

	.section_03 .common_title .right_zone {
		width: 20px;
	}
	
	.section_03 .contents {
		margin-top: 23px;
	}

	.section_03 .contents {
		gap: 27px;
	}

	.section_03 .contents .box {
		width: calc(33.3333% - 18px);
	}

	.section_03 .contents .box {
		word-break: break-all;
	}	
	.section_03 .contents .box .tit {
		font-size: 18px;
		line-height: 24px;		
	}

	.section_03 .contents .box .con {
		margin-top: 15px;
		font-size: 17px;
	}

	.section_03 .contents .box .date {
		font-size: 15px;
	}
}


@media screen and (max-width: 680px) {
	.section_03 {
		padding-top: 50px;
	}

	.section_03 .contents {
        margin-top: 17px;
    }

	.section_03 .common_title .left_zone .big {
        font-size: 22px;
    }

	.section_03 .common_title .left_zone .small {
        display: none;
    }
	.section_03 .common_title .right_zone {
        width: 16px;
    }

	.section_03 .contents .box {
        width: 100%;
    }

	.section_03 .contents .box .tit {
		font-size: 17px;
		line-height: 22px;		
	}

	.section_03 .contents .box .con {
		margin-top: 10px;
        font-size: 16px;
        line-height: 22px;
    }

	.section_03 .contents .box .date {
		margin-top: 7px;
	}
}




.section_04{
	margin-top: 160px;
}
.section_04 .cont_area{
	margin-top: 65px;
}
.section_04 .title_area{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	transition: 0.3s;
}
.section_04 .title_area .left{
	width: 55px;
}
.section_04 .title_area .center{
	display: flex;
	flex-direction: column;
}
.section_04 .title_area .center .tit{
	text-align: center;
	font-size: 40px;
	font-family: 'KOHIBaeumOTF';
	transition: 0.3s;
}
.section_04 .title_area .center .tab_wrap{
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 55px;
}
.section_04 .title_area .center .tab_wrap .tab{
	font-weight: 600;
	font-size: 25px;
	color: #888888;
	position: relative;
	transition: 0.3s;
}
.section_04 .title_area .center .tab_wrap .tab.active{
	color: #00A990;
	font-weight: 700;
}
.section_04 .title_area .center .tab_wrap .tab.active::before{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #00A990;
	border-radius: 8px;
}
.section_04 .title_area .right{
	width: 55px;
}
.section_04 .title_area .right a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	padding: 13.5px;
	border-radius: 50%;
	transition: 0.3s;
	margin-left: auto;
}
.section_04 .cont_area {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 40px;
	display: none;
	transition: 0.3s;
}
.section_04 .cont_area.type01{
	display: flex;
}
.section_04 .cont_area[style*='display: block']{
    display: flex !important;
}
.section_04 .cont_area .box{
    width: calc(25% - 30px);
	height: 175px;
    position: relative;
	background: #F8F8F8;
	border: 1px solid #F8F8F8;
	border-radius: 5px;
	overflow: hidden;
	transition: 0.3s;
}
.section_04 .cont_area .box::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px;
	transition: 0.5s;
	opacity: 0;
}
.section_04 .cont_area .box:hover::before{
	background: linear-gradient(118deg, rgba(8,191,164,1) 0%, rgba(251,123,33,1) 50%, rgba(28,99,183,1) 100%);
	opacity: 1;
}
.section_04 .cont_area .box:hover::after{
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background-color: #0055A5;
	border-radius: 3px;
}
.section_04 .cont_area .box .text{
	padding: 40px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: relative;
	padding: 40px;
	transform: translate(2px,2px);
	border-radius: 3px 3px 100px 3px;
	z-index: 1;
	background-color: #F8F8F8;
	transition: 0.3s;
}
.section_04 .cont_area .box .text::after{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #F8F8F8;
	border-radius: 0 0 0% 0;
	width: 100px;
	height: 100px;
	display: inline-block;
	z-index: -1;
	transition: 0.5s;
}
.section_04 .cont_area .box:hover .text::after{
	border-radius: 0 0 70px 0;
}
.section_04 .cont_area .box .tit{
	position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	transition: 0.3s;
}
.section_04 .cont_area .box .date{
	position: relative;
	color: #888888;
	font-size: 16px;
	font-weight: 500;
	margin-top: 25px;
	transition: 0.3s;
}
@media screen and (max-width: 1440px) {
	.section_04 .cont_area{
		gap: 20px 20px;
	}
	.section_04 .cont_area .box{
		width: calc(25% - 15px);
		height: auto;
	}
	.section_04 .cont_area .box .text{
		padding: 25px;
	}

	.section_04 .cont_area .box:hover .text::after{
		border-radius: 0 0 50px 0;
	}
}
@media screen and (max-width: 1200px) {
	.section_04 .cont_area .box .tit{
		font-size: 17px;
	}
}
@media screen and (max-width: 1024px) {
	.section_04 {
		margin-top: 80px;
	}

	.section_04 .title_area .center .tit {		
		font-size: 30px;
	}

	.section_04 .cont_area {
		margin-top: 45px;
	}

	.section_04 .cont_area .box{
		width: calc(50% - 10px);
	}

	.section_04 .cont_area .box:hover .text::after{
		border-radius: 0 0 40px 0;
	}
	
	.section_04 .cont_area .box .date {
		margin-top: 15px;
	}

	.section_04 .title_area .right a {
		width: 20px;
		height: 20px;
		padding: 0px;
	}
	
}

@media screen and (max-width: 880px) {
	.section_04 .title_area .center .tit {		
		font-size: 25px;
	}

	.section_04 .title_area .center .tab_wrap {
		margin-top: 20px;
		gap: 35px;
	}

	.section_04 .title_area .center .tab_wrap .tab {
		font-size: 20px;
	}

	.section_04 .cont_area {
        gap: 12px;
		margin-top: 35px;
    }

	.section_04 .cont_area .box {
        width: 100%;
    }

	.section_04 .cont_area .box .text{
		display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
		padding: 20px 25px;
	}

	.section_04 .cont_area .box .text::after {
		width: auto;
		height: 100%;
		aspect-ratio: 1.5/1;
	}

	.section_04 .cont_area .box:hover .text::after{
		border-radius: 4px;
	}

	.section_04 .cont_area .box .date {
		margin-top: 0px;
	}
	
}

@media screen and (max-width: 767px) {
	.section_04 {
        margin-top: 60px;
    }
	
	.section_04 .cont_area{
		margin-top: 25px;
	}

	.section_04 .title_area .right a {
		width: 16px;
		height: 16px;
		margin-bottom: 3px;
	}
}
@media screen and (max-width: 680px) {
	.section_04 .title_area .center .tit {		
		font-size: 22px;
	}

	.section_04 .title_area .center .tab_wrap {
		margin-top: 18px;
		gap: 30px;
	}

	.section_04 .title_area .center .tab_wrap .tab {
		font-size: 17px;
	}

	.section_04 .cont_area {
        gap: 7px;
    }

	.section_04 .cont_area .box .text {
        flex-flow: column;
        align-items: flex-start;
        padding: 11px;
        gap: 7px;
    }

	.section_04 .cont_area .box .tit {
        font-size: 16px;
    }

	.section_04 .cont_area .box .date {
        font-size: 14px;
    }
	
}




/* section_05 start */
.section_05{
	margin-top: 80px;
	padding-top: 100px;
	padding-bottom: 55px;
	background-color: #072E5B;
	transition: 0.3s;
}
.section_05 .title_area{
	text-align: center;
}
.section_05 .title_area .big{
	font-size: 40px;
	font-family: 'KOHIBaeumOTF';
	color: #fff;
	transition: 0.3s;
}
.section_05 .title_area .small{
	margin-top: 20px;
	font-size: 22px;
	display: flex;
	justify-content: center;
    align-items: center;
    gap: 0 10px;
	transition: 0.3s;
}
.section_05 .text_line{
	width: 100%;
	height: 99px;
	position: relative;
	bottom: 0px;
	overflow: hidden;
	margin-top: 55px;
	transition: 0.3s;
}
.section_05 .text_line > div{
    display: block;
    width: 200%;
	height: 100%;
    position: absolute;
    overflow: hidden;
	top: 0px;
	left: 0px;
    background: url(../images/main_section05_text.svg) center center;
    background-repeat: repeat-x;
    animation: marquee 10s linear infinite;
    -webkit-animation: marquee 10s linear infinite;
	background-size: contain;
}
@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
		left: -100%;
    }
}
@-webkit-keyframes marquee {
    0% {
		left: 0;
    }

    100% {
		left: -100%;
    }
}
.section_05 .slide_area{
	overflow: hidden;
	margin-top: 40px;
	transition: 0.3s;
}
.section_05 .slide_area .section_05_swiper{	
	margin: 0 -50px;
}
.section_05 .slide_area .section_05_swiper .swiper-slide{
	width: auto;
	aspect-ratio: 1/0.726;
}
.section_05 .slide_area .section_05_swiper .swiper-slide img{
	/* height: 450px; */
}
.section_05 .slide_area .section_05_swiper .swiper-slide .tit{
	margin-top: 15px;
	font-size: 20px;
	color: #fff;
	transition: 0.3s;
}
.section_05 .slide_tool {
	position: relative;
	display: flex;
    justify-content: center;
    gap: 0px 45px;
	margin-top: 50px;
	transition: 0.3s;
}
.section_05 .slide_tool::after {
	position: absolute;
	content: '';
	width: 1px;
	height: 89px;
	background: #1D5598;
	top: 0;
	left: 50%;
	transform: translateX(-1px);
	transition: 0.3s;
}
.section_05 .slide_tool .btn {
    padding: 15px 12px;
}
.section_05 .slide_tool .btn img{
	width: 9px;
}


@media screen and (max-width: 1200px) {
	.section_05 {
		margin-top: 140px;
		padding-top: 100px;
		padding-bottom: 25px;
	}
}

@media screen and (max-width: 1024px) {
	.section_05 {
		margin-top: 120px;
		padding-top: 60px;
	}

	.section_05 .title_area .big {
		font-size: 25px;
	}

	.section_05 .title_area .small {
		margin-top: 13px;
		font-size: 17px;
	}

	.section_05 .title_area .small a {
		width: 22px;
	}

	.section_05 .slide_tool {
		margin-top: 30px;
	}

	.section_05 .slide_tool .btn {
		padding: 9px 10px;
	}

	.section_05 .slide_area {
		margin-top: 18px;
	}

	.section_05 .slide_area .section_05_swiper {
		margin: 0 -234px;
	}

	.section_05 .slide_area .section_05_swiper .swiper-slide .tit{
		margin-top: 9px;
		font-size: 17px;
	}

	.section_05 .text_line {
		margin-top: 27px;
		height: 73px;
	}

	.section_05 .text_line > div {
		background-size: cover;
	}
}

@media screen and (max-width: 680px) {
	.section_05 {
        margin-top: 70px;
        padding-top: 40px;
		padding-bottom: 13px;
    }

	.section_05 .slide_tool {
        display: none;
    }

	.section_05 .slide_area {
        margin-top: 30px;
    }

	.section_05 .title_area .big {
        font-size: 22px;
    }

	.section_05 .title_area .small {
        margin-top: 10px;
        font-size: 15px;
    }

	.section_05 .slide_area .section_05_swiper {
		margin: 0 -254px;
	}

	.section_05 .slide_area .section_05_swiper .swiper-slide .tit{
		font-size: 16px;
	}

	.section_05 .text_line {
        margin-top: 18px;
		height: 50px;
	}
}

@media screen and (max-width: 425px) {
	.section_05 {
        margin-top: 50px;
    }
	.section_05 .slide_area .section_05_swiper {
		margin: 0 -180px;
	}
}
/* section_05 end */





/* section_06 start */
.section_06{
	padding-top: 170px;
	padding-bottom: 220px;
	transition: 0.3s;
}
.section_06 .title_area .sub{
	font-size: 25px;
	font-weight: 600;
	transition: 0.3s;
}
.section_06 .title_area .main{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 15px;
	transition: 0.3s;
}
.section_06 .title_area .main .left{
	font-size: 70px;
	font-family: 'KOHIBaeumOTF';
	transition: 0.3s;	
}
.section_06 .title_area .main .right{

}
.section_06 .contents_area{
	position: relative;
	margin-top: 75px;
	transition: 0.3s;
}
.section_06 .contents_area .text{
	position: absolute;
	bottom: 55px;
	left: 0;
	font-size: 60px;
	color: #BCBCBC;
	line-height: 1.35;
	z-index: 2;
	transition: 0.3s;
}
.section_06 .contents_area .text span{
	font-weight: 800;
}
.section_06 .contents_area .image{
	width: 795px;
	height: 448px;
	margin-left: auto;
	position: relative;
	transition: 0.3s;
}
.section_06 .contents_area .image video{
	display: block;
	width: 100%;
	height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: -15px 40px 40px #00000026;
	transition: 0.3s;
}
.section_06 .contents_area .image button{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 69px;
	height: 69px;
	z-index: 1;
	background-color: #FF8000;
}
.section_06 .contents_area .image button img{
	width: 15.5px;
}

@media screen and (max-width: 1200px) {
	.section_06 {
		padding-top: 130px;
		padding-bottom: 190px;
	}

	.section_06 .title_area .sub {
		font-size: 22px;
	}

	.section_06 .title_area .main .left {
		font-size: 60px;
	}
}
@media screen and (max-width: 1024px) {
	.section_06 {
		padding-top: 70px;
		padding-bottom: 100px;
	}

	.section_06 .title_area .sub {
		font-size: 20px;
	}

	.section_06 .title_area .main .left {
		font-size: 35px;
	}

	.section_06 .contents_area {
		margin-top: 30px;
	}

	.section_06 .contents_area .text {
		display: none;
	}

	.section_06 .contents_area .image {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 0.563;
	}

	
}
@media screen and (max-width: 768px) {
	.section_06 .title_area .main .right {
		width: 19.5px;
		margin-bottom: 7px;
	}

	.section_06 .contents_area .image video {
		box-shadow: -20px 20px 40px #00000026;
	}

}
@media screen and (max-width: 680px) {
	.section_06 {
		padding-top: 40px;
		padding-bottom: 50px;
	}

	.section_06 .title_area .sub {
        font-size: 16px;
    }
	.section_06 .title_area .main {
		margin-top: 5px;
	}
	.section_06 .title_area .main .left {
        font-size: 20px;
    }

	.section_06 .title_area .main .right {
		width: 15.8px;
		margin-bottom: 3px;
	}

	.section_06 .contents_area {
        margin-top: 15px;
    }

	.section_06 .contents_area .image button {
		width: 44px;
		height: 44px;
	}

	.section_06 .contents_area .image button img {
		width: 13.3px;
	}
}
/* section_06 end */




/* .section_07 start */
.section_07{
	padding-top: 130px;
	padding-bottom: 60px;
	background-color: #F8F8F8;
	transition: 0.3s;
}
.section_07 .zone_wrap{
	display: flex;
	flex-flow: row wrap;	
	justify-content: space-between;
	transition: 0.3s;
}

.section_07 .box {
	width: 600px;
	margin-bottom: 125px;
	transition: 0.3s;
}
.section_07 .box.ver02{
	padding-top: 70px;
	padding-bottom: 245px;
	margin-bottom: 0;
}

.section_07 .box.ver03{
	margin-top: -230px;
}

.section_07 .box.ver02 .small{
	color: #1C63B7;
	font-size: 25px;
	font-family: 'Roboto';
}
.section_07 .box.ver02 .big{
	font-size: 40px;
	font-family: 'KOHIBaeumOTF';
	margin-top: 5px;
}
.section_07 .box .text{
	margin-top: -50px;
    z-index: 1;
    position: relative;
}
.section_07 .box .text .tit{
	background-color: #F8F8F8;
	color: #222;
	padding: 28px 30px 14px 30px;
	max-width: 260px;
	font-size: 27px;
	font-weight: 800;
}
.section_07 .box .text .list{
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 22px;
	font-weight: 300;
	padding-left: 30px;
	margin-top: 27px;
}


@media screen and (max-width: 1300px) {
	.section_07 .box {
		width: calc(50% - 30px);
	}
}

@media screen and (max-width: 1024px) {
	.section_07 {
		padding-top: 60px;
		padding-bottom: 70px;
	}

	.section_07 .box.ver02 {
		width: 100%;
		text-align: center;
		padding: 0px;
		margin-bottom: 50px;
	}
	
	.section_07 .box {
        width: calc(33.3334% - 18px);
		margin-bottom: 0px;
    }

	.section_07 .box.ver03 {
		margin-top: 0px;
	}

	.section_07 .box.ver02 .small{
		font-size: 16px;
	}

	.section_07 .box.ver02 .big {
		font-size: 25px;
	}

	.section_07 .box .text {
		margin-top: -30px;
	}

	.section_07 .box .text .tit {
		padding: 17px 20px 5px 10px;
		font-size: 20px;
		max-width: 170px;
	}

	.section_07 .box .text .list {
		gap: 18px;
		font-size: 18px;
		padding-left: 10px;
		margin-top: 25px;
	}
}

@media screen and (max-width: 680px) {
	.section_07 {
		padding-top: 30px;
		padding-bottom: 50px;
	}
	.section_07 .box.ver02 {		
        margin-bottom: 25px;
    }
	.section_07 .box.ver02 .small {
        font-size: 14px;
    }
	.section_07 .box.ver02 .big {
        font-size: 22px;
    }

	.section_07 .box {
        width: 100%;
        margin-bottom: 40px;
    }

	.section_07 .box .text .list {
        flex-flow: row wrap;
        font-size: 17px;
        margin-top: 20px;
		justify-content: space-between;
    }

	.section_07 .box .text .list li {
		width: calc(50% - 10px);
	}
}

/* .section_07 end */





/* .section_08 start */
.section_08{
	width: 100%;
	height: 500px;
	background: url(../images/main_section08_bg01_p.png) center;
	background-size: cover;
	position: relative;
	transition: 0.3s;
}
.section_08 .layout_max{
	height: 100%;
}

.section_08 .in {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
	transition: 0.3s;
}
.section_08 .in .text_wrap{
	font-weight: 200;
	font-size: 40px;
	color: #fff;
	line-height: 1.4;
	transition: 0.3s;
}
.section_08 .in .text_wrap b{}
.section_08 .in > a{
	display: inline-flex;
	padding: 19px 37px 21px;
	border: 1px solid #fff;
	font-size: 22px;
	color: #fff;
	white-space: nowrap;
	margin-top: 40px;
	transition: 0.3s;
}
.section_08 .in > a i{
	display: inline-block;
	margin-right: 10px;
}
@media screen and (max-width: 1920px) {
	.section_08{
		width: 100%;
		height: 400px;
	}
}

@media screen and (max-width: 1024px) {
	.section_08{
		height: 310px;
		background: url(../images/main_section08_bg01_t.png) center;
		background-size: cover;
	}

	.section_08 .in {
		padding: 0 35px;
	}

	.section_08 .in .text_wrap{
		font-size: 30px;
	}

	.section_08 .in > a {
		padding: 17px 28px;
		font-size: 20px;
		margin-top: 25px;
	}
}

@media screen and (max-width: 680px) {
	.section_08{
		height: auto;
        min-height: 300px;
        background: url(../images/main_section08_bg01_m.png) center;
        background-size: cover;
        padding: 35px 0;
	}

	.section_08 .in {
        padding: 0 15px;
    }

	.section_08 .in .text_wrap {
        font-size: 22px;
        display: flex;
        flex-flow: column;
    }

	.section_08 .in .text_wrap > br {
		display: none;
	}

	.section_08 .in > a {
		width: 100%;
		font-size: 18px;
		justify-content: center;
	}

	.section_08 .in > a i {
		width: 16px;
	}
}

/* .section_08 end */



/* .section_09 start - 240823 */
.section_09 {
	width: 100%;
	background: url(../images/old_link_bg.png) left top no-repeat #3F4C77;
	background-size: contain;
	position: relative;
	transition: 0.3s;
	margin-top: 80px;
}
.section_09 .layout_max {	
	height: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	transition: 0.3s;
}

.section_09 h2.tit {
	display: flex;	
	min-width: 450px;
	color: #FFF;	
	font-size: 30px;
	font-weight: 600;
	justify-content: center;
    align-items: center;
	letter-spacing: -1px;
	transition: 0.3s;
}

.section_09 div.con {
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	justify-content: space-between;
	padding: 16px 0;
	transition: 0.3s;
}

.section_09 .con > .box {
	display: flex;
	min-width: 204px;	
}

.section_09 .con > .box.box_wide {
	flex: 1 0 auto;
}

.section_09 .con > .box > ul {
	width: 100%;
}

.section_09 .con > .box > ul > li {
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 20px;
	padding-right: 78px;
	border-bottom: 1px solid #505D8A;
}

.section_09 .con > .box:last-child > ul > li {
	padding-left: 20px;
	padding-right: 0px;
}

.section_09 .con > .box > ul > li:last-child {
	border-bottom: 0px;
}

.section_09 .con > .box > ul > li > div {
	display: flex;
	flex-flow: row nowrap;
	width: 164px;
	justify-content: space-between;
	align-items: center;
}

.section_09 .con > .box > ul > li > div > h3 {
	font-size: 18px;
	font-weight: 400;
	color: #FFF;
}

.section_09 .con > .box > ul > li > div > a {
	display: flex;
	width: 28px;
	height: 28px;
	border-radius: 2px;
	background: #4D5B88;
	border: 1px solid #56638E;
	justify-content: center;
	align-items: center;
}

.section_09 .con > .box > ul > li > div > a > img {
	display: block;
	width: 14px;
}

.section_09 .con > .box > ul > li:hover > div > a {
	background: #F47216;
	border: 1px solid #E66001;
}

.section_09 .con > .box > ul > li:hover > div > a > img {
	content: url(../images/icon_house_white_type02.svg);
}


@media screen and (max-width: 1500px) {
	.section_09 h2.tit {
		display: flex;
		flex: 0 0 auto;
		min-width: auto;
		padding: 0 30px;		
	}

	.section_09 div.con {
		width: auto;
		flex: 0 1 auto;
	}

	.section_09 .con > .box > ul > li,
	.section_09 .con > .box:last-child > ul > li {
		padding-left: 10px;
		padding-right: 40px;
	}

	.section_09 .con > .box:last-child > ul > li {
		padding-right: 10px;
	}
}

@media screen and (max-width: 1200px) {
	.section_09 h2.tit {
		font-size: 25px;
        word-break: keep-all;
		flex: 1 1 auto;
		line-height: 33px;
    }

	.section_09 div.con {
		padding: 8px 0;
		gap: 20px;
	}

	.section_09 .con > .box {
		min-width: auto;
	}

	.section_09 .con > .box > ul > li, 
	.section_09 .con > .box:last-child > ul > li {
		padding-top: 10px;
		padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 0px;
    }

	.section_09 .con > .box > ul > li > div {
		width: auto;
		gap: 15px;
	}

	.section_09 .con > .box > ul > li > div > h3 {
		min-width: 90px;
		font-size: 17px;		
	}
}

@media screen and (max-width: 1024px) {
	.section_09 h2.tit {
        padding: 0 20px 0 0;
		font-size: 22px;
        line-height: 28px;
    }
}

@media screen and (max-width: 767px) {
	.section_09 {
		background: #3F4C77;
		margin-top: 60px;
	}

	.section_09 .layout_max {
		flex-flow: column;
	}

	.section_09 h2.tit {
        padding: 0;
        font-size: 20px;
        line-height: 28px;
        margin: 20px 0 0;
    }

	.section_09 div.con {
        padding: 8px 0 15px;
    }

	.section_09 .con > .box {
        min-width: auto;
        width: calc(25% - 15px);
    }

	.section_09 .con > .box.box_wide {
		flex: 0 0 auto;
	}

	.section_09 .con > .box > ul > li, 
	.section_09 .con > .box:last-child > ul > li {
        padding-top: 7px;
        padding-bottom: 7px;
    }
}

@media screen and (max-width: 630px) {
	.section_09 {		
		margin-top: 40px;
	}

	.section_09 div.con {
		flex-wrap: wrap;
		gap: 0px 20px;
	}

	.section_09 .con > .box {
        width: calc(50% - 10px);
    }

	.section_09 .con > .box:first-child > ul > li:last-child {
		border-bottom: 1px solid #505D8A;
	}

	.section_09 .con > .box > ul > li > div > h3 {
        min-width: auto;
        font-size: 16px;
    }
}

/* .section_08 end */