@charset "utf-8";

/*
共通
　└共通 / ページトップリンク / ボタン
ヘッダ
グローバルナビゲーション
　└グローバルナビゲーション（PC） / グローバルナビゲーション（SP）
フッタ
　└エントリーボタン / フッタ
トップページ
　└スライダー / スライダー部分のバナー / トップページ
下層ページ 共通
　└ページタイトル / 1col Box / ページキャッチ＆リード
PEOPLE 先輩社員インタビュー
CULTURE 環境・文化・制度について
WORK 中央交易のしごと
新卒採用・中途採用 募集要項 / サンキューページ
*/



/* 共通
-----------------------------------------------------------------*/
html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;/* 16px*/
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
}
.body-wrapper {
  overflow: hidden;
}

img {
	border: 0;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

.bg-grey {
	background: #eee;
}

.fullWrap {
	width: 100%;
}

.content-box {
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1200px) {
.content-box {
	padding: 0 30px;
}
}

.content-box-1col {
	max-width: 900px;
	margin: 0 auto;
}
@media screen and (max-width: 900px) {
.content-box-1col {
	padding: 0 30px;
}
}

.content-box-vspacer {
	padding: 40px 0 80px;
}

/* 共通 / ページトップリンク */

#pageTopLink {
    position: fixed;
		width: 60px;
    bottom: 30px;
    right: 30px;
		z-index: 100;
		cursor: pointer;
		cursor: hand;
}


/* 共通 / ボタン（トップページ・先輩社員インタビュー） */

.btn-rec {
	margin-top: 30px;
	text-align: right;
}

.btn-rec a {
    background: #fff;
		border: 1px solid #4b7298;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 350px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
		text-decoration: none;
}
.btn-rec a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn-rec a:hover {
  background: #4b7298;
  color: #FFF;
}
.btn-rec a:hover:after {
  right: 1.4rem;
}



/* テンプレート切り替え（トップページ用ヘッダ）
-----------------------------------------------------*/
.header-recruit-top {
	position: relative;
	width: 100%;
	height: 100vh;
}

/* テンプレート切り替え（下層ページ用ヘッダ）
-----------------------------------------------------*/
.header-recruit-lower {
	position: relative;
  width: 100%;
	height: 150px;
	background: linear-gradient(-140deg, #4b7399, #59c3c1);
}
@media screen and (max-width:480px) {
.header-recruit-lower {
	height: 110px;
}
}

/* ヘッダ
-----------------------------------------------------*/

h1 {
	position: absolute;
  top: 40px;
	left: 40px;
	max-width: 210px;
	z-index: 99;
}
header a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width:480px) {
h1 {
	top: 20px;
	left: 20px;
  width: 200px;
}
}



/* グローバルナビゲーション（PC）
-----------------------------------------------------*/

#main-nav {
  display: flex;
	flex-wrap: wrap;
  justify-content: flex-end;
	align-items: center;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 99;
}

#g-nav ul {
	display: flex;
	align-items: center;
}

#g-nav ul li a {
	display: block;
	padding: 34px 10px 10px;
	margin: 0 20px;
	position: relative;
	transition: all 0.3s;
}
#g-nav ul li:last-child a {
	margin: 0 70px 0 30px;
}
#g-nav ul li.hover-anime a:hover {
   color: #ffff00;
}

#g-nav ul li.hover-anime a::after {
	position: absolute;
	left: 0;
	content: ''; 
	width: 100%;
	height: 2px;
	background: #ffff00;
	bottom: -1px;
	transform: scale(0, 1);
	transition: transform 0.3s;
}
#g-nav ul li.hover-anime a:hover::after {
	transform: scale(1, 1);
}

#recruit-top #g-nav ul li.hover-anime a#gnav01::after {
	transform: none;
}
#recruit-people #g-nav ul li.hover-anime a#gnav02::after {
	transform: none;
}
#recruit-culture #g-nav ul li.hover-anime a#gnav03::after {
	transform: none;
}
#recruit-message #g-nav ul li.hover-anime a#gnav04::after {
	transform: none;
}
#recruit-work #g-nav ul li.hover-anime a#gnav05::after {
	transform: none;
}

