@charset "UTF-8";
/*------------------------
紹介
------------------------*/
.top-cont {
	align-items: stretch;
	background: #fff;
	margin-bottom: 10px;
}
.top-cont .txt {
	flex: 1;
	padding: 35px 30px 30px;
	position: relative;
}
.top-cont .txt::before {
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	right: -21px;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 40px solid transparent;
	border-left: 40px solid transparent;
	border-bottom: 40px solid var(--accentcolor);
	border-top: 0;
	transform: rotate(45deg);
	z-index: 1;
}
.top-cont .txt h2 {
	font-size: 4.4rem;
	font-weight: bold;
	color: var(--btncolor);
	line-height: 1;
	margin-bottom: 15px;
}
.top-cont .txt .position {
	display: block;
	font-size: 2.1rem;
	line-height: 1;
	margin-bottom: 15px;
}
.top-cont .txt .cat-area {
	align-items: center;
	margin-bottom: 20px;
}
.top-cont .txt .cat {
	display: block;
	padding: 8px 20px;
	color: #fff;
	line-height: 1;
	margin-right: 10px;
}
.top-cont .txt .cat.newgraduate {
	background: var(--newgraduate);
}
.top-cont .txt .cat.career {
	background: var(--career);
}
.top-cont .txt .cat-area .year {
	display: block;
	font-size: 1.8rem;
	line-height: 1;
}
.top-cont .txt .tag-area {
	flex-wrap: wrap;
	line-height: 1;
	margin-bottom: 20px;
}
.top-cont .txt .tag-area span a {
	display: block;
	padding: 8px 15px;
	border: 1px solid var(--btncolor);
	border-radius: 50vw;
	color: var(--btncolor);
	letter-spacing: .025em;
	margin: 0 5px 5px 0;
}
.top-cont .txt .tag-area span a:hover {
	background: var(--btncolor);
	color: #fff;
}
.top-cont .txt h3 {
	font-size: 2.4rem;
	font-weight: bold;
}
.top-cont .main-img {
	width: 730px;
	height: 620px;
	position: relative;
}
.top-cont .main-img::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 20px;
	right: -44px;
	width: 57px;
	height: 57px;
	background: var(--career);
	z-index: 1;
}
.top-cont .main-img::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 30px;
	right: -34px;
	width: 57px;
	height: 57px;
	background: var(--newgraduate);
	z-index: 1;
}
.top-cont .main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-img.no {
	background: var(--career);
	background: linear-gradient(45deg,var(--newgraduate) 0%, var(--career) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
	padding-bottom: 10px;
}
.main-img.no span {
	line-height: 1;
	font-size: 1.2rem;
}
.main-img.no span b{
	font-size: 4rem;
	display: inline-block;
	padding-top: .1em;
}
/*------------------------
インタビュー
------------------------*/
article {
	background: var(--bgcolor);
	padding: 10px 0;
}
article .inner {
	width: 1200px;
	margin: auto;
}
.interview-cont .history-item {
	padding: 30px;
	background: #fff;
	margin-bottom: 1px;
}
.interview-cont .history-item .img {
	width: 356px;
	height: 406px;
	margin-right: 30px;
}
.interview-cont .history-item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.interview-cont .history-item .txt {
	flex: 1;
}
.interview-cont h3 {
	font-size: 2.6rem;
	font-weight: bold;
	color: var(--btncolor);
	text-align: justify;
	line-height: 1.4;
	margin-bottom: 10px;
}
.interview-cont .cont {
	font-size: 1.8rem;
	text-align: justify;
}
.interview-cont .item {
	gap: 0 1px;
	align-items: stretch;
}
.interview-cont .item .box {
	width: 100%;
	background: #fff;
	padding: 30px;
}
@media screen and (max-width: 1240px) {
	article .inner {
		width: 1180px;
	}
}
@media screen and (max-width: 1300px) {
	.top-cont .main-img::before ,
	.top-cont .main-img::after {
		content: none;
	}
}
/*------------------------
戻る
------------------------*/
.h-back {
	width: 	1200px;
	margin: 50px auto 100px;
}
.h-back a {
	display: block;
	width: 200px;
	background:  var(--btncolor);
	padding: 15px 15px 15px 48px;
	border-radius: 50vw;
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: .025em;
	line-height: 1;
	position: relative;
}
.h-back a::after {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid var(--btncolor);
	transition: all .3s ease 0s;
}
.h-back a span::before {
	content: '';
	position: absolute;
	left: 22px;
	top: 0;
	bottom: -2px;
	margin: auto 0;
	width: 10px;
	height: 1px;
	background: var(--btncolor);
	z-index: 1;
	transition: all .3s ease 0s;
}
.h-back a span::after {
	content: '';
	position: absolute;
	left: 22px;
	top: -2px;
	bottom: 0;
	margin: auto 0;
	width: 6px;
	height: 1px;
	background: var(--btncolor);
	z-index: 1;
	transition: all .3s ease 0s;
	transform: rotate(-45deg);
}
.h-back a:hover::after {
	background: var(--btncolor);
	border: 1px solid #fff;
}
.h-back a:hover span::before ,
.h-back a:hover span::after {
	background: #fff;
}
@media screen and (max-width: 1240px)  {
	.h-back {
		width: 	1160px;
	}
}