.img_in-text {
	margin-top: 16px;
}

.interview-section .contents-wrapper > * + * {
    margin-top: 40px;
}

.interview-section .card-item .title-box > * + * {
    margin-top: 16px;
}

.interview-section .card-item .title-box .label {
    color: var(--text-emphasis);
    font-size: 24px;
    font-weight: 600;
    padding: 8px 16px;
    background-color: var(--primary-50);
    width: fit-content;
    border-radius: 4px;
}

.interview-section .card-item .title-box .name {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
}

.interview-section .card-item .title-box .message-title {
    font-size: 32px;
    line-height: 40px;
    color: var(--text-dark);
}

.interview-section .card-item .message-body > *+* {
    margin-top: 40px;
}

.interview-section .card-item .message-body .text-wrapper > *+* {
    margin-top: 16px;
}

.interview-section .card-item .flex-box {
    display: flex;
    gap: 16px;
    align-items: center;
}

.interview-section .card-item .flex-box .profile-image {
    width: 320px;
    aspect-ratio: 1/1;
}

.interview-section .card-item .message-body .text-wrapper .answer {
    text-align: justify;
    font-size: 18px;
    line-height: 32px;
}

.card-item.link {
    padding: 0;
    height: 400px;
}

.card-item.link a {
    border-radius: inherit;
    overflow: hidden;
    position: relative;
}

.card-item.link a img {
    transition: all 0.3s;
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.card-item.link a:hover img {
    transform: scale(1.05);
}

.card-item.link a .wrapper {
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-item.link a .label {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 1080px) {
	br.mobile-hidden {
		display: none;
	}
}

@media (max-width: 950px) {
	.interview-section .card-item .title-box .label {
		font-size: 18px;
	}
	
	.interview-section .card-item .title-box .name {
		font-size: 14px;
	}
	
	.interview-section .card-item .title-box .message-title {
		font-size: 24px;
		line-height: 32px;
	}
	
	.interview-section .card-item .message-body .text-wrapper > *+* {
		margin-top: 8px;
	}
	
	.card-item > * + * {
		margin-top: 40px;
	}
}

@media (max-width: 550px) {
	.page-title {
		padding-top: 32%;
	}
	
	.main-area > * + * {
		padding-top: 8%!important;
	}
	
	.card-item > * + * {
		margin-top: 40px;
	}
	
	.interview-section .card-item .flex-box {
		flex-direction: column;
	}
	
	.interview-section .card-item .flex-box .profile-image {
		width: 200px;
	}
	
	.interview-section .card-item .title-box .label, .interview-section .card-item .title-box .name {
		font-size: 16px;
		margin: auto;
		width: 200px;
        text-align: center;
	}
	
	.interview-section .card-item .title-box .message-title {
		font-size: 20px;
		line-height: 24px;
		text-align: justify;
	}
	
	.interview-section .card-item .title-box > * + * {
		margin-top: 16px!important;
	}
	
	.card-item.link {
		height: 260px;
	}
	
	.card-item.link a .label {
		font-size: 4vw;
	}
}