.btn-x {
	width: 40px;
}

.btn-instagram {
	width: 40px;
}

@media screen and (min-width:1024px) and ( max-width:1200px) {
#g-nav ul li a{
	padding: 34px 10px 10px;
	margin: 0 5px;
}
#g-nav ul li:last-child a {
	margin: 0 20px 0 10px;
}
}

@media screen and (max-width:1023px) {
#g-nav{
	display: none;
}
}

/* グローバルナビゲーション（SP）
-----------------------------------------------------*/
#sp-menu {
	display: none;
}
@media screen and (max-width:1023px) {
#sp-menu {
	display: block;
}
}

#g-nav-sp.panelactive {
  position: fixed;
  z-index: 9999;
  top: 0;
  width:100%;
  height: 100vh;
}

.circle-bg{
  position: fixed;
  z-index: 9900;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #00afcc;
  transform: scale(0);
  right: -50px;
  top: -50px;
  transition: all .6s;
}
.circle-bg.circleactive {
  transform: scale(50);
}

#g-nav-list-sp {
    display: none;
    position: fixed;
    z-index: 9999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav-sp.panelactive #g-nav-list-sp{
     display: block;
}

#g-nav-sp ul {
  opacity: 0;
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#g-nav-sp.panelactive ul {
    opacity: 1;
}

#g-nav-sp.panelactive ul li {
animation-name: gnaviAnime;
animation-duration: 1s;
animation-delay: .2s;
animation-fill-mode: forwards;
opacity: 0;
}

@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#g-nav-sp li {
  text-align: center; 
  list-style: none;
}

#g-nav-sp li a {
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/* ナビボタン設定
-----------------------------------------------------*/
.openbtn {
	position: fixed;
  top: 12px;
  right: 15px;
  z-index: 10000;
  cursor: pointer;
	cursor: hand;
	width: 46px;
	height: 46px;
}
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
  left: 5px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
  width: 80%;
}
.openbtn span:nth-of-type(1) {
  top: 15px; 
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 11px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}


/* フッタ部 エントリーボタン
-----------------------------------------------------*/

.entry-btn-bg {
	background: url("../img/recruit/common/recruit_footer_entry_bg.jpg") no-repeat center center;
	background-size: cover;
	text-align: center;
}

.entry-btn-bg h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.5em;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
	padding-top: 80px;
	display: inline-block;
	margin: 0 auto 30px;
}

.icon-mail-plane {
	width: 30px;
}

.entry-btn-wrap {
	-webkit-box-sizing: border-box;
  box-sizing: border-box;
	padding: 0 0 80px 0;
	display: flex;
	justify-content: center;
}

.entry-btn {
	margin: 0 20px;
}

