@charset "utf-8";
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

GuideTour CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/


/* Container
-------------------------------------------- */
#container {
	counter-reset: gt_count;
}

.head_logo {
	display: block;
	width: 228px;
	margin: 0 auto 50px;
}

/* アコーディオンボックス */
.gt_section {
	overflow: hidden;
	padding: 110px 0 0;
	margin: -110px 0 0;
}
.gt_section .panel {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	cursor: pointer;
}
.gt_section:nth-child(2n) .panel {
	flex-flow: row-reverse wrap;
}
.gt_section .panel .item {
	-webkit-box-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 50%;
}

/* パネルイメージ */
.gt_section .panel .panel_img {
	position: relative;
	padding: 26% 0 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}
.gt_section .panel .panel_img::before {
	counter-increment: gt_count;
	content: "0" counter(gt_count);
	display: block;
	position: absolute;
	bottom: 10px;
	left: 20px;
	color: #AAA;
	font-size: 8vw;
	font-family: Times;
	line-height: 1;
	z-index: 1;
}
.gt_section .panel .panel_img.white::before {
	color: #FFF;
}
.gt_section:nth-child(2n) .panel .panel_img::before {
	right: 20px;
	text-align: right;
}

/* パネルコンテンツ */
.gt_section .panel .panel_content {
	background: #EEE;
	position: relative;
	padding: 4.6vw 0 100px;
	z-index: 2;
}
.gt_section .panel .panel_content h2 {
	position: relative;
	width: calc(100% + 75px);
	left: -100px;
}
.gt_section:nth-child(2n) .panel .panel_content h2 {
	left: auto;
	right: -25px;
	text-align: right;
}
.gt_section .panel .panel_content h2 img {
	display: block;
	width: 100%;
}
.gt_section:nth-child(2n) .panel .panel_content h2 img {
	margin: 0 0 0 auto;
}
.gt_section .panel .panel_content h2 span {
	display: block;
	position: relative;
	font-size: 3rem;
	padding: 40px 0 0 130px;
}
.gt_section:nth-child(2n) .panel .panel_content h2 span {
	padding: 40px 130px 0 0;
}
.gt_section .panel .panel_content h2 span::before {
	content: "";
	display: block;
	width: 600px;
	height: 4px;
	position: absolute;
	top: 20px;
	left: 0;
	background: #D90000;
}
.gt_section:nth-child(2n) .panel .panel_content h2 span::before {
	left: auto;
	right: 0;
}

.gt_section .panel .panel_content .more_btn {
	position: absolute;
	bottom: 40px;
	left: 30px;
	line-height: 2.8rem;
	padding: 0 0 0 76px;
}
.gt_section:nth-child(2n) .panel .panel_content .more_btn {
	left: auto;
	right: 30px;
	padding: 0 76px 0 0;
}
.gt_section .panel .panel_content .more_btn::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -20px;
	left: 8px;
	border-bottom: #000 1px solid;
	border-right: #000 1px solid;

	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.gt_section:nth-child(2n) .panel .panel_content .more_btn::before {
	left: auto;
	right: 8px;
}
.gt_section .panel .panel_content .more_btn.open::before {
	top: 7px;
	border: none;
	border-top: #000 1px solid;
	border-left: #000 1px solid;
}

.gt_section .panel .panel_content .more_btn::after {
	content: "VIEW MORE";
}
.gt_section .panel .panel_content .more_btn.open::after {
	content: "CLOSE";
}

/* アコーディオンコンテンツ */
.gt_section .gt_content {
	display: none;
}

.gt_section .gt_content_block {
	margin: 0 0 90px;
}

