@charset "UTF-8";

/* interview
---------------------------------------------------------------------------*/


/* .interview-list
---------------------------------------------------------------------------*/
.interview-list {
	width: 934px;
	margin: 0 auto;
}

.interview-list article {
	float: left;
	width: 427px;
	margin: 0 80px 80px 0;
}

.interview-list article:nth-child(even) {
	margin-right: 0;
}

/* .interview-thum
------------------------------------*/
.interview-thum {
	cursor: pointer;
	transition: .15s ease-out;
}

.interview-thum:hover {
	opacity: 0.5;
}

.interview-thum .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 25px;
}

.interview-thum figure {
	width: 120px;
	min-width: 120px;
}

.interview-thum figure img {
	border-radius: 5px;
}

.interview-thum .inner-s {
	padding-left: 30px;
}

.interview-thum h3 {
	margin-bottom: 12px;
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.interview-thum h2 {
	margin-bottom: 5px;
}

.interview-thum h2 strong {
	padding-right: 12px;
	color: #00773D;
	font-size: 24px;
	letter-spacing: 0.16em;
}

.interview-thum h2 em {
	font-size: 13px;
	letter-spacing: 0.3em;
}

.interview-thum p {
	text-align: justify;
	line-height: 1.7;
}

/* .btn-read
------------------------------------*/
.btn-read {
	background: url(../img/share/ico-plus3.svg) no-repeat;
	background-size: 26px 26px;
	box-sizing: border-box;
	margin-top: 22px;
	padding: 4px 0 0 37px;
	min-height: 26px;
	color: #81C15A;
	font-size: 16px;
	letter-spacing: 0.15em;
}


/* .interview-detail
---------------------------------------------------------------------------*/
.interview-detail,
.interview-detail-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1200px;
	height: 100vh;
/* 	min-height: 700px; */
	display: none;
	opacity: 0;
}

.interview-detail {
	z-index: 9998;
}

.interview-detail-bg {
	z-index: 9997;
}

.interview-detail-bg:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: #FFFFFF;
	width: 50%;
	height: 100%;
	z-index: 0;
}

/* .interview-detail-nav
------------------------------------*/
.interview-detail-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 50%;
	min-width: 600px;
	height: 100%;
	z-index: 9999;
	display: none;
	opacity: 0;
}

.interview-detail-nav:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(180deg, #81C15A 0%, #00773D 100%);
	width: 100%;
	height: 100%;
	opacity: 0.8;
	z-index: 0;
}

.interview-detail-nav .close {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #00773D;
	padding: 16px;
	z-index: 1;
	cursor: pointer;
	transition: .15s ease-out;
}

.interview-detail-nav .close:hover {
	opacity: 0.5;
}

.interview-detail-nav .close img {
	display: block;
	transition: .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.interview-detail-nav .close:hover img {
	transform: rotate(180deg);
}

/* .interview-nav
------------------------------------*/
.interview-nav {
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 0 30px 35px;
	z-index: 1;
}

.interview-nav ul {
	float: right;
	border-top: 1px solid #91C6A3;
	width: 50%;
}

.interview-nav li {
	position: relative;
	border-bottom: 1px solid #91C6A3;
	padding: 16px 50px 16px 15px;
	color: #FFFFFF;
	cursor: pointer;
}

.interview-nav li strong {
	padding-right: 15px;
	font-size: 18px;
	letter-spacing: 0.18em;
}

.interview-nav li em {
	font-size: 13px;
	letter-spacing: 0.25em;
}

.interview-nav li i {
	position: absolute;
	top: 14px;
	right: 11px;
	background-repeat: no-repeat;
	background-position: center center;
	width: 24px;
	height: 24px;
	transition: .2s ease-in-out;
}

.interview-nav li .plus {
	background-image: url(../img/share/ico-plus2.svg);
	background-size: 24px 24px;
}

.interview-nav li .zoom {
	background-image: url(../img/share/ico-zoom.svg);
	background-size: 14px 18px;
/* 	transform: rotateY(180deg); */
	opacity: 0;
}

.interview-nav li:hover .plus,
.interview-nav li.active .plus {
/* 	transform: rotateY(180deg); */
	opacity: 0;
}

.interview-nav li:hover .zoom,
.interview-nav li.active .zoom {
/* 	transform: rotateY(0deg); */
	opacity: 1;
}

/* .interview-detail-main
------------------------------------*/
.interview-detail-main,
.interview-detail-main-bg {
	position: absolute;
	top: 0;
	left: 50%;
	box-sizing: border-box;
	background-color: #FFFFFF;
	width: 50%;
	height: 100%;
	padding: 0 10px 0 40px;
}

.interview-detail-main:before,
.interview-detail-main:after {
	display: block;
	content: '';
	position: absolute;
	right: 12px;
	background-color: #FFFFFF;
	width: 4px;
	height: 12px;
	z-index: 2;
}

.interview-detail-main:before { top: 0; }
.interview-detail-main:after { bottom: 0; }

.interview-detail-main .inner {
	overflow-y: auto;
	position: relative;
	box-sizing: border-box;
	height: 100%;
	padding: 90px 50px 0 0;
}

.interview-detail-main .inner::-webkit-scrollbar {
	width: 2px;
}

.interview-detail-main .inner::-webkit-scrollbar-track {
	background: #FFFFFF;
}

.interview-detail-main .inner::-webkit-scrollbar-thumb {
	background: #B3DA9C;
}

.interview-detail-main dl {
	padding: 0 0 60px 28px;
}

.interview-detail-main dl > div {
	margin-bottom: 42px;
}

.interview-detail-main dl > div:last-of-type {
	margin-bottom: 0;
}

.interview-detail-main dt {
	position: relative;
	margin-bottom: 12px;
	color: #00773D;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.15em;
}

.interview-detail-main dt:before {
	display: block;
	content: '';
	position: absolute;
	top: 11px;
	left: -28px;
	background-color: #00773D;
	width: 18px;
	height: 1px;
	opacity: 0.4;
}

@media all and (-ms-high-contrast:none){
	.interview-detail-main dt:before {
		top: 10px;
	}
}

.interview-detail-main dd {
	text-align: justify;
}

.interview-detail-main dd p {
	margin-bottom: 10px;
	line-height: 1.75;
}

/* .interview-detail-name
------------------------------------*/
.interview-detail-name {
	position: relative;
	margin-bottom: 80px;
	padding: 24px 0 0 28px;
	color: #00773D;
}

.interview-detail-name figure {
	position: absolute;
	top: 0;
	right: 0;
}

.interview-detail-name figure img {
	border-radius: 5px;
}

.interview-detail-name h1 {
	margin-bottom: 18px;
}

.interview-detail-name h1 em {
	display: block;
	margin-bottom: 12px;
	font-size: 15px;
	letter-spacing: 0.3em;
}

.interview-detail-name h1 strong {
	display: block;
	margin-left: -1px;
	font-size: 32px;
	letter-spacing: 0.18em;
}

.interview-detail-name p br {
	display: none;
}