.entry-btn a {
	/*font-family: 'Noto Sans JP', sans-serif;*/
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 30px 90px 30px 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.entry-btn a span {
	font-size: 1.6rem;
}

a.btn--orange {
  color: #fff;
	background-color: #ff6600;
}

a.btn--orange:hover {
  color: #fff;
	background-color: #ffae00;
}

.fa-position-right {
  position: absolute;
  right: 30px;
	top: 50%;
  -webkit- transform: translateY(-50%);
	transform: translateY(-50%);
}

a.btn--radius {
    border-radius: 100vh;
}

@media screen and (max-width: 768px) {
.entry-btn-wrap {
	flex-direction: column;
	padding: 0 0 30px 0;
}
.entry-btn {
	margin: 0 auto 20px;
}
.entry-btn:last-child {
	margin: 0 auto 0;
}
.entry-btn-bg h2 {
  font-size: 2rem;
	padding-top: 80px;
}
}




/* フッタ
-----------------------------------------------------*/

footer {
	background: linear-gradient(-140deg, #4b7399, #59c3c1);
  overflow: hidden;
}

.sec-footer-info {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 30px;
	background-color: transparent;
}
.sec-footer-info .inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.f-info {
	width: 40%;
}
.f-info dl {
	margin-bottom: 10px;
}
.f-info dl dt {
	margin-bottom: 30px;
}
.f-info dl dt img {
	width: 220px;
}
.f-info dl dd {
	color: #fff;
}


.f-sitemap {
	display: flex;
	justify-content: space-between;
	width: 59%;
	padding-top: 30px;
}
.f-sitemap-item {
	width: 30%;
}
.f-sitemap-item dl dt {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 1.3em;
	margin-bottom: 20px;
	color: #fff;
}
.f-sitemap-item dl dt a {
	color: #fff;
	text-decoration: none;
  display: block;
}
.f-sitemap-item dl dd {
	font-size: 1.4rem;
}
.f-sitemap-item a {
	color: #fff;
	text-decoration: none;
}

.sec-copyright {
	width: 100%;
	background-color: transparent;
}
.sec-copyright .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.f-nav ul {
	display: flex;
}
.f-nav ul li {
	display: inline;
	list-style-type: none;
	margin-right: 20px;
	padding-left: 0px;
	font-size: 1.4rem;
}
.f-nav ul li+li {
	position: relative;
}
.f-nav ul li+li::before {
	content: "";
	display: block;
	height: 1em;
	border-left: 1px solid #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -10px;
	margin: auto;
}
.f-nav a {
	color: #fff;
	text-decoration: none;
}

.copyright p {
	color: #fff;
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}


@media screen and (max-width:1200px) {
.sec-copyright .inner {
	padding: 30px 30px;
}
}

@media screen and (max-width:1000px) {
.sec-footer-info .inner {
	flex-direction: column;
}
.f-info {
	width: 100%;
	text-align: center;
}
.f-sitemap {
	width: 100%;
	justify-content: center;
	padding-top: 20px;
}
.sec-copyright .inner {
	flex-direction: column;
}
}

@media screen and (max-width:768px) {
.sec-footer-info {
	padding-top: 50px;
	padding-bottom: 0;
}
.sec-footer-info .inner {
	padding: 15px 0 0;
}
.f-sitemap {
	display: block;
	width: 100%;
}
.f-sitemap-item {
	width: 100%;
}
.f-sitemap-item dl dt {
	color: #4b7298;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #eee;
  margin-bottom: 0;
}
.f-sitemap-item dl dt a {
	color: #4b7298;
}
.f-sitemap-item dl dd {
  display: none;
}
.copyright {
  text-align: center;
}
}

@media screen and (max-width:480px) {
.sec-copyright .inner {
  padding: 0 0 30px;
}
.f-nav {
  margin: 0;
  padding: 0;
  width: 100%;
}
.f-nav ul {
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.f-nav ul li {
  background: #eee;
  margin-right: 0;
  text-align: center;
  padding: 10px 0;
}
.f-nav ul li:last-child {
	border-left: 1px solid #ccc;
}
.f-nav ul li+li::before {  
  border: none;
}
.f-nav a {
  color: #4b7298;
  display: block;
}
#f-nav-home {
  display: none;
}
#f-nav-pp,
#f-nav-contact {
  width: 50%;
}
}



/* トップページスライド
-----------------------------------------------------*/

/* スライダー全体 */
.recruit-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: #000;
}