.gt_section .gt_content_block .ttl_border_wrap {
	width: 100%;
	padding: 0 25px;
	text-align: center;
}
.gt_section .gt_content_block .ttl_border_wrap span {
	display: inline-block;
	position: relative;
	padding: 30px 35px;
	font-size: 2.2rem;
}
.gt_section .gt_content_block .ttl_border_wrap span::before,
.gt_section .gt_content_block .ttl_border_wrap span::after {
	content: "";
	display: block;
	width: 18px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: #000 1px solid;
}
.gt_section .gt_content_block .ttl_border_wrap span::before {
	border-right: none;
}
.gt_section .gt_content_block .ttl_border_wrap span::after {
	left: auto;
	right: 0;
	border-left: none;
}

.gt_section .gt_content_block .video_wrap {
	max-width: 1050px;
	padding: 50px 25px 0;
	margin: 0 auto;
}

/* お問い合わせボックス */
.gt_section .contact_box {
	margin: 70px auto 0;
	padding: 20px 20px 30px;
	max-width: 600px;
	border: #000 1px solid;
}
.gt_section .contact_box h4 {
	font-size: 2rem;
}
.gt_section .contact_box .separate {
	padding: 0 0 40px;
	position: relative;
}
.gt_section .contact_box .separate::before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin: 0 0 0 -30px;
}
.gt_section .contact_box p .tel {
	font-size: 2.6rem;
}
.gt_section .contact_box .link_btn {
	display: block;
	max-width: 200px;
	width: 100%;
	padding: 10px;
	margin: 20px auto 0;
	color: #FFF;
	background: #000;
}


/* アレンってどんな企業？ */
#gt_1.gt_section .gt_content_block.cont_1 {
	background: url(/recruit/shr/img/guidetour/content_01_img_01.jpg) no-repeat center center;
	background-size: cover;
	padding: 7.6vw 25px;
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box {
	max-width: 850px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box::before,
#gt_1.gt_section .gt_content_block.cont_1 .circle_box::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: calc(57.5% - 2px);
	padding: calc(57.5% - 2px) 0 0;
	border: #BBB 1px solid;
	border-radius: 100vw;
	z-index: 3;
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box::after {
	left: auto;
	right: 0;
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box .logo {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11.8%;
	max-width: 100px;
	z-index: 2;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box .circle {
	content: "";
	display: block;
	width: 57.5%;
	float: left;
	position: relative;
	margin: 0 -7.5% 0 0;
	padding: 57.5% 0 0;
	background: #FFF;
	border-radius: 100vw;
	z-index: 1;
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box .circle + .circle {
	float: right;
	margin: 0 0 0 -7.5%;
}

#gt_1.gt_section .gt_content_block.cont_1 .circle_box .circle div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44%;
	text-align: center;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#gt_1.gt_section .gt_content_block.cont_1 .circle_box .circle div p {
	font-size: 2.4rem;
	line-height: 2.2;
	margin: 20px 0 0;
}

#gt_1.gt_section .gt_content_block.cont_1 .circle_box .clear {
	clear: both;
}

#gt_1.gt_section .gt_content_block.cont_2 {
	overflow: hidden;
}
#gt_1.gt_section .gt_content_block.cont_2 li {
	width: 33.333333%;
	float: left;
	position: relative;
	background: #EEE;
	padding: 0 0 300px;
	margin: 0 0 -300px;
}
#gt_1.gt_section .gt_content_block.cont_2 li::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: #FFF;
}
#gt_1.gt_section .gt_content_block.cont_2 li:first-child::before {
	display: none;
}
#gt_1.gt_section .gt_content_block.cont_2 li .info {
	padding: 30px 25px;
}
#gt_1.gt_section .gt_content_block.cont_2 li .info h4 {
	font-size: 2.2rem;
	text-align: center;
	margin: 0 0 20px;
}
#gt_1.gt_section .gt_content_block.cont_2 li .info p {
	font-size: 1.6rem;
	line-height: 2;
}

