.top-feature-wrapper {
    margin-top: 120px;
}

@media(max-width:992px) {
    .top-feature-wrapper {
        padding: 0;
		margin-top: 120px;
    }
}

.top-subtitle.feature {
    text-align: center;
}

.top-subtitle.underline{
	position:relative;
	margin-bottom:25px;
}

.top-subtitle.underline::before{
	position: absolute;
	content: "";
	height: 3px;
	width: 340px;
	background: var(--main-color);
	bottom: -10px;
	left: 50%;
	transform: translatex(-50%);
}

.top-mini-subtitle.feature {
    text-align: center;
    font-weight: 600;
}

.top-feature-contents {
    margin-top: 50px;
    width: 1200px;
    margin: 50px auto 140px;
}

@media(max-width:992px) {
    .top-feature-contents {
        margin: initial;
        margin-top: 50px;
        width: 100%;
    }
}

.top-feature-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: url("../../img/top/feature-img-1.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

@media(max-width:992px) {
    .top-feature-content {
        flex-direction: column;
        gap: 0;
    }
}

.top-feature-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--bg-color-5);
    opacity: 0.9;
    z-index: -1;
}

@media(max-width:992px) {
    .top-feature-content::before {
        opacity: 1;
    }
}

.top-feature-content:not(:first-child) {
    margin-top: 60px;
}

.top-feature-content:nth-of-type(2n) {
    flex-direction: row-reverse;
    background: url("../../img/top/feature-img-2.png");
}

@media(max-width:992px) {
    .top-feature-content:nth-of-type(2n) {
        flex-direction: column;
    }
}


.top-feature-content-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    margin: 10px 0 10px 10px;
}

@media(max-width:992px) {
    .top-feature-content-img {
        margin: 20px;
        width: 90%;
        height: auto;
    }
}

.top-feature-content:nth-of-type(2n) .top-feature-content-img {
    margin: 10px 10px 10px 0;
}

@media(max-width:992px) {
    .top-feature-content:nth-of-type(2n) .top-feature-content-img {
        margin: 20px;
    }
}

.top-feature-content-title {
    font-weight: bold;
    border-bottom: 4px solid #FFF;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.top-feature-content:first-of-type .top-feature-content-title {
    width: fit-content;
}

@media(max-width:992px) {
    .top-feature-content-title {
        font-size: 26px;
        line-height: 34px;
        border-bottom: 4px solid #FFF;
        padding-bottom: 10px;
    }

    .top-feature-content:first-of-type .top-feature-content-title {
        width: 100%;
    }
}

.top-feature-content-txt {
    color: #FFF;
    width: calc(100% - 460px);
}

@media(max-width:992px) {
    .top-feature-content-txt {
        width: 100%;
        padding: 0 20px 20px;
    }
}

.top-feature-content-caution {
    display: block;
    width: 100%;
    text-align: right;
    line-height: 26px;
}

@media(max-width:992px) {
    .top-feature-content-caution {
        display: initial;
    }
}

.top-feature-content-description {
    font-weight: 600;
    margin-top: 25px;
}

@media(max-width:992px) {
    .top-feature-content-description {
        font-weight: 600;
        font-size: 18px;
        padding-top: 0;
        margin-top: 0;
        line-height: 30px;
    }
}