@charset "utf-8";
/* MESSAGE CSS
--------------------------------------- */
.page-recruitmessage .section-recruit-links .link3 {
	display: none;
}

.js-modal {
	overflow-x: hidden;
}
.modal-list {
	display: flex;
	flex-wrap: wrap;
	padding-left: 5%;
	padding-right: 5%;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
}

.modal-list .voice__item {
    cursor: pointer;
	z-index: 1;
}

.list-view .card__heading-ja {
	opacity: 1;
	color: #333;
	font-size: 1.4rem;
}

.list-view .card__heading {
	color: #000;
	padding: 5px 0;
}

.list-view .card__counter {
	position: relative;
	color: #000;
}

.list-view .card__counter::after {
	content:"";
	width: 20px;
	height: 1px;
	position: absolute;
	left: -25px;
	top: 50%;
	margin-top: -1px;
	background: #000;
	display: block;
}
.list-view .card__counter::before {
    left: 50px;
	top: 1px;
}

/* btn-viewmore */
.btn-viewmore {
	display: inline-block;
    width: 92px;
	right: 0;
	bottom: 0;
    position: absolute;
    border-bottom: 2px solid #000;
    padding: 0;
	text-align: center;
}
.btn-viewmore .f-teko {
	padding-left: 12px;
}
.btn-viewmore .icon-plus {
	content: "";
    width: 10px;
    height: 10px;
    position: relative;
	left: 5px;
	transition: all ease 0.28s;
	display: inline-block;
}

.btn-viewmore .icon-plus:before, 
.btn-viewmore .icon-plus:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #000;
    top: 50%;
    left: 50%;
	transition: all ease 0.28s;
}
.btn-viewmore .icon-plus:before {
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-viewmore .icon-plus:after {
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.modal-window:hover .btn-viewmore .icon-plus {
	-webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
	transform-origin: center center;	
}

.modal-background {
	position: relative;
}
	
@media print, (min-width: 768px) {

	.modal-list .voice__item {
		width: 48%;
	}	
}
@media print, (min-width: 992px) {
	
	.modal-list .voice__item {
    	width: 33.33333333%;
	}

}

@media print, (max-width: 767px) {
	.modal-list .voice__item {
		width: 85%;
    	max-width: 480px;
    	margin-left: auto;
    	margin-right: auto;
	}
}
@media (max-width: 480px) {
	.modal-list .voice__item {
		width: 95%;
		max-width: none;
	}	
}
/* voice ------------------------------------ */
.voice__item {
	margin-bottom: 30px;
}

.voice__item .list-view {
	background: #fff;
    width: 85%;
    left: 15%;
    top: -30px;
    position: relative;
    padding: 25px 0 35px 25px;
    box-sizing: border-box;
}

.modal-window {
	display: block;
    padding: 0 25px;
}

.inner-voice .pic img {
	width: 85%;
    height: 85%;
	display: block;
}

.voice__bg {
	height: 15em;
    width: 15em;
    position: absolute;
    top: 7.5rem;
    z-index: -1;
	transition: all 0.25s ease;
}

.voice__item {
	position: relative;
}

.voice__item::before {
	content: "";
    display: block;
    height: 0;
    padding-bottom: 70%;
    width: 70%;
    position: absolute;
    left: 15%;
    top: 8%;
    background: #000;
    z-index: -1;
    transition: all ease-in 0.28s;
}

.voice__subtitle {
	position: relative;
	margin: 0;
	font-size: 0.85em;
}

.voice:hover .voice__subtitle {
	color: #999;
}

.voice__name,
.voice__subtitle,
.voice__description {
	opacity: 0;
	position: absolute;	
}
@media print, (min-width: 768px) {
	.voice__item:hover::before {
		padding-bottom: 80%;
		width: 80%;
		left: 10%;
	}
}

@media (max-width: 480px) {
	.modal-window {
		padding: 0;
	}
	.voice__item::before {
		left: 20%;
	}
}

/* modal ----------------------------- */

.disable-mouse {
	pointer-events: none;
}

body.disable-scroll {
	overflow: hidden;
	height: 100%;
}

.modal-content {
	padding-top: 90px;
}

#btn-close-modal {
	width: 65px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    display: block;
    padding-top: 5px;
    position: fixed;
    right: 17px;
    top: 0;
    z-index: 999;
    background: #000;
}
#btn-close-modal:hover {
	cursor: pointer;
}