#gt_1.gt_section .gt_content_block.cont_3 .number_list {
	padding: 50px 0 0;
}
#gt_1.gt_section .gt_content_block.cont_3 .number_list li {
	width: 25%;
	float: left;
	padding: 0 15px;
	position: relative;
}
#gt_1.gt_section .gt_content_block.cont_3 .number_list li::before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: #AAA;
}
#gt_1.gt_section .gt_content_block.cont_3 .number_list li:first-child::before {
	display: none;
}
#gt_1.gt_section .gt_content_block.cont_3 .number_list li img {
	display: block;
	width: 97px;
	margin: 0 auto 10px;
}
#gt_1.gt_section .gt_content_block.cont_3 .number_list li p {
	font-size: 1.6rem;
	text-align: center;
	line-height: 1;
}
#gt_1.gt_section .gt_content_block.cont_3 .number_list li p span {
	display: inline-block;
	font-size: 5.3vw;
	vertical-align: -5px;
	margin: 0 5px;
}

/* どんな商品を展開している？ */
#gt_2.gt_section .products_box .cat_ttl {
	display: block;
	font-size: 5rem;
	line-height: 1.2;
	padding: 0 0 30px;
}
#gt_2.gt_section .products_box .products_list {
	border: #EEE 1px solid;
}
#gt_2.gt_section .products_box .products_list li {
	width: 50%;
	float: left;
	position: relative;
}
#gt_2.gt_section .products_box .products_list li::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: #EEE;
	z-index: 1;
}
#gt_2.gt_section .products_box .products_list.devide3 li {
	width: 33.333333%;
}
#gt_2.gt_section .products_box .products_list.devide3 li::before {
	display: none;
}
#gt_2.gt_section .products_box .products_list li:first-child::before {
	display: none;
}
#gt_2.gt_section .products_box .products_list li img {
	display: block;
	width: 100%;
}

#gt_2.gt_section .products_box .products_captopn {
	line-height: 2;
	font-size: 1.8rem;
	padding: 40px 0 60px;
}

#gt_2.gt_section .gt_content_block.cont_2 .banner_box {
	max-width: 1050px;
	padding: 30px 25px 0;
	margin: 0 auto;
}

/* アレンのビジョンと未来 */
#gt_3.gt_section .img_world_map {
	display: block;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

/* アレンで働くこととは？ */
#gt_5.gt_section .gt_content_block.cont_2 {
	font-size: 1.6rem;
}
#gt_5.gt_section .gt_content_block.cont_2 .person_box {
	position: relative;
}
#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info {
	max-width: 400px;
	width: calc(100% - 40px);
	position: absolute;
	bottom: 0;
	left: 50%;
	padding: 20px;
	color: #FFF;
	background: #000;

	-webkit-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
}
#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info h4 {
	font-size: 5rem;
	line-height: 1;
	margin: 6px 0;
}
/*
#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info p {
	padding: 36px 0 0;
	position: relative;
}
#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info p::before {
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	left: 50%;
	width: 100px;
	height: 4px;
	margin: 0 0 0 -50px;
	background: #D90000;
}
*/
#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_img {
	width: 50%;
	float: left;
}

#gt_5.gt_section .gt_content_block.cont_2 .lead_txt {
	max-width: 1090px;
	width: 100%;
	padding: 0 25px;
	margin: 100px auto 0;
	line-height: 2;
}

#gt_5.gt_section .gt_content_block.cont_3 .job_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
#gt_5.gt_section .gt_content_block.cont_3 .job_list li {
	-webkit-box-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 50%;
	padding: 50px 25px;
	background: #EEE;
	position: relative;
}
#gt_5.gt_section .gt_content_block.cont_3 .job_list li:nth-child(2)::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: #FFF;
}
#gt_5.gt_section .gt_content_block.cont_3 .job_list li h5 {
	position: relative;
	padding: 0 0 50px;
	font-size: 3.4rem;
}
#gt_5.gt_section .gt_content_block.cont_3 .job_list li h5 em {
	display: block;
	font-size: 1.6rem;
	margin: 0 0 5px;
}
#gt_5.gt_section .gt_content_block.cont_3 .job_list li h5::before {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	background: #D90000;
	margin: 0 0 0 -50px;
}

