@charset "utf8";
/* ----------------------------------------------
 * staff-message.html *
 ---------------------------------------------- */
.message_head {
    margin-top: 80px;
    margin-bottom: 80px;
    height: 430px;
    position: relative;
}
.message_head .inner {
	padding: 1.5em 3em 1.5em 2em;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.message_head .title {
    font-size: 36px;
    line-height: 1.4em;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.message_head .title::before {
	content: attr(data-text) "";
    font-size: 36px;
    font-family: "Hind Siliguri", sans-serif;
    font-family: "futura";
    font-weight: 700;
    font-style: normal;
    line-height: 1.4em;
    background: linear-gradient(270deg, #3907da 0%, #2d62eb 40%, #05a3fd 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.message_head .profile_text {
    font-size: 16px;
    line-height: 1.8em;
}
.message_head .profile_text span {
    font-size: 30px;
}

.message_head figure {
    width: 55vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.message_head figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
}


@media screen and (max-width: 768px) {
	.message_head {
		margin-top: 60px;
		margin-bottom: 30px;
		height: 63vw;
	}
	.message_head > .mywidth {
		padding: 0 0;
	}
	.message_head .inner {
		padding: 1.0em 0.75em;
	}
	.message_head .title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.message_head .title::before {
		font-size: 22px;
	}
	.message_head .profile_text {
		font-size: 14px;
		line-height: 1.6em;
	}
    .message_head .profile_text span {
        font-size: 22px;
    }    
    
	.message_head figure { width: 70vw; }
	.message_head figure img {
		border-radius: 25px 0 0 25px;
	}
}


.message_item {
	margin-bottom: 50px;
}
.message_item:last-of-type {
	/*margin-bottom: 0;*/
}
.message_item .message_q {
    color: #0744ba;
    font-size: 24px;
    font-weight: bold;
	padding-left: 1.25em;
    position: relative;
}
.message_item .message_q::before {
	content: "";
	display: inline-block;
	width: 0.75em;
	height: 3px;
	background-color: #0744ba;
	position: absolute;
	top: 50%;
	left:0;
}
.message_item .message_a {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.message_item {
		margin-bottom: 30px;
	}
	.message_item .message_q {
		font-size: 18px;
	}
	.message_item .message_q::before {
		top: 0.75em;
	}
	.message_item .message_a {
		margin-top: 10px;
	}
}



