.ms-top-feature-box {
	margin-bottom: 48px;
	font-family: "Noto Sans JP", sans-serif;
}

.ms-top-feature-box .feature-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ms-top-feature-box .feature-header {
	color: #333333;
	margin-bottom: 20px;
}

.ms-top-feature-box .feature-header .feature-title {
	font-size: 30px;
	font-weight: 900;
	padding-right: 24px;
}

.ms-top-feature-box .feature-header .feature-sub-title {
	font-size: 15px;
	font-weight: 500;
}

.ms-top-feature-box .feature-wrapper {
    position: relative;
    display: flex;
    gap: 30px;
    background-color: #FFFFFF;
    padding: 8px;
    text-decoration: none!important;
    border-radius: 16px;
    overflow: hidden;
}

.ms-top-feature-box .feature-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.ms-top-feature-box .feature-wrapper:hover::after {
    opacity: 0.4;
}

.ms-top-feature-box .feature-wrapper .feature-img {
    width: 362px;
    height: 172px;
    border-radius: 10px;
    overflow: hidden;
}

.ms-top-feature-box .feature-wrapper .feature-img img {
    width: 362px;
    height: 172px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.ms-top-feature-box .feature-wrapper:hover .feature-img img {
    transform: scale(1.09);
}

.ms-top-feature-box .feature-wrapper .feature-info {
    width: 470px;
    align-self: center;
}

.ms-top-feature-box .feature-wrapper .feature-info .feature-title {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 1.5;
}

.ms-top-feature-box .feature-wrapper .feature-info .feature-sub-title {
    font-size: 16px;
    font-weight: 700;
    color: #FF650E;
    line-height: 1.5;
    padding-top: 6px;
    padding-bottom: 16px;
}

.ms-top-feature-box .feature-wrapper .feature-info .feature-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
}