#gt_5.gt_section .education_box {
	max-width: 740px;
	width: 100%;
	margin: -20px auto 0;
}
#gt_5.gt_section .education_box .education_img {
	display: block;
	width: 180px;
	margin: 0 auto 30px;
}
#gt_5.gt_section .education_box .path_flow li {
	font-size: 1.6rem;
	margin: 0 0 60px;
	position: relative;
	text-align: center;
}
#gt_5.gt_section .education_box .path_flow li::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -34px;
	left: 50%;
	width: 28px;
	height: 28px;
	margin: 0 0 0 -14px;
	border-right: #000 1px solid;
	border-bottom: #000 1px solid;

	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#gt_5.gt_section .education_box .path_flow li h4 {
	position: relative;
	font-size: 2.2rem;
}

/* 背景付きリスト */
#gt_5.gt_section .education_box .path_flow .box {
	padding: 0 20px 20px;
}
#gt_5.gt_section .education_box .path_flow .box::before {
	content: "";
	display: block;
	width: 100%;
	background: #EEE;
	position: absolute;
	top: 23px;
	left: 0;
	bottom: 0;
}
#gt_5.gt_section .education_box .path_flow .box h4 {
	font-size: 1.2rem;
	padding: 0 0 20px;
}
#gt_5.gt_section .education_box .path_flow .box h4 img {
	display: block;
	max-width: 340px;
	width: 100%;
	margin: 0 auto 10px;
}
#gt_5.gt_section .education_box .path_flow .box p {
	text-align: left;
	position: relative;
	text-indent: -0.8em;
	padding: 0 0 0 .8em;
}

/* 矢印なしのリスト */
#gt_5.gt_section .education_box .path_flow .no_arrow {
	margin: 0;
}
#gt_5.gt_section .education_box .path_flow .no_arrow::after {
	display: none;
}
#gt_5.gt_section .education_box .path_flow .no_arrow .career_up_list {
	margin: 15px -8px 0;
}
#gt_5.gt_section .education_box .path_flow .no_arrow .career_up_list div {
	width: 33.333333%;
	padding: 0 8px;
	float: left;
}
#gt_5.gt_section .education_box .path_flow .no_arrow .career_up_list div p {
	background: #EEE;
	padding: 18px 10px;
	text-align: center;
}

/* アレンを選ぶ理由 */
#gt_6.gt_section .reason_list {
	padding: 0 0 80px;
}
#gt_6.gt_section .reason_list h3 {
	position: relative;
	font-size: 2rem;
	line-height: 142px;
	margin: 0 0 30px;
}
#gt_6.gt_section .reason_list h3::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100px;
	height: 100px;
	border: #000 1px solid;

	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
#gt_6.gt_section .reason_list p {
	font-size: 2.4rem;
	line-height: 2;
}

/* 代表からのメッセージ */
#gt_7.gt_section .cont_1 {
	background: url(/recruit/shr/img/guidetour/content_07_img_01.jpg) no-repeat center center;
	background-size: cover;
}
#gt_7.gt_section .cont_1 .video_wrap {
	position: relative;
	max-width: 892px;
	width: 100%;
	padding: 50px 20px;
	margin: 0 auto;
}
#gt_7.gt_section .cont_1 .video_wrap .video_box {
	position: relative;
  width: 100%;
  padding: 56.33% 0 0;
  overflow: hidden;
}
#gt_7.gt_section .cont_1 .video_wrap .video_box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*
------------------------------------------------------------------------------------------------------------------ PC Wide */

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

	/* Container
	-------------------------------------------- */

	/* パネルコンテンツ */
	.gt_section .panel .panel_content h2 img {
		max-width: none !important;
		width: auto !important;
		height: 47px;
	}
	.gt_section .panel .panel_content h2 span {
		font-size: 2.4rem;
	}
	.gt_section .panel .panel_content .more_btn {
		bottom: 30px;
	}

}


