@charset "utf-8";

/* ////////////////////////////////////////////////////////////
	File Name	person.css
*/

.body {
	padding: 0 0 180px 0;
	line-height: 2.6;
}
@media screen and (max-width: 768px) {
	.body {
		padding: 0 0 80px 0;
		font-size: 13px;
		line-height: 2;
	}
}

/*============================================================
	コンテナ
*/
.body .container {
	padding: 0;
	max-width: 960px;
}
@media screen and (max-width: 768px) {
	.body .container {
		padding: 0 27px;
	}
}

/*============================================================
	メイン
*/
.body .main {
	position: relative;
}
.body .main .kv {
	position: absolute;
	width: 100%;
	height: 680px;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.body .main .container {
	max-width: 1160px;
}
.body .main .headline {
	display: flex;
	align-items: center;
	position: relative;
	height: 680px;
	color: #00008f;
}
.body .main .headline .inner {
	width: 100%;
	flex-grow: 1;
}
.body .main .headline h1 {
	padding: 0 10px;
	font-size: 14px;
	line-height: 1.5;
}
.body .main .headline h2 {
	margin: 10px 0 0 0;
	font-weight: 400;
	font-size: 52px;
	line-height: 1.7;
	white-space: nowrap;
}
/* プロフィール */
.body .main .profile {
	position: relative;
	margin-top: -105px;
	padding: 35px 40px;
	width: 360px;
	background-color: #00008f;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.5;
	color: #fff;
	letter-spacing: 0.1em;
}
.body .main .profile::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 40px;
	width: 60px;
	height: 8px;
	background-color: #ff1721;
}
.body .main .profile dl dt {
}
.body .main .profile dl dt::after {
	content: '';
	display: block;
	margin: 15px 0;
	width: 30px;
	height: 2px;
	background-color: #fff;
}
.body .main .profile dl dd {
	margin: 0 0 10px 0;
	font-weight: 400;
	font-size: 34px;
	line-height: 1.2;
}
.body .main .profile .note {
	margin: 20px 0 0 0;
	font-weight: 400;
	font-size: 11px;
	line-height: 1.45;
}
/* パーソン別 */
.person01 .main .kv {
	background-image: url(/company/recruitment/assets/img/person/01-main-kv.jpg);
	background-position: 50% 10%;
}
.person01 .main .headline {
	text-align: right;
}
.person02 .main .kv {
	background-image: url(/company/recruitment/assets/img/person/02-main-kv.jpg);
	background-position: 50% 10%;
}
.person02 .main .headline {
	text-align: left;
}
.person03 .main .kv {
	background-image: url(/company/recruitment/assets/img/person/03-main-kv.jpg);
	background-position: 50% 10%;
}
.person03 .main .headline {
	text-align: right;
}
/* アニメーション */
.body .anim-main .headline h1,
.body .anim-main .headline h2 {
	opacity: 0;
	-webkit-transform: translateX(-30px);
	        transform: translateX(-30px);
}
.person02 .anim-main .headline h1,
.person02 .anim-main .headline h2 {
	opacity: 0;
	-webkit-transform: translateX(30px);
	        transform: translateX(30px);
}
.body .anim-main .profile {
	opacity: 0;
	-webkit-transform: translateY(30px);
	        transform: translateY(30px);
}
.body .anim-main-active .headline h1 {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.8s ease-out 0s;
	        transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.8s ease-out 0s;
	opacity: 1;
	-webkit-transform: translateX(0px);
	        transform: translateX(0px);
}
.body .anim-main-active .headline h2 {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, opacity 0.8s ease-out 0.5s;
	        transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, opacity 0.8s ease-out 0.5s;
	opacity: 1;
	-webkit-transform: translateX(0px);
	        transform: translateX(0px);
}
.body .anim-main-active .profile {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 0.8s ease-out 1s;
	        transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 0.8s ease-out 1s;
	opacity: 1;
	-webkit-transform: translateY(0px);
	        transform: translateY(0px);
}
@media screen and (max-width: 768px) {
	.body .main .kv {
		height: 0;
		padding-top: 120%;
	}
	.body .main .kv:before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 260px;
		background: -moz-linear-gradient(top, rgba(6,18,61,0) 0%, rgba(6,18,61,0.49) 70%, rgba(6,18,61,0.5) 51%, rgba(6,18,61,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(6,18,61,0) 0%, rgba(6,18,61,0.49) 70%, rgba(6,18,61,0.5) 51%, rgba(6,18,61,0.5) 100%);
		background: linear-gradient(to bottom, rgba(6,18,61,0) 0%, rgba(6,18,61,0.49) 70%, rgba(6,18,61,0.5) 51%, rgba(6,18,61,0.5) 100%);
	}
	.body .main .container {
		position: relative;
		padding: 0;
	}
	.body .main .headline {
		overflow: hidden;
		display: block;
		position: relative;
		padding-top: 120%;
		height: 0;
		text-align: left !important;
		color: #fff;
	}
	.body .main .headline .inner {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 0 0 100px 27px;
	}
	.body .main .headline h1 {
		padding: 0 2px;
		font-size: 10px;
		line-height: 1.5;
	}
	.body .main .headline h2 {
		margin: 5px 0 0 0;
		font-size: 32px;
		white-space: normal;
	}
	/* プロフィール */
	.body .main .profile {
		margin: -70px 0 0 27px;
		padding: 25px 20px 20px 20px;
		width: 240px;
		font-size: 10px;
	}
	.body .main .profile::before {
		left: 20px;
		width: 40px;
		height: 4px;
	}
	.body .main .profile dl dt::after {
		margin: 15px 0;
	}
	.body .main .profile dl dd {
		font-size: 24px;
	}
	.body .main .profile .note {
		margin: 12px 0 0 0;
		font-size: 9px;
		line-height: 1.45;
	}
	/* パーソン別 */
	.person01 .main .kv {
		background-image: url(/company/recruitment/assets/img/person/01-main-kv-sp.jpg);
	}
	.person02 .main .kv {
		background-image: url(/company/recruitment/assets/img/person/02-main-kv-sp.jpg);
	}
	.person03 .main .kv {
		background-image: url(/company/recruitment/assets/img/person/03-main-kv-sp.jpg);
	}
	/* アニメーション */
	.body .anim-main .headline h1,
	.body .anim-main .headline h2 {
		-webkit-transform: translateX(30px);
		        transform: translateX(30px);
	}
	.body .anim-main-active .headline h1,
	.body .anim-main-active .headline h2 {
		-webkit-transform: translateX(0px);
		        transform: translateX(0px);
	}
}
@media screen and (max-width: 360px) {
	.body .main .headline h2 {
		font-size: 28px;
	}
}