/* スライダー画像 */
.recruit-slide-image .recruit-slide-image-item {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*
  ①スライド画像
  表示する画像を定義
*/
.recruit-slide-image .recruit-slide-image-item:nth-of-type(1){
  background-image: url(../img/recruit/slider/slide_recruit_01.jpg);
}
@media screen and (max-width:480px) {
.recruit-slide-image .recruit-slide-image-item:nth-of-type(1){
  background-image: url(../img/recruit/slider/slide_recruit_01_sp.jpg);
}
}
.recruit-slide-image .recruit-slide-image-item:nth-of-type(2){
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  background-image: url(../img/recruit/slider/slide_recruit_02.jpg);
}
.recruit-slide-image .recruit-slide-image-item:nth-of-type(3){
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
  background-image: url(../img/recruit/slider/slide_recruit_04.jpg);
}
.recruit-slide-image .recruit-slide-image-item:nth-of-type(4){
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
  background-image: url(../img/recruit/slider/slide_recruit_01.jpg);
}
.recruit-slide-image .recruit-slide-image-item:nth-of-type(5){
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
  background-image: url("../img/recruit/slider/slide_recruit_02.jpg");
}
.recruit-slide-image .recruit-slide-image-item:nth-of-type(6){
  -webkit-animation-delay: 30s;
  animation-delay: 30s;
  background-image: url(../img/recruit/slider/slide_recruit_04.jpg);
}


/*
  ②アニメーション設定
  animation-durationのみ変更
*/
.recruit-slide-image .recruit-slide-image-item {
  animation-name: anime;
  animation-delay: 0;
  animation-iteration-count: infinite;
  animation-duration: 36s;  /* ①で設定したanimation-delayを合計を挿入 */
}

/* アニメーション定義 */
@keyframes anime {
0% {
	opacity: 0;
}
8% {
	opacity: 1;
}
17% {
	opacity: 1;
}
50% {
	opacity: 0;
	transform: scale(1.2) ;
	z-index:9;
}
100% {
	opacity: 0;
}
}



.txt-anime {
	/*max-width: 1900px;*/
  width: 60%;
	position: absolute;
	top: 50%;
	left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
}
@media screen and (max-width:480px) {
.txt-anime {
  top: 40%;
	width: 95%;
  margin: 0 auto;
}
}


/* リクナビ・doda・リクナビNEXT バナー */

.banner-recnavi2025 {
	position: absolute;
	right: 30px;
	bottom: 10px;
	z-index: 999;
  animation-name:rotateYAnimeNext;
  animation-duration:2s;
  animation-fill-mode:forwards;
}
.banner-next {
	position: absolute;
	right: 30px;
	bottom: 80px;
	z-index: 999;
  animation-name:rotateYAnimeNext;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
}
.banner-doda {
	position: absolute;
	right: 30px;
	bottom: 150px;
	z-index: 999;
  animation-name:rotateYAnimeDoda;
  animation-duration:2s;
  animation-fill-mode:forwards;
}
/* スマホ側 */ 
@media screen and (max-width:480px) {
.banner-recnavi2025 {
	right: 15px;
	bottom: 10px;
}
.banner-next {
	right: 15px;
	bottom: 80px;
}
.banner-doda {
	right: 15px;
	bottom: 150px;
}
}

@keyframes rotateYAnimeRecnavi{
  from{
    transform: rotateY(0);
    opacity: 0;
    }
  to{
    transform: rotateY(-360deg);
    opacity: 1;
    }
}
@keyframes rotateYAnimeDoda{
  from{
    transform: rotateY(0);
    opacity: 0;
    }
  to{
    transform: rotateY(-360deg);
    opacity: 1;
    }
}
@keyframes rotateYAnimeNext{
  from{
    transform: rotateY(0);
    opacity: 0;
    }
  to{
    transform: rotateY(-360deg);
    opacity: 1;
    }
}


/* トップページ
-----------------------------------------------------------------*/

.recruit-top-con {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
}
@media screen and (max-width:1200px) {
.recruit-top-con {
	padding: 80px 30px;
}
}

.heading-rec-top {
	font-size: 4rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.3em;
	margin-bottom: 10px;
	text-align: center;
}

/* 手書き文字キャッチ */

.heading-rec-top-sub {
	text-align: center;
}
.sub-people {
	max-width: 400px;
	margin: 0 auto;
}
.sub-culture {
	max-width: 700px;
	margin: 0 auto;
}
.sub-message {
	max-width: 700px;
	margin: 0 auto;
}
.sub-work {
	max-width: 450px;
	margin: 0 auto;
}


/* 写真イメージスペース */

.rec-top-people-item {
	max-width: 800px;
	margin: -40px auto 0;
}
.rec-top-culture-item {
	max-width: 800px;
	margin: -20px auto 0;
}
.rec-top-work-item {
	margin-top: -90px;
}

@media screen and (max-width:480px) {
.rec-top-culture-item {
	margin: 10px auto 0;
}
.rec-top-work-item {
	margin-top: 10px;
}
}



/* 下層ページ共通
-----------------------------------------------------------------*/

/* ページタイトル */

.pagetitle {
	width: 100%;
	height: 400px;
	position: relative;
}
.pagetitle::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: radial-gradient(#222 20%, transparent 0), radial-gradient(#222 20%, transparent 0);
	background-position: 0 0, 10px 10px;
	background-size: 4px 4px;
}
.pagetitle-item {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}
.pagetitle h2 {
	font-size: 4.0rem;
	font-weight: 300;
	letter-spacing: 0.5em;
	line-height: 1.4em;
	color: #fff;
}
p.title-jp {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 1.3em;
	color: #7fd7e5;
}

@media screen and (max-width:480px) {
.pagetitle h2 {
	font-size: 2.5rem;
	letter-spacing: 0.4em;
}
p.title-en {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
}


.pagetitle-people {
	background: url("../img/recruit/pagetitle/pagetitle_people.jpg") no-repeat center center;
	background-size: cover;
}
.pagetitle-culture {
	background: url("../img/recruit/pagetitle/pagetitle_culture.jpg") no-repeat center center;
	background-size: cover;
}
.pagetitle-message {
	background: url("../img/recruit/pagetitle/pagetitle_message.jpg") no-repeat center center;
	background-size: cover;
}
.pagetitle-work {
	background: url("../img/recruit/pagetitle/pagetitle_work.jpg") no-repeat center center;
	background-size: cover;
}
.pagetitle-new-graduate {
	background: url("../img/recruit/pagetitle/pagetitle_new_graduate.jpg") no-repeat center center;
	background-size: cover;
}
.pagetitle-mid-career {
	background: url("../img/recruit/pagetitle/pagetitle_mid_career.jpg") no-repeat center center;
	background-size: cover;
}
.pagetitle-contact {
	background: url("../img/recruit/pagetitle/pagetitle_contact.jpg") no-repeat center center;
	background-size: cover;
}


/* 1col Box */

.recruit-con {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
}

@media screen and (max-width:1200px) {

.recruit-con {
	padding: 80px 30px;
}

}


/* ページキャッチ＆リード */

.rec-people-lead {
	text-align: center;
	margin-bottom: 30px;
}
.rec-culture-lead {
	text-align: center;
	margin-bottom: 80px;
}
.rec-work-lead {
	text-align: center;
	margin-bottom: 80px;
}

.rec-people-lead-img {
	max-width: 400px;
	margin: -40px auto 20px;
}
.rec-culture-lead-img {
	max-width: 700px;
	margin: -40px auto 40px;
}
.rec-work-lead-img {
	max-width: 450px;
	margin: -40px auto 20px;
}





/* PEOPLE 先輩社員インタビュー
-----------------------------------------------------------------*/

/* 先輩社員インタビュートップ */

.rec-people-top-index {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.rec-people-top-con {
	width: 48%;
}

.rec-people-btn-profile {
	display: flex;
	align-items: center;
}
.rec-people-btn-profile-icon {
	width: 100px;
	margin-right: 15px;
}
.rec-people-btn-profile-txt {
	line-height: 1.4em;
}


@media screen and (max-width: 768px) {
.rec-people-top-index {
	flex-direction: column;
}
.rec-people-top-con {
	width: 100%;
	margin-bottom: 20px;
}
}


.btn-people {
	margin-top: 30px;
	text-align: left;
}

.btn-people a {
    background: #fff;
		border: 1px solid #4b7298;
    border-radius: 10px;
    position: relative;
    display: flex;
		justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
		max-width: 768px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
		text-decoration: none;
}
.btn-people a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn-people a:hover {
  background: #4b7298;
  color: #FFF;
}
.btn-people a:hover:after {
  right: 1.4rem;
}


/* 先輩社員インタビュー個人ページヘッダ（写真を使う場合） */

.interview-with-pic .interview-header {
	width: 100%;
	height: 500px;
	background: url("../img/recruit/people/interview_head_bg.jpg") no-repeat center center;
	background-size: cover;
}

.interview-with-pic .interview-header .inner {
	max-width: 1200px;
	height: 500px;
	margin: 0 auto;
  padding: 0;
	background-size: contain;
}

.interview-header-bg-md2012 {
	background: url("../img/recruit/people/interview_head_img_md2012.png") no-repeat right 80px bottom;
}
.interview-header-bg-hm2013 {
	background: url("../img/recruit/people/interview_head_img_hm2013.png") no-repeat right 80px bottom;
}
.interview-header-bg-st2020 {
	background: url("../img/recruit/people/interview_head_img_st2020.png") no-repeat right 80px bottom;
}
.interview-header-bg-sm2018 {
	background: url("../img/recruit/people/interview_head_img_sm2018.png") no-repeat right 80px bottom;
}

.interview-with-pic .interview-txt {
	 padding: 100px 0 0 50px;
}

.interview-title {
	font-size: 1.6rem;
	font-weight: 300;
	margin-bottom: 20px;
}
.interview-icon img {
	width: 40px;
	vertical-align: middle;
	margin-right: 10px;
}
.interview-lead {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.4em;
	margin-bottom: 50px;
}
.interview-name {
	font-size: 2.3rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}
.interview-department {
	font-size: 1.4rem;
}

@media screen and (max-width: 1028px) {
.interview-header .inner {
	position: relative;
}
.interview-header-bg-md2012 {
	background: url("../img/recruit/people/interview_head_img_md2012.png") no-repeat center bottom;
}
.interview-header-bg-hm2013 {
	background: url("../img/recruit/people/interview_head_img_hm2013.png") no-repeat center bottom;
}
.interview-header-bg-st2020 {
	background: url("../img/recruit/people/interview_head_img_st2020.png") no-repeat center bottom;
}
.interview-header-bg-sm2018 {
	background: url("../img/recruit/people/interview_head_img_sm2018.png") no-repeat center bottom;
}
.interview-with-pic .interview-title {
	position: absolute;
	top: 20px;
	left: 40px;
	font-size: 1.4rem;
	margin-bottom: 0;
}
.interview-with-pic .interview-icon img {
	width: 30px;
}
.interview-with-pic .interview-profile {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0,175,204,0.8);
	width: 100%;
}
.interview-with-pic .interview-lead {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.5em;
	margin-left: 40px;
	margin-bottom: 10px;
	padding-top: 20px;
	color: #fff;
}
.interview-with-pic .interview-name {
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
	color: #fff;
	margin-left: 40px;
}
.interview-with-pic .interview-name-en {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #fff;
	margin-left: 10px;
}
.interview-with-pic .interview-department {
	font-size: 1.2rem;
	color: #fff;
	margin-left: 40px;
	padding-bottom: 20px;
}
}



/* 先輩社員インタビュー個人ページヘッダ（写真を使わない場合） */
/*
.interview-header {
	width: 100%;
	background: url("../img/recruit/people/interview_head_bg.jpg") no-repeat center center;
	background-size: cover;
}
.interview-header .inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 0;
	background-size: contain;
}
.interview-txt {
	 padding: 0 50px;
}
.interview-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight: 300;
	margin-bottom: 20px;
}
.interview-icon img {
	width: 40px;
	vertical-align: middle;
	margin-right: 10px;
}
.interview-lead {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.4em;
	margin-bottom: 50px;
}
.interview-name {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.3rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}
.interview-name-en {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	color: #00afcc;
	margin-left: 10px;
}
.interview-department {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
}
*/


/* 先輩社員インタビュー個人ページボディ */

.recruit-1col-wrapper  {
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 0;
}
@media screen and (max-width:1200px) {
.recruit-1col-wrapper  {
	padding: 80px 30px;
}
}


.fd-normal,
.fd-reverse {
	flex-direction: row;
}


.interview-section {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}
.interview-section-item {
	width: 48%;
}

.recruit-con .interview-section:last-child {
	margin-bottom: 0;
}

.interview-section-item-nopic {
	width: 100%;
}

.interview-section-item dl dt,
.interview-section-item-nopic dl dt {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.4rem;
	font-weight: 300;
	line-height: 1.6em;
	margin-bottom: 10px;
}

.interview-section-item dl dd,
.interview-section-item-nopic dl dd {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2em;
	margin-bottom: 50px;
	color: #00afcc;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.interview-section-item dl dd:before,
.interview-section-item-nopic dl dd:before {
	border-top: 1px solid;
	content: "";
	width: 3em;
	margin-right: 10px;
}

.interview-section-item p,
.interview-section-item-nopic p {
	text-align:justify;
	text-justify:inter-ideograph;
}

.interview-section p {
	margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
.fd-normal {
	flex-direction: column;
}
.fd-reverse {
	flex-direction: column-reverse;
}
.interview-section-item,
.interview-section-item-nopic {
	width: 100%;
}
.fd-normal .interview-section-item:first-child,
.fd-normal .interview-section-item-nopic:first-child {
	margin-bottom: 20px;
}
.fd-reverse .interview-section-item:last-child,
.fd-reverse .interview-section-item-nopic:last-child {
	margin-bottom: 20px;
}
.interview-section-item dl dd,
.interview-section-item-nopic dl dd {
	margin-bottom: 30px;
}
}


.workflow-list {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px dashed #ccc;
}
.workflow-list-time {
	width: 15%;
}
.workflow-list-txt {
	width: 84%;
}

@media screen and (max-width:768px) {
.workflow-list {
	flex-direction: column;
}
}





/* CULTURE 環境・文化・制度について
（「WORK 中央交易のしごと」と兼用）
-----------------------------------------------------------------*/

.culture-section {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

.culture-section {
	align-items: center;
}
#recruit-message .culture-section {
	align-items: flex-start;
}

.recruit-con .culture-section:last-child {
	margin-bottom: 0;
}

.culture-section-item {
	width: 48%;
}

.culture-section-item h3 {
	font-size: 2.8rem;
	font-weight: 300;
	line-height: 1.6em;
  letter-spacing: 0.3em;
	margin-bottom: 30px;
	color: #00afcc;
}
.culture-section-item p {
	text-align:justify;
	text-justify:inter-ideograph;
}
@media screen and (max-width: 480px) {
.culture-section-item h3 {
	line-height: 1.4em;
}
}

@media screen and (max-width: 768px) {
.culture-section-item {
	width: 100%;
}
.fd-normal .culture-section-item:first-child {
	margin-bottom: 20px;
}
.fd-reverse .culture-section-item:last-child {
	margin-bottom: 20px;
}
}




/* 新卒採用・中途採用 募集要項
-----------------------------------------------------------------*/

.rec-entry-section {
	margin-bottom: 40px;
}
.rec-entry-section h3 {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.3em;
	color: #00afcc;
	margin-bottom: 20px;
}
.rec-entry-section h4 {
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.3em;
	background: #eee;
	padding: 5px 10px;
	margin-bottom: 20px;
}

.dlTable {
    max-width: 500px;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}
.dlTable dt,
.dlTable dd {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    padding: 10px 30px;
}
.dlTable dt {
    font-size: 16px;
    width: 180px;
}
.dlTable dd {
    width: calc(100% - 180px);
}
.dlTableHeader {
  background: #eee;
}
@media screen and (max-width: 480px) {

.rec-entry-section .normal-tab {
	width: 100%;
  box-sizing: border-box;
}

.rec-entry-section .normal-tab th,
.rec-entry-section .normal-tab td {
	display: block;
  width: 100%;
  border: none;
  padding: 10px 0;
}

.rec-entry-section .normal-tab th {
  /*border-top: none;
	border-bottom: none;*/
}
.rec-entry-section .normal-tab td {
	
}


.dlTable dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 10px 0 10px;
}
.dlTable dd {
    width: 100%;
    padding: 0 10px 10px 10px;
}
}









.entry-btn-square-wrap {
	text-align: center;
}
.entry-btn-square {
	margin: 0 0;
}
.entry-btn-square a {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 30px 90px 30px 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
@media screen and (max-width: 480px) {
.entry-btn-square a {
  padding: 30px 80px 30px 30px;
}
}
.entry-btn-square a span {
	font-size: 1.6rem;
}

a.btn--blue {
  color: #fff;
  background-color: #00afcc;
}
a.btn--blue:hover {
  color: #fff;
  background: #7fd7e5;
}
a.btn--square-radius {
    border-radius: 10px;
}


/* サンキューページ */

.thanks-txt-body {
	max-width: 600px;
	margin: 50px auto;
	padding: 0 30px;
}
@media screen and (max-width: 480px) {
.thanks-txt-body {
	margin: 0px auto;
}
}