/*
------------------------------------------------------------------------------------------------------------------ Tablet Wide */

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

	/* アコーディオンボックス */
	.gt_section {
		padding: 80px 0 0;
		margin: -80px 0 0;
	}

	.gt_section .gt_content_block {
		margin: 0 0 70px;
	}

	.gt_section .gt_content_block .ttl_border_wrap {
		padding: 0 20px;
	}

	.gt_section .gt_content_block .video_wrap {
		padding: 50px 20px 0;
	}

	/* アレンってどんな企業？ */
	#gt_1.gt_section .gt_content_block.cont_1 {
		padding: 7.6vw 20px;
	}
	#gt_1.gt_section .gt_content_block.cont_2 li .info {
		padding: 30px 20px;
	}

	#gt_1.gt_section .gt_content_block.cont_3 .number_list li p span {
		font-size: 4vw;
		vertical-align: -2px;
	}

	/* どんな商品を展開している？ */
	#gt_2.gt_section .gt_content_block.cont_2 .banner_box {
		padding: 20px 20px 0;
	}

	/* アレンで働くこととは？ */
	#gt_5.gt_section .gt_content_block.cont_3 .job_list li {
		padding: 50px 20px;
	}

}


/*
------------------------------------------------------------------------------------------------------------------ Tablet */

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

	/* Container
	-------------------------------------------- */
	.head_logo {
		width: 114px;
	}

	/* アレンってどんな企業？ */
	#gt_1.gt_section .gt_content_block.cont_1 {
		padding: 20px;
	}
	#gt_1.gt_section .gt_content_block.cont_1 .circle_box .circle div p {
		font-size: 2.4vw;
	}

	/* アレンで働くこととは？ */
	#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info h4 {
		font-size: 4rem;
	}

	#gt_5.gt_section .gt_content_block.cont_3 .job_list {
		display: block;
	}
	#gt_5.gt_section .gt_content_block.cont_3 .job_list li {
		width: 100%;
		padding: 20px;
	}
	#gt_5.gt_section .gt_content_block.cont_3 .job_list li:nth-child(2)::before {
		bottom: auto;
		width: 100%;
		height: 1px;
	}

	#gt_5.gt_section .education_box {
		max-width: none;
	}

}