/*============================================================
	本文
*/
.body article {
	margin: 70px 0 0 0;
}
.body article .title {
	position: relative;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 34px;
	line-height: 1.8;
	color: #000090;
}
.body article .title:after {
	content: '';
	position: absolute;
	top: 30px;
	left: -80px;
	display: block;
	width: 40px;
	height: 2px;
	background-color: #00008f;
}
.body article p {
	line-height: 2.57;
}
@media screen and (max-width: 768px) {
	.body article {
		margin: 35px 0 0 0;
	}
	.body article .title {
		margin-bottom: 0;
		font-size: 22px;
	}
	.body article .title:after {
		position: static;
		margin: 15px 0 20px 0;
	}
	.body article p {
		line-height: 2;
	}
}

/*============================================================
	画像
*/
.body .photo {
	position: relative;
	margin: 70px 0 0 0;
	height: 480px;
}
.body .photo .inner {
	position: absolute;
	top: 0;
	bottom: 0;
}
.body .photo .inner .image {
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.body .photo .inner .image div {
	background-color: transparent;
	background-position: 50% 30%;
	background-repeat: no-repeat;
	background-size: cover;
}
.body .photo01 .inner {
	left: 50%;
	right: 60px;
}
.body .photo01 .inner .image {
	left: -480px;
	right: 0;
}
.body .photo02 .inner {
	right: 50%;
	left: 60px;
}
.body .photo02 .inner .image {
	right: -480px;
	left: 0;
}
/* パーソン別 */
.person01 .photo01 .inner .image .visible-pc {
	background-image: url(/company/recruitment/assets/img/person/01-photo01.jpg);
}
.person01 .photo02 .inner .image .visible-pc {
	background-image: url(/company/recruitment/assets/img/person/01-photo02.jpg);
}
.person02 .photo01 .inner .image .visible-pc {
	background-image: url(/company/recruitment/assets/img/person/02-photo01.jpg);
}
.person02 .photo02 .inner .image .visible-pc {
	background-image: url(/company/recruitment/assets/img/person/02-photo02.jpg);
}
.person03 .photo01 .inner .image .visible-pc {
	background-image: url(/company/recruitment/assets/img/person/03-photo01.jpg);
}
.person03 .photo02 .inner .image .visible-pc {
	background-image: url(/company/recruitment/assets/img/person/03-photo02.jpg);
}
@media screen and (max-width: 768px) {
	.body .photo {
		margin: 35px 0 0 0;
		padding-top: 82.857%;
		height: 0;
	}
	.body .photo .inner .image {
		left: 0 !important;
		right: 0 !important;
	}
	.body .photo01 .inner {
		left: 27px;
		right: 0;
	}
	.body .photo02 .inner {
		right: 27px;
		left: 0;
	}
	/* パーソン別 */
	.person01 .photo01 .inner .image {
		background-image: url(/company/recruitment/assets/img/person/01-photo01-sp.jpg);
	}
	.person01 .photo02 .inner .image {
		background-image: url(/company/recruitment/assets/img/person/01-photo02-sp.jpg);
	}
	.person02 .photo01 .inner .image {
		background-image: url(/company/recruitment/assets/img/person/02-photo01-sp.jpg);
	}
	.person02 .photo02 .inner .image {
		background-image: url(/company/recruitment/assets/img/person/02-photo02-sp.jpg);
	}
	.person03 .photo01 .inner .image {
		background-image: url(/company/recruitment/assets/img/person/03-photo01-sp.jpg);
	}
	.person03 .photo02 .inner .image {
		background-image: url(/company/recruitment/assets/img/person/03-photo02-sp.jpg);
	}
}

/*============================================================
	私が好きなAXAバリュー
*/
.body .value {
	margin: 50px 0 0 0;
}
.body .value .h {
	position: relative;
	text-align: center;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.5;
	color: #00008f;
}
.body .value .h::before {
	content: '';
	position: absolute;
	top: 17px;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #00008f;
}
.body .value .h span {
	position: relative;
	display: inline-block;
	padding: 0 1em;
	background-color: #fff;
}
.body .value .lead {
	padding: 40px 15px;
	border-bottom: 2px solid #00008f;
}
@media screen and (max-width: 768px) {
	.body .value {
		margin: 35px 0 0 0;
	}
	.body .value .h {
		font-size: 17px;
	}
	.body .value .h::before {
		top: 13px;
		height: 1px;
	}
	.body .value .lead {
		padding: 25px 15px;
		border-width: 1px;
	}
}

/*============================================================
	NEXT GOAL
*/
.body .next-goal {
	margin: 100px 0 0 0;
	position: relative;
	background-color: #00008f;
	color: #fff;
}
.body .next-goal .kv {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 50%;
	padding-right: 250px;
}
.body .next-goal .kv span {
	display: block;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-position: 50% 20%;
	background-repeat: no-repeat;
	background-size: cover;
}
.body .next-goal .container {
	display: flex;
	align-items: center;
	height: 460px;
	padding: 0 0 0 340px;
}
.body .next-goal .h {
	font-size: 30px;
	line-height: 1.5;
}
.body .next-goal .h::after {
	content: '';
	display: block;
	margin: 15px 0;
	width: 80px;
	height: 2px;
	background-color: #ff1721;
}
/* パーソン別 */
.person01 .next-goal .kv span {
	background-image: url(/company/recruitment/assets/img/person/01-photo03.jpg);
}
.person02 .next-goal .kv span {
	background-image: url(/company/recruitment/assets/img/person/02-photo03.jpg);
}
.person03 .next-goal .kv span {
	background-image: url(/company/recruitment/assets/img/person/03-photo03.jpg);
}
@media screen and (max-width: 768px) {
	.body .next-goal {
		margin: 60px 0 0 0;
	}
	.body .next-goal .kv {
		position: static;
		padding: 0;
	}
	.body .next-goal .kv span {
		padding-top: 64%;
		height: 0;
	}
	.body .next-goal .container {
		display: block;
		height: auto;
		padding: 25px 27px 35px 27px;
	}
	.body .next-goal .h {
		text-align: center;
		font-size: 23px;
	}
	.body .next-goal .h::after {
		margin: 15px auto 20px auto;
		width: 60px;
	}
	/* パーソン別 */
	.person01 .next-goal .kv span {
		background-image: url(/company/recruitment/assets/img/person/01-photo03-sp.jpg);
	}
	.person02 .next-goal .kv span {
		background-image: url(/company/recruitment/assets/img/person/02-photo03-sp.jpg);
	}
	.person03 .next-goal .kv span {
		background-image: url(/company/recruitment/assets/img/person/03-photo03-sp.jpg);
	}
}

/*============================================================
	ページ送り
*/
.body .pager {
	margin: 100px 0 0 0;
}
.body .pager .container {
	padding: 0 80px;
	max-width: 1360px;
}
.body .pager .inner {
	position: relative;
}
.body .pager .inner::after {
	content: '';
	display: block;
	clear: both;
}
.body .pager .prev,
.body .pager .next {
	display: block;
	position: relative;
	color: #000;
}
.body .pager .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: #00005b;
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	        transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.body .pager .arrow i {
	width: 18px;
	height: 18px;
}
.body .pager .text {
	display: flex;
	align-items: center;
	padding: 0 30px;
	height: 60px;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
.body .pager .text span {
	display: block;
}
.body .pager .text .name {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
}
.body .pager .prev,
.body .pager .prev .arrow,
.body .pager .prev .text {
	float: left;
	text-align: left;
}
.body .pager .next,
.body .pager .next .arrow,
.body .pager .next .text {
	float: right;
	text-align: right;
}
@media screen and (min-width: 769px) {
	.body .pager .prev:hover .arrow {
		-webkit-transform: translateX(-8px);
		        transform: translateX(-8px);
	}
	.body .pager .next:hover .arrow {
		-webkit-transform: translateX(8px);
		        transform: translateX(8px);
	}
}
@media screen and (max-width: 768px) {
	.body .pager {
		margin: 60px 0 0 0;
	}
	.body .pager .container {
		padding: 0 20px;
	}
	.body .pager .arrow {
		width: 45px;
		height: 45px;
	}
	.body .pager .arrow i {
		width: 13px;
		height: 13px;
	}
	.body .pager .text {
		padding: 0 12px;
		height: 45px;
		font-size: 10px;
	}
	.body .pager .text .name {
		font-size: 16px;
		line-height: 1.3;
	}
}
@media screen and (max-width: 360px) {
	.body .pager .container {
		padding: 0 10px;
	}
}