#btn-close-modal .btn-x {
	position: relative;
	width: 40px;
    height: 40px;
	display: block;
	margin: 0 auto;
	transition: 0.3s ease;
}
#btn-close-modal .btn-x::before,
#btn-close-modal .btn-x::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 5px;
    top: 20px;
	-webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

#btn-close-modal .btn-x::before {
	-webkit-transform: translateY(-9px);
    -ms-transform: translateY(-9px);
    transform: translateY(-9px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);	
}

#btn-close-modal .btn-x::after {
	-webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);	
}

#btn-close-modal:hover .btn-x {
	opacity: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);	
}

#btn-close-modal .btn-txt {
	line-height: 1;
	position: relative;
    top: -5px;
}

.inner-details {
	padding: 0 5% 40px 5%;
	box-sizing: border-box;
    position: relative;
	width: 100%;
    height: 100%;
}

.inner-details .detail-view,
.inner-details .list-view {
	width: 100%;
	text-align: left;
	padding-right: 46.5%;
	padding-left: 5%;
	box-sizing: border-box;
}

.inner-detailtxtvoice {
	padding: 30px 0 30px 0;
}
.inner-detailtxtvoice.flex {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	-webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.inner-detailtxtvoice.flex .pic {
	width: 35%;
}
.inner-detailtxtvoice .counter {
	font-size: 2.0rem;
	color: #fff;
}

.inner-detailtxtvoice .counter.scount:before {
	color: #fff;
	font-size: 1.7rem;
	line-height: 1.4;
	left: 70px;
}
.inner-detailtxtvoice .counter::after {
	content:"";
	width: 100px;
	position: absolute;
	height: 1px;
	background: #fff;
	transform: translateX(-170%);
    top: 10px;
}
.js-modal .divCount .scount:before {
    font-family: "Lato", sans-serif;
    position: absolute;
    font-weight: 700;
}
.js-modal .divCount:nth-child(1) .scount:before {
	content: "01";
}
.js-modal .divCount:nth-child(2) .scount:before {
	content: "02";
}
.js-modal .divCount:nth-child(3) .scount:before {
	content: "03";
}
.js-modal .divCount:nth-child(4) .scount:before {
	content: "04";
}
.js-modal .divCount:nth-child(5) .scount:before {
	content: "05";
}
.js-modal .divCount:nth-child(6) .scount:before {
	content: "06";
}
.js-modal .divCount:nth-child(7) .scount:before {
	content: "07";
}
.js-modal .divCount:nth-child(8) .scount:before {
	content: "08";
}
.js-modal .divCount:nth-child(9) .scount:before {
	content: "09";
}
.js-modal .divCount:nth-child(10) .scount:before {
	content: "010";
}
.js-modal .divCount:nth-child(11) .scount:before {
	content: "011";
}
.js-modal .divCount:nth-child(12) .scount:before {
	content: "012";
}
.js-modal .divCount:nth-child(13) .scount:before {
	content: "013";
}
.js-modal .divCount:nth-child(14) .scount:before {
	content: "014";
}
.js-modal .divCount:nth-child(15) .scount:before {
	content: "015";
}
.js-modal .divCount:nth-child(16) .scount:before {
	content: "016";
}
.js-modal .divCount:nth-child(17) .scount:before {
	content: "017";
}

.js-modal > div {
    height: 100vh !important;
	overflow-y: hidden !important;
}

.js-modal > div .modal-background {
	height: 100%;
	overflow: auto;
}

.inner-detailtxtvoice .txt-voice {
	line-height: 1.75;
}

.staff-intro {
	width: 60%;
}
.details__subtitle {
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 20px;
	/*max-width: 55%;*/
	transition: all 0.5s ease;
    line-height: 1.4;
}

.modal-container.zoomIn .details__subtitle {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	animation-delay: 0.9s;
    letter-spacing: 0.22em;
	padding-top: 10px;
}

.details__description {
	/*max-width: 55%;
	margin: 2em 0 0 0;*/
    line-height: 1.85;
	color: #222;
	transition: all 0.5s ease;
	opacity: 0;
	transform: translateY(30px);
	visibility: hidden;
}

.modal-container.zoomIn .details__description {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	animation-delay: 1s;
}

.card__heading-ja {
	line-height: 1.7;
	font-size: 1.4rem;
	color: #fff;
	opacity: 0.4;
}

.card__text {
	color: #fff;
	line-height: 1.8;
	letter-spacing: 0.055em;
}

.detail-view {
	line-height: 1.8;
	font-size: 1.6rem;
	letter-spacing: 0.055em;
}

.f-wh60{
	color: #fff;
	opacity: 0.6;
}
.card__faq {
	border-top: 1px solid rgba(255,255,255,0.15);
	margin-top: 20px;
}

.box_faq .t-question,
.box_faq .t-answer {
	position: relative;
	padding-left: 25px;
	color: #fff;
	opacity: 0.7;
}
.box_faq .t-question::before {
	position: absolute;
	left: 0;
	top: 0;
	content:"Q.";
	color: #fff;
}

.box_faq .t-answer::before {
	position: absolute;
	left: 0;
	top: 0;
	content:"A.";
	color: #fff;
}

.card__faq .box_faq {
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-top: 20px;
	padding-bottom: 20px;
}

.card__faq .stxt {
	color: #fff;
	opacity: 0.7;
}

.card__faq .stxt.reason {
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
	.inner-details {
		height: auto;
		background: #000;
	}
	.inner-detailtxtvoice {
	    width: 100%;
	}
	.modal .details__img {
		position: relative;
		top: 0;
		right: 0;
	    width: 100%;
	    max-width: 500px;
	}
	
	.modal.show .details__img {
		left: 50%;
		transform: translateX(-50%);
	}
}


@media (max-width: 800px) {
	.inner-detailtxtvoice.flex {
		display: block;
		padding-top: 0;
	}
	
	.staff-intro,
	.inner-detailtxtvoice.flex .pic {
		width: 100%;
	}
	.inner-detailtxtvoice.flex .pic {
		text-align: center;
		margin-bottom: 25px;
	}
	.inner-detailtxtvoice.flex .pic img {
		max-width: 420px;
	}
}

@media (max-width: 480px) {
	.modal-content {
		padding-top: 70px;
	}
	.inner-detailtxtvoice.flex .pic img {
		max-width: none;
		width: 100%;
	}
	.inner-detailtxtvoice {
		padding-bottom: 0;
	}
	.details__subtitle {
		font-size: 1.85rem;
	}
}

/* sec-smile ---------------------------------- */
.sec-smile {
	position: relative;
	z-index: 1;
}
.sec-smile::before {
	content:"";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/recruit/message/img_smile02_02.jpg) no-repeat center 50%;
	background-size: 100% auto;
	z-index: -1;
}

.sec-smile h2 {
	z-index: +1;
	text-align: center;
}

.sec-smile h2 .smile-en {
	opacity: 0.55;
	display: block;
	width: 100%;
	text-align: center;
}


@media print, (min-width: 768px) {
	.page-recruitmessage .recruit-gallery .gallery-list li {
		width: 25%;
	}
}

@media (max-width: 991px) {
	.sec-smile::before {
		background-size: auto 100%;
	}
	.sec-smile h2 .smile-en {
		max-width: 70%;
		margin-left: auto;
		margin-right: auto;
	}

}

@media (max-width: 640px) {
	.sec-smile h2 .smile-en {
		max-width: 80%;
	}
}

@media (max-width: 480px) {
	.sec-smile h2 .smile-en {
		max-width: 90%;
	}
}