/*
------------------------------------------------------------------------------------------------------------------ SmartPhone */

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

	/* アコーディオンボックス */
	.gt_section {
		padding: 60px 0 0;
		margin: -60px 0 0;
	}
	.gt_section .panel {
		display: block;
	}
	.gt_section .panel .item {
		width: 100%;
	}

	/* パネルイメージ */
	.gt_section .panel .panel_img {
		padding: 52% 0 0;
	}
	.gt_section .panel .panel_img::before,
	.gt_section:nth-child(2n) .panel .panel_img::before {
		left: 20px;
		right: auto;
		text-align: left;
	}

	/* パネルコンテンツ */
	.gt_section .panel .panel_content {
		padding: 20px 20px 90px;
	}
	.gt_section .panel .panel_content h2,
	.gt_section:nth-child(2n) .panel .panel_content h2 {
		width: 100%;
		left: 0;
		right: auto;
		text-align: left;
	}
	.gt_section .panel .panel_content h2 img,
	.gt_section:nth-child(2n) .panel .panel_content h2 img {
		margin: 0 auto 0 0;
		height: 28px;
	}
	.gt_section .panel .panel_content h2 span,
	.gt_section:nth-child(2n) .panel .panel_content h2 span {
		padding: 40px 0 0;
	}
	.gt_section .panel .panel_content h2 span::before,
	.gt_section:nth-child(2n) .panel .panel_content h2 span::before {
		width: 100%;
		left: 0;
		right: auto;
	}

	.gt_section .panel .panel_content .more_btn,
	.gt_section:nth-child(2n) .panel .panel_content .more_btn {
		left: 20px;
		right: auto;
		padding: 0 0 0 76px;
	}
	.gt_section .panel .panel_content .more_btn::before,
	.gt_section:nth-child(2n) .panel .panel_content .more_btn::before {
		top: -22px;
		left: 8px;
		right: auto;
	}
	.gt_section .panel .panel_content .more_btn.open::before,
	.gt_section:nth-child(2n) .panel .panel_content .more_btn.open::before {
		top: 7px;
	}

	/* アコーディオンコンテンツ */
	.gt_section .gt_content_block {
		margin: 0 0 50px;
	}

	.gt_section .gt_content_block .ttl_border_wrap span {
		padding: 10px 25px;
		font-size: 2rem;
	}
	.gt_section .gt_content_block .ttl_border_wrap span::before,
	.gt_section .gt_content_block .ttl_border_wrap span::after {
		width: 8px;
	}

	/* お問い合わせボックス */
	.gt_section .contact_box {
		margin: 50px auto 0;
	}

	/* アレンってどんな企業？ */
	#gt_1.gt_section .gt_content_block.cont_2 li {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#gt_1.gt_section .gt_content_block.cont_2 li::before {
		display: none;
	}

	#gt_1.gt_section .gt_content_block.cont_3 .number_list {
		padding: 0;
	}
	#gt_1.gt_section .gt_content_block.cont_3 .number_list li {
		width: 50%;
		margin: 50px 0 0;
	}
	#gt_1.gt_section .gt_content_block.cont_3 .number_list li img {
		width: 50px;
	}
	#gt_1.gt_section .gt_content_block.cont_3 .number_list li:nth-child(2n + 1)::before {
		display: none;
	}
	#gt_1.gt_section .gt_content_block.cont_3 .number_list li p span {
		font-size: 3rem;
	}

	/* どんな商品を展開している？ */
	#gt_2.gt_section .products_box .cat_ttl {
		font-size: 4rem;
	}
	#gt_2.gt_section .products_box .products_list li,
	#gt_2.gt_section .products_box .products_list.devide3 li {
		width: 100%;
	}
	#gt_2.gt_section .products_box .products_list li::before {
		bottom: auto;
		width: 100%;
		height: 1px;
	}

	#gt_2.gt_section .products_box .products_captopn {
		text-align: left;
	}

	#gt_2.gt_section .gt_content_block.cont_2 .banner_box {
		padding: 0 20px;
	}

	/* アレンで働くこととは？ */
	#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info {
		bottom: 50%;
		background: rgba(0, 0, 0, .8);
	}
	#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_info h4 {
		font-size: 3rem;
	}
	#gt_5.gt_section .gt_content_block.cont_2 .person_box .person_img {
		width: 100%;
		float: none;
	}

	#gt_5.gt_section .gt_content_block.cont_2 .lead_txt {
		margin: 30px auto 0;
	}

	#gt_5.gt_section .gt_content_block.cont_3 .job_list li h5 {
		font-size: 2.8rem;
	}

	#gt_5.gt_section .gt_content_block.cont_3 .job_list li p {
		text-align: left;
	}

	#gt_5.gt_section .education_box .path_flow li p {
		text-align: left;
	}

	/* 矢印なしのリスト */
	#gt_5.gt_section .education_box .path_flow .no_arrow .career_up_list {
		margin: 15px 0 0;
	}
	#gt_5.gt_section .education_box .path_flow .no_arrow .career_up_list div {
		width: 100%;
		padding: 5px 0 0;
		float: none;
	}

	/* アレンを選ぶ理由 */
	#gt_6.gt_section .reason_list {
		padding: 0 0 50px;
	}
	#gt_6.gt_section .reason_list p {
		font-size: 1.8rem;
		text-align: left;
	}

}
