@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html {
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
}
body {
	padding: 0;
	margin: 0;
}

:root {
	--color-blue: #1266ad;
	--color-orange: #dd9539;
	--color-orange-light: #ebbf49;
}

a {
	color: #333;
	text-decoration: none;
	position: relative;
}
a:visited , a:active {
    color: #333;
}
a[href^="tel:"] {
	pointer-events: none;
}

img {
	border: solid 0;}
img a {
	border: solid 0;
}

.hp_pc {
	display: block;
}
.hp_sp {
	display: none;
}

.hp_urlObver a {
	position: relative;
}
.hp_urlObver a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

.hp_urlObver a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}


.clearfix::after {
	content: "";
	display: block;
	clear: both;
}



/* スクロールで出現する */
.fadein_scroll {
	opacity: 0;
  	transform: translateY(30px);
}
.fadein_scroll.is-active {
	animation: fadein_scroll 1.0s ease 0s forwards;/* ショートハンド　名前、掛かる時間、変化する速度、0.5秒遅れて動作、1回のみ、最後のスタイル */
}

@keyframes fadein_scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  	transform: translateY(0px);
  }
}
/* スクロールで出現する end */

/* フェードアップ */

.fadein_scroll.ourStrengths_first.is-active {
  animation: fadein_scroll_os 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.fadein_scroll.ourStrengths_second.is-active {
	animation: fadein_scroll_os 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: .3s;/* タイミングを0.2秒ずらす */
}
.fadein_scroll.ourStrengths_third.is-active {
	animation: fadein_scroll_os 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: .6s;/* タイミングを0.2秒ずらす */
}
@keyframes fadein_scroll_os {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  	transform: translateY(0px);
  }
}

/* 文字がぬるりと現れる */

.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
 
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.matrix .bg-wrap .inn.delay {
	transition-delay: 0.5s;
}
 
.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.matrix.is-active .bg-wrap {
  opacity: 1;
}
 
.matrix.is-active .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/* 文字がぬるりと現れる end */


/* ボタン青 */
.el_btn_more a {
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	background-color: var(--color-blue);
	border-radius: 30px;
	padding: 20px 100px;
	text-decoration: none;
	position: relative;
	transition: all 0.2s;
}
.el_btn_more a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 600;
	position: absolute;
	right: 30px;
	transition: all 0.2s;
}
.el_btn_more a:hover {
	background-color: var(--color-orange-light);
}
.el_btn_more a:hover:after {
  right: 25px;
}

.el_btn_more__right {
	text-align: right;
}
.el_btn_more__center {
	text-align: center;
}

/* ボタン青 end */

/* ボタン白 */

.el_btn_more.el_btn_more__white a {
	color: var(--color-blue);;
	background-color: #fff;
}
.el_btn_more.el_btn_more__white a:hover {
	color: #fff;
	background-color: var(--color-orange-light);
}
/* ボタン白 end */


/* ヘッダー */
.ly_header {
	background-color: fff;
	padding: 40px 0 50px;
	position: relative;
}
.ly_header a {
	text-decoration: none;
}
.ly_header_inner {
	width: 95%;
	margin:  0 auto;
}
/* ヘッダー end */

/* ハンバーガーメニュー */
.hamburger-menu {
	display: none;
}
.navigation {
	display: none;
}
.navigation ul {
	display: none;
}
.navigation ul li {
	display: none;
}
.navigation_btnConract a {
	display: none;
}

/* ハンバーガーメニュー end */


.ly_container {
	overflow: hidden;
}

/* フッター */
.ly_footer {
	width: 100%;
	padding: 100px 0 35px;
}
.ly_footer_inner {
	width: 95%;
	margin:  0 auto 60px;
}
.ly_footer_left {
	width: 50%;
	float: left;
}
.ly_footer_right {
	width: 450px;
	float: right;
}
.ly_footer_right ul {
	padding: 0;
}
.ly_footer_right ul li {
	width: 30%;
	font-size: 1.4rem;
	list-style-type: none;
	margin: 0 1% 20px 0; 
	float: left;
}
.ly_footer .el_footerAdd {
	font-size: 1.4rem;
	line-height: 2;
	display: block;
}
.ly_footer .el_logo.el_logo__footer {
	margin-bottom: 10px;
	float: none;
}

.ly_footer_copyright {
	font-size: 1.1rem;
	text-align: center;
}
/* フッター end */

/* お問い合わせ */
.ly_contact {
	width: 100%;
	padding: 100px 0;
	background-color: #f4f4f4;
}
.ly_contact_inner {
	width: 1000px;
	background-color: #fff;
	padding: 60px;
	margin: 0 auto;
}
.ly_contact_inner_left {
	width: 40%;
	float: left;
	border-right: solid 1px #f4f4f4;
	padding: 0%;
	text-align: center;
}
.ly_contact_inner_right {
	width: 60%;
	float: right;
	padding: 0%;
	text-align: center;
}
.ly_contact_inner_left_titleBox {
	display: inline-block;
	text-align: center;
	position: relative;
	margin-bottom: 60px;
}
.ly_contact_inner_left_titleBox:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;/*線の上下位置*/
  display: inline-block;
  width: 50px;/*線の長さ*/
  height: 2px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: var(--color-blue);
  border-radius: 1px;/*線の丸み*/
}

.ly_contact_inner_left .el_contact_text {
	display: inline-block;
	font-size: 1.4rem;
	line-height: 2;
	text-align: left;
}
.ly_contact_inner_right .el_contact_tel {
	display: inline-block;
	font-size: 4.0rem;
	font-weight: 500;
	position: relative;
	margin-bottom: 10px;
}
.ly_contact_inner_right .el_contact_tel:before {
	font-family: "Font Awesome 5 Free";
	content: "\f095";
	color: #333;
	font-size: 3.0rem;
	font-weight: 600;
	position:absolute;top:11px;left:-40px;
	display: inline-block;
	transform: scaleX(-1);
}

.ly_contact_inner_right .el_contact_time {
	font-size: 1.4rem;
}
.ly_contact_inner_right .el_btnFooterContact {
	margin-top: 70px;
}
.ly_contact_inner_right .el_btnFooterContact a {
	font-size: 1.6rem;
	color: #fff;
	background-color: var(--color-orange);
	padding: 20px 100px;
	border-radius: 30px;
	position: relative;
}
.ly_contact_inner_right .el_btnFooterContact a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 600;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) translateX(-30%);
	-webkit- transform: translateY(-50%) translateX(-30%);
	margin: auto;
	transition: all 0.2s;
}
.ly_contact_inner_right .el_btnFooterContact a:hover {
	background-color: var(--color-orange-light);
}
.ly_contact_inner_right .el_btnFooterContact a:hover:after {
  right: 25px;
}
/* お問い合わせ end */



.el_logo {
	width: 236px;
	float: left;
}
.el_logo img {
	width: 100%;
	height: auto;
}


/* ■■■ TOP ■■■ */

/* グローバルナビ */
.bl_globalNavi {
	float: right;
}

ul.bl_globalNavi_ul {
	float: left;
	margin-right: 10px;
}
ul.bl_globalNavi_ul li {
	font-size: 1.4rem;
	font-weight: 600;
	list-style-type: none;
	float: left;
	margin-right: 20px;
}
.bl_globalNavi_btn {
	float: right;
	position: relative;
}
.el_btnContact {
	margin-top: 10px;
}

.el_btnContact a {
	font-size: 1.4rem;
	color: #fff;
	background-color: var(--color-orange);
	padding: 10px 20px;
	border-radius: 30px;
	transition: all 0.2s;
}
.el_btnContact a:hover {
	background-color: var(--color-orange-light);
}
/* グローバルナビ end */

/* メインビジュアル */

.el_mvBox {
	position: relative;
}
.el_mv {
	overflow: hidden;
	width: 100%;
	height: 700px;
	margin: 0 auto 100px;
}
.el_mv.el_mv__pc {
	display: block;
}
.el_mv.el_mv__sp {
	display: none;
}

.el_mv_item {
	object-fit: cover;
	position: absolute;
}
.el_mv_item img {
	width: 100%;
	height: auto;
}
.add-animation {
  animation: el_mv 15s both;
}

@keyframes el_mv {

  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }

}

.el_mvBox_mvtext {
	position: absolute; top: 100px; right: 50px; z-index: 999;
}

.fadein_mvText {
	opacity: 0;
}
.fadein_mvText {
	animation: fadein_mvText 0.5s ease 1.5s forwards;
}
@keyframes fadein_mvText {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}



.bg_flowing .bg_flowing_text_scroll {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	
}

.bg_flowing .bg_flowing_text_scroll2 {
	position: relative;
	display: inline-block;
}


.bg_flowing .bg_flowing_text_scroll::before {
  animation: bg_flowing_scroll 4.6s cubic-bezier(0.22, 1, 0.36, 1)  forwards;
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}


.bg_flowing .bg_flowing_text_scroll2::before {
  animation: bg_flowing_scroll2 4.6s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}


.bg_flowing .bg_flowing_text_scroll .bg_flowing_text_inn ,.bg_flowing .bg_flowing_text_scroll2 .bg_flowing_text_inn {
  color: #2a2a2a;
  display: inline-block;
  font-size: 6.0rem;
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}


@keyframes bg_flowing_scroll {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  40% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes bg_flowing_scroll2 {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  40% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
    background: #fff;
  }
  40%, 100% {
    opacity: 1;
  }
}





/* メインビジュアル end */

/* TOP汎用 */
.bl_topContents {
	padding: 0px 0 100px;
}

.bl_topContents__strengths {
	background: url( "../images/top/img_top_conttxt_strengths.png" ) 10% 15% / 1407px 216px no-repeat ;
}
.bl_topContents__service {
	background: url( "../images/top/img_top_conttxt_services.png" ) 90% 13% / 905px 184px no-repeat ;
}

.bl_topContents_titleBox {
	width: 1200px;
	padding: 0 0 50px 0;
	margin: 0 auto;
}

.bl_topContents_titleBox_left {
	width: 50%;
	float: left;
}
.el_topContents_titleBox_left_title {
	font-size: 4.8rem;
	font-weight: 600;
	background: linear-gradient(180deg, #1266ad 0%, #427eb4 40%, #479ac0 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.el_topContents_titleBox_left_title.el_topContents_titleBox_left_title__PageTitleCommon {
	font-size: 6.0rem;
}
.el_topContents_titleBox_left_titleEn {
	font-size: 1.8rem;
	font-weight: 600;
}

.bl_topContents_titleBox_right {
	width: 50%;
	font-size: 1.4rem;
	line-height: 2;
	float: right;
}
.bl_topContents_titleBox_right_text {
	margin-bottom: 60px;
}
/* TOP汎用 end */

/* 南重機の強み */
.un_topStrengths {
	width: 100%;
	background: url( "../images/top/img_top_strengths_bg.jpg" ) 50% 0% / 100% auto no-repeat;
	padding: 60px 0;
}
.un_topStrengths_inner {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
}
.un_topStrengths_inner_box {
	width: 33.0%;
	background-color: rgba(255,255,255,0.9);
	float: left;
	list-style-type: none;
	padding: 50px 4%;
	text-align: center;
	position: relative;
}
.un_topStrengths_inner_box img {
	display: inline-block;
	margin-bottom: 50px;
}
.el_topStrengths_inner_box_num {

position: absolute;
top: 27px;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
margin: auto;


}
.un_topStrengths_inner_box_title {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 5px;
}
.un_topStrengths_inner_box_title_en {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-blue);
	margin-bottom: 50px;
}
.un_topStrengths_inner_box_text {
	font-size: 1.4rem;
	line-height: 2;
	text-align: left;
}
/* 南重機の強み end */

/* 事業紹介 */
.un_topServices {
	width: 1200px;
	height: 600px;
	margin: 0 auto;
}

.un_topServices_left {
	width: 50%;
	height: 100%;
	float: left;
	background-size: auto 100%;
	position: relative;
}
.un_topServices_right {
	width: 50%;
	height: 100%;
	float: right;
	position: relative;
}
.un_topServices_right_sheetpile {
	height: 50%;
	background-size: 100% auto;
	position: relative;
}
.un_topServices_right_other {
	height: 50%;
	background-size: 100% auto;
	position: relative;
}


.un_topServices_left:after , .un_topServices_right .un_topServices_right_sheetpile:after , .un_topServices_right .un_topServices_right_other:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	position: absolute;
	bottom: 8%;
	right: 8%;
	transition: all 0.2s;
}
.un_topServices_left:hover:after , .un_topServices_right .un_topServices_right_sheetpile:hover:after , .un_topServices_right .un_topServices_right_other:hover:after {
	color: var(--color-blue);
	bottom: 5%;
	right: 5%;
	padding: 15px 20px;
    background-color: #fff;
    border-radius: 50%;
}


.bl_topServices_title {
	color: #fff;
	position: absolute;
	top: 50px;
	left: 50px;
}
.bl_topServices_title_textJp {
	font-size: 2.4rem;
	margin-bottom: 5px;
}
.bl_topServices_title_textEn {
	font-size: 1.2rem;
}

.bl_topService_banner {
  display: flex;
}

.bl_topService_banner .banner {
  width: 100%;
  height: 600px;
}
.un_topServices_right_sheetpile .bl_topService_banner .banner {
  width: 100%;
  height: 300px;
}
.un_topServices_right_other .bl_topService_banner .banner {
  width: 100%;
  height: 300px;
}
.bg-zoom {
  position: relative;
  overflow: hidden;
  background: #000;
}
.bg-zoom:after {
  position: absolute; 
  content: ""; 
  display: block; 
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/top/img_top_service_1.jpg) no-repeat -210px center; 
  transition: all .8s ease; 
  background-size: cover; 
}
.un_topServices_right_sheetpile .bg-zoom:after {
 	background: url(../images/top/img_top_service_2.jpg) no-repeat center center; 
}
.un_topServices_right_other .bg-zoom:after {
 	background: url(../images/top/img_top_service_3.jpg) no-repeat center center; 
}

.bg-zoom:hover:after {
  opacity: .8;  
  transform: scale(1.05); 
}
.bg-zoom .bg-zoom-content {
	width: 100%;
  z-index: 1; 
  position: absolute; 
  top: 0; 
  left: 50%;
  transform: translate(-50%, -50%);
}



/* 事業紹介 end */

/* 会社情報 */
.un_aboutUS {
	width: 90%;
}
.un_aboutUS ul {
	margin: 60px 0;
	padding: 0;
	border-top: solid 1px #dedede;
}
.un_aboutUS ul li {
	border-bottom: solid 1px #dedede;
	list-style-type: none;
}
.un_aboutUS ul li a {
	display: block;
	padding: 32px 0px 32px 5px;
	position: relative;
	transition: all 0.2s;
}
.un_aboutUS ul li a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	top: 50%;
	right: 30px;
	transition: all 0.2s;
}

.un_aboutUS ul li a:hover {
	color: #fff;
	background-color: var(--color-orange-light);
}
.un_aboutUS ul li a:hover .un_aboutUS_en {
	color: #fff;
}
.un_aboutUS ul li a:hover:after {
	color: #fff;
	right: 25px;
}

.un_aboutUS_jp {
	font-size: 2.4rem;
	display: block;
}
.un_aboutUS_en {
	font-size: 1.4rem;
	color: var(--color-blue);
	display: block;
}


.bl_topContents_titleBox_right__aboutUs {
	height: 600px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url(../images/top/img_top_aboutus.jpg);
}
/* 会社情報 end */


/* 採用情報 */

.un_topRecruit {
	width: 100%;
	background: url( "../images/top/img_top_recruit.jpg" ) 50% 0% / 100% auto no-repeat ;
	padding: 70px 0;
}
.un_topRecruit_inner {
	width: 1200px;
	margin: 0 auto;
}
.un_topRecruit_inner_box {
	width: 450px;
	background-color: #eff2f6;
	padding: 50px 50px 80px 50px;
	float: right;
}
.un_topRecruit_inner_box_text {
	font-size: 1.4rem;
	line-height: 2;
	margin: 60px 0;
}

/* 採用情報 end */

/* お知らせ */

.un_topNews {
	width: 1200px;
	margin: 0 auto;
}
.un_topNews_left {
	width: 23%;
	float: left;
}
.un_topNews_right {
	width: 77%;
	float: right;
}

.un_topNews_right ul {
	padding: 0;
	margin: 0 0 60px 0;
	border-top: solid 1px #dedede;
}
.un_topNews_right ul li {
	font-size: 1.6rem;
	padding: 50px 0;
	margin: 0;
	border-bottom: solid 1px #dedede;
	list-style-type: none;
}
.un_topNews_right ul li::after {
	content: "";
	display: block;
	clear: both;
}

.un_topNews_right_day {
	display: block;
	width: 17%;
	float: left;
}
.un_topNews_right_text {
	display: block;
	width: 83%;
	float: right;
}
/* お知らせ end */

/* ■■■ TOP ■■■ end */


/* 下層共通 */

.bl_commonContents {
	padding: 0px 0 100px;
}

.bl_commonContents_2column {
	width: 1200px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 2;
}
.bl_commonContents_2column_left {
	width: 20%;
	float: left;
}
.bl_commonContents_2column_right {
	width: 75%;
	float: right;
}
.bl_commonContents_2column_left ul {
	padding: 0;
}
.bl_commonContents_2column_left ul li {
	font-size: 1.4rem;
	border-bottom: solid 1px #dedede;
	list-style-type: none;
	padding-bottom: 5px;
	margin-bottom: 20px;
	position: relative;
}
.bl_commonContents_2column_left ul li::after{
	content: "";
	display: block;
	border-bottom: 1px solid var(--color-blue);
	width: 16px;
	padding-bottom: 5px;
	position: absolute;
}

.bl_commonContents_2column_left ul li a {
	display: block;
	padding: 0 0 0 30px;
	position: relative;
}
.bl_commonContents_2column_left ul li a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	top: 0%;
	left: 2px;
	transition: all 0.2s;
}
.bl_commonContents_2column_left ul li a:hover {
	color: var(--color-orange-light);
}
.bl_commonContents_2column_left ul li a:visited , .bl_commonContents_2column_left ul li a:active {
    color: #333;
}

.bl_breadCrumbs {
	width: 95%;
	font-size: 1.2rem;
	margin: 0 auto 50px;
}
.bl_PageTitleCommon {
	width: 95%;
	margin: 0 auto;
}
.bl_mvCommon {
	overflow: hidden;
	width: 100%;
	height: 440px;
	margin: 70px auto 100px;
}
.bl_mvCommon.bl_mvCommon__noimg {
	height: 0px;
	margin: 40px auto 40px;
}
.bl_mvCommon img {
	width: 100%;
	height: auto; 
	margin-top: -150px;
}

.bl_mvCommon.el_mv__pc {
	display: block;
}
.bl_mvCommon.el_mv__sp {
	display: none;
}

.bl_common_text_title {
	margin-bottom: 30px;
}
.bl_common_text_title_jp {
	text-wrap: wrap;
	font-size: 3.0rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0px;
}
.bl_common_text_title_en {
	font-size: 1.4rem;
	color: var(--color-blue);
}

.bl_common_text_title_jp.bl_common_text_title_jp__line {
	border-left: solid 3px var(--color-blue);;
	padding-left: 15px;
}

.bl_mvCommon.bl_mvCommon__recruitMv {
	height: 585px;
	margin: 70px auto 0px;
}
.bl_mvCommon.bl_mvCommon__recruitMvOther {
	height: 280px;
	margin: 70px auto 0px;
}

/* 下層共通 end */

/* フォーム共通 */

.bl_form {
	width: 1200px;
	margin: 0 auto;
}
.bl_form_description {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 30px;
}
.bl_form_description.bl_form_description__comp {
	margin-bottom: 80px;
}

.bl_form table {
	width: 100%;
}
.bl_form table th {
	width: 15%;
	height: 80px;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 0px 0px 0px 0px;
	text-align: left;
}
.bl_form table td {
	width: 85%;
	font-size: 1.4rem;
	padding: 0px 0px 0px 0px;
	text-align: left;
}

.form_textAdd {
	font-size: 1.4rem;
	margin: 0 20px 0 10px;
}

input[type="text"] {
	font-size: 1.6rem;
	padding: 10px;
	border-radius: 5px;
	border: solid 1px #ccc;
}
.inputSize_s input[type="text"] {
	width: 80px;
}
.inputSize_l input[type="text"] {
	width: 300px;
}
select {
	font-size: 1.4rem;
	padding: 10px 20px;
	border: solid 1px #ccc;
	border-radius: 5px;
}
input[type=checkbox] {
	width: 18px;
	height: 18px;
	-moz-transform:	scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

textarea {
	font-size: 1.6rem;
	width: 98%;
	padding: 10px 1%;
	border: solid 1px #ccc;
	border-radius: 5px;
white-space:pre-wrap;
}

.bt_formSubmit_outer {
	text-align: center; margin-top: 30px;
}
.bt_formSubmit .submit {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 500;
	border: solid 0px;
	border-radius: 30px;
	padding: 20px 100px;
	color: #fff;
	background-color: var(--color-blue);
	transition: all 0.2s;
	cursor: pointer;
}
.bt_formSubmit .submit:hover {
	background-color: var(--color-orange-light);
}
.bt_formSubmit .back {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 500;
	border: solid 0px;
	border-radius: 30px;
	padding: 20px 100px;
	margin-right: 30px;
	color: #fff;
	background-color: #ccc;
	transition: all 0.2s;
	cursor: pointer;
}
.bt_formSubmit .back:hover {
	background-color: var(--color-orange-light);
}

.bl_form_privacyNote {
	font-size: 1.4rem;
	margin: 40px 0 20px;
}
.bl_form_privacyText {
	width: 100%;
	height: 200px;
	font-size: 1.4rem;
	overflow-y: scroll;
	border: solid 1px #ccc;
	padding: 20px;
}
.bl_form_privacyCheck {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 20px 0 40px;
}

.bl_form_required {
	font-size: 1.3rem;
	color: #fff;
	background-color: #dc143c;
	padding: 2px 5px;
	margin-left: 5px;
}
.bl_form_caution {
	font-size: 1.4rem;
	font-weight: 400;
	color: #dc143c;
	margin-top: 5px;
}


/* フォーム共通 end */


/* ■■■ 南重機の強み ■■■ */


.bl_strengths_box {
	width: 1200px;
	margin: 0 auto 60px;
}
.bl_strengths_box:last-child {
	margin: 0 auto 0px;
}

.bl_strengths_image {
	width: 45%;
	float: left;
}
.bl_strengths_image.bl_strengths_image__reverse {
	width: 45%;
	padding: 0 0 0 0px;
	float: right;
}

.bl_strengths_text {
	width: 55%;
	padding: 0 0 0 80px;
	float: right;
}
.bl_strengths_text.bl_strengths_text__reverse {
	width: 55%;
	padding: 0 80px 0 0px;
	float: left;
}

.bl_strengths_image img {
	width: 100%;
	height: auto;
}
.bl_strengths_text_title_num {
	font-size: 3.0rem;
	line-height: 1;
	color: var(--color-blue);
}
.bl_strengths_text_txt {
	font-size: 1.4rem;
	line-height: 2;
}

/* ■■■ 南重機の強み ■■■ end */


/* ■■■ 事業紹介 ■■■ */

.bl_services_imageBox {
	position: relative;
}
.bl_services_imageBox_img {
  overflow: hidden;
  width: 100%;
  height: 350px;
  margin: 0 auto 40px;
  position: relative;
}
.bl_services_imageBox_img img {
	width: 100%;
	height: auto;
}

.bl_services_text {
	margin-bottom: 70px;
}

/* ■■■ 事業紹介 ■■■ end */


/* ■■■ 会社情報 ■■■ */

.bl_aboutus_text {
	margin-bottom: 70px;
}
.bl_aboutus_text_box {
	width: 100%;
	border-bottom: solid 1px #dedede;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.bl_aboutus_text_box::after {
	content: "";
	display: block;
	clear: both;
}

.bl_aboutus_text_box_left {
	width: 20%;
	float: left;
	margin-right: 5%;
	font-size: 1.4rem;
	font-weight: bold;
}
.bl_aboutus_text_box_right {
	font-size: 1.4rem;
	width: 75%;
	float: right;
}

.el_aboutus_sign {
	display: block;
	margin-top: 30px;
}
.el_aboutus_sign_text {
	display: inline-block;
	float: right;
}

.hp_aboutUs_large {
	font-size: 1.6rem;
	font-weight: 600;
}

/* ■■■ 会社情報 ■■■ end */


/* ■■■ お知らせ ■■■ */

.bl_news_box {
	width: 1200px;
	padding: 30px 0;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 2;
	border-bottom: solid 1px #dedede;
}
.bl_news_box_left {
	width: 10%;
	float: left;
	margin-right: 5%;
}
.bl_news_box_right {
	width: 85%;
	float: right;
}

.bl_news_detail_titleBox {
	width: 1200px;
	padding: 0 0 10px 0;
	margin: 0 auto 30px;
	font-size: 1.4rem;
	line-height: 2;
	border-bottom: solid 1px #dedede;
}
.bl_news_detail_titleBox_day {
	font-size: 1.4rem;
}
.bl_news_detail_titleBox_title {
	font-size: 2.4rem;
	font-weight: 600;
}
.bl_news_detail_text {
	width: 1200px;
	margin: 0 auto 200px;
	font-size: 1.4rem;
	line-height: 2;
}
.bl_news_detail_titleOtherNews {
	text-align: center;
}
.bl_news_detail_titleOtherNews_text {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 600;
	border-bottom: solid 2px var(--color-blue);
	padding-bottom: 10px;
	margin-bottom: 10px;
}

/* ■■■ お知らせ ■■■ end */

/* ■■■  保有機械 ■■■ */

.el_machine_outer {
	width: 1200px;
	margin:  0 auto;
}
.el_machine_outer_text {
	font-size: 1.4rem;
	margin-bottom: 30px;
}
.el_machine_outer table {
	width: 100%;
	font-size: 1.4rem;
	border-spacing: 0;
}
.el_machine_outer table th {
	color: #fff;
	width: 20%;
	background-color: var(--color-blue);
	border-right: solid 1px #fff;
	padding: 20px 15px;
}
.el_machine_outer table th:last-child {
	border-right: solid 0px;
}
.el_machine_outer table td {
	border-bottom: solid 1px #dedede;
	padding: 10px 10px;
	text-align: center;
}

.bl_machine_btPdf a {
	width: 130px;
	color: #fff;
	display: block;
	background-color: var(--color-blue);
	border-radius: 5px;
	padding: 10px 15px;
	margin: 0 auto;
	text-align: center;
}
.bl_machine_btPdf a:hover {
	background-color: var(--color-orange-light);
}

/* ■■■  保有機械 ■■■ end */

/* ■■■  サイトマップ ■■■ */

.el_sitemap_outer {
	width: 1200px;
	margin: 0 auto;
}
.el_sitemap_outer_link {;
	font-size: 1.6rem;
	border-bottom: solid 1px #dedede;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-bottom: 30px;
	position: relative;
}
.el_sitemap_outer_link:after {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9";
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	left: 0px;
	transition: all 0.2s;
}


.el_sitemap_outer_sublink {
	font-size: 1.4rem;
	padding-left: 20px;
	padding-bottom: 10px;
	margin-left: 30px;
	margin-bottom: 30px;
	position: relative;
	border-bottom: dotted 1px #dedede;
}
.el_sitemap_outer_sublink:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	left: 0px;
	transition: all 0.2s;
}




/*
.el_sitemap_outer {
	width: 1200px;
	margin: 0 auto;
}
.el_sitemap_outerSub {
	width: 1140px;
	margin: 0 auto;
}
.el_sitemap_outer_link {
	font-size: 1.6rem;
	width: 33%;
	float: left;
	padding-left: 30px;
	margin-bottom: 50px;
	position: relative;
}
.el_sitemap_outer_link:after {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9";
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	left: 0px;
	transition: all 0.2s;
}
.el_sitemap_outer_sublink {
	font-size: 1.4rem;
	width: 33%;
	float: left;
	padding-left: 20px;
	margin-bottom: 50px;
	position: relative;
}
.el_sitemap_outer_sublink:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	left: 0px;
	transition: all 0.2s;
}
*/

/* ■■■  サイトマップ ■■■ end */


/* ■■■  採用情報 ■■■ */

.el_recruit_logo {
	position: absolute; top: 20px; left: 20px;
	color: #fff;
}
.el_recruit_logo_jp {
	font-size: 3.6rem;
}
.el_recruit_logo_en {
	font-size: 1.2rem;
}

.el_recruit_catch {
	position: absolute; top: 120px; right: 20px;
	color: #fff;
}
.el_recruit_catch_main {
	font-size: 5.0rem;
	font-weight: 400;
	margin-bottom: 20px;
}	
.el_recruit_catch_sub {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 80px;
}
.el_btn_more.el_btn_more__recruitMv a {
    padding: 20px 70px;
}

.el_recruit_menu {
	margin-bottom: 90px;
}
.el_recruit_menu div a {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	width: 20%;
	padding: 30px 0;
	float: left;
	text-align: center;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	position: relative;
}
.el_recruit_menu div a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	right: 30px;
	transition: all 0.2s;
}
.el_recruit_menu div:last-child a {
	border-right: solid 0px;
}

.el_recruit_menu div a:hover {
	color: #fff;
	background-color: var(--color-orange-light);
}
.el_recruit_menu div a:hover:after {
	color: #fff;
	right: 25px;
}

.hp_textWhite {
	color: #fff;
}

.bl_recruit_menuTitle {
	color: var(--color-blue);
	text-align: center;
	margin-bottom: 20px;
}
.bl_recruit_menuTitle.bl_recruit_menuTitle__left {
	text-align: left;
}
.bl_recruit_menuTitle_en {
	display: inline-block;
	font-size: 1.4rem;
	margin-bottom: 5px;
}
.bl_recruit_menuTitle_img {
	display: inline-block;
	margin-bottom: 5px;
}
.bl_recruit_menuTitle_jp {
	display: inline-block;
	font-size: 4.0rem;
	font-weight: 400;
	margin-bottom: 30px;
}

.bl_recruit_menuTitle.bl_recruit_menuTitle__mvCommon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	margin: auto;
}
.bl_recruit_menuTitle.bl_recruit_menuTitle__mvCommon .bl_recruit_menuTitle_jp {
	color: #fff;
	margin-bottom: 0;
	white-space: nowrap;
}
.bl_recruit_menuTitle.bl_recruit_menuTitle__mvCommon .bl_recruit_menuTitle_en {
	color: #fff;
}




.bl_strengths_text_txt.bl_strengths_text_txt__recruitTop {
	line-height: 2.4;
	margin-bottom: 100px;
}

.el_recruitTop_numbers {
	width: 1200px;
	padding: 100px 80px;
	margin:  70px auto 70px;
	background-color: #e0e9f4;
}
.el_recruitTop_numbers_left {
	width: 50%;
	float: left;
}
.el_recruitTop_numbers_right {
	width: 50%;
	float: right;
	position: relative;
}
.el_recruitTop_numbers_right_img {
	width: 400px;
	height: auto;
	margin: 0 auto;
}
.el_recruitTop_numbers_right_img img {
	width: 100%;
	height: auto;
	margin-left: 40px;
}
.el_recruitTop_numbers_left_menuText {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 60px;
}

.el_recruitTop_requirements {
	width: 1200px;
	padding: 100px 80px;
	margin:  0 auto 70px;
	background-image: url(../images/common/img_mv_other-recruit_require.jpg);
	background-position: left -50px;
	background-repeat: no-repeat;
	background-size: 100% auto;

}
.hp_recruit_btMargin {
	margin-bottom: 60px;
}

.bl_recruitJoin {
	width: 100%;
	background-color: var(--color-blue);
	padding: 90px 0 130px;
	text-align: center;
}
.bl_recruitJoin_title {
	font-size: 6.0rem;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 30px;
}
.bl_recruitJoin_text {
	font-size: 1.4rem;
	line-height: 2;
	color: #fff;
	margin-bottom: 60px;
}
.el_recruit_jobText {
	margin-bottom: 50px;
}


.bl_recruitWork_plink {
	font-size: 2.0rem;
	width: 1200px;
	margin: 0 auto 0px;
}
.bl_recruitWork_plink a {
	padding-left: 30px;
	position: relative;
}
.bl_recruitWork_plink a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-size: 2.8rem;
	font-weight: 600;
	color: #333;
	position: absolute;
	top: -2px;
	left: 0px;
}
.bl_recruitWork_plink_left {
	width: 50%;
	float: left;
	text-align: right;
	padding-right: 100px;
}
.bl_recruitWork_plink_right {
	width: 50%;
	float: right;
	text-align: left;
	padding-left: 100px;
}

.bl_recruitWork_caption {
	width: 100%;
	background-color: var(--color-blue);
	margin-top: 100px;
}
.bl_recruitWork_caption_inner {
	font-size: 3.0rem;
	font-weight: 600;
	color: #fff;
	width: 1200px;
	padding: 60px 0;
	margin: 0 auto 70px;
	text-align: left;
}

.bl_recruitWork_explanation {
	width: 1200px;
	padding: 0px 0;
	margin: 0 auto 0px;
}

.bl_recruitWork_explanation_title {
	font-size: 2.4rem;
	font-weight: 400;
	border-left: solid 8px var(--color-blue);
	padding-left: 15px;
	margin-bottom: 20px;
	
}
.bl_recruitWork_explanation_text {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 60px;
}


.el_recruitSummary {
	width: 1200px;
	margin: 0 auto;
}
.el_recruitSummary_box {
	font-size: 1.4rem;
	padding-bottom: 15px;
	margin-bottom: 40px;
	border-bottom: solid 1px #dedede;
}
.el_recruitSummary_box::after {
	content: "";
	display: block;
	clear: both;
}
.el_recruitSummary_box_left {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.5;
	width: 20%;
	float: left;
	border-left: solid 5px var(--color-blue);
	padding-left: 15px;
}
.el_recruitSummary_box_right {
	width: 80%;
	float: right;
}


.el_recruitNumbers {
	width: 1200px;
	margin: 0 auto;
}
.bl_recruitNumbers_box {
	width: 48.5%;
	float: left;
	border: solid 1px var(--color-blue);
	padding: 50px 60px;
	margin-right: 3%;
	margin-bottom: 40px;
	text-align: center;
}
.bl_recruitNumbers_box:nth-child(even) {
	margin-right: 0;
}


.bl_recruitNumbers_box:nth-child(1) {
	height: 460px;
}
.bl_recruitNumbers_box:nth-child(2) {
	height: 460px;
}

.bl_recruitNumbers_box:nth-child(3) {
	height: 640px;
}
.bl_recruitNumbers_box:nth-child(4) {
	height: 640px;
}

.bl_recruitNumbers_box:nth-child(5) {
	height: 630px;
}
.bl_recruitNumbers_box:nth-child(6) {
	height: 630px;
}

.bl_recruitNumbers_box:nth-child(7) {
	height: 490px;
}
.bl_recruitNumbers_box:nth-child(8) {
	height: 490px;
}

.bl_recruitNumbers_box:nth-child(9) {
	height: 600px;
}
.bl_recruitNumbers_box:nth-child(10) {
	height: 600px;
}

.bl_recruitNumbers_box:nth-child(11) {
	height: 480px;
}
.bl_recruitNumbers_box:nth-child(12) {
	height: 480px;
}


.el_recruitNumbers_box_title {
	font-size: 3.0rem;
	font-weight: 600;
	color: var(--color-blue);
	position: relative;
	margin-bottom: 60px;
}
.el_recruitNumbers_box_title::before {
  background-color: var(--color-orange); /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  bottom: -20px; /* 線の位置 */
  content: "";
  height: 3px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 53px; /* 線の長さ */
}
.el_recruitNumbers_box_icon {
	text-align: center;
	margin-bottom: 50px;
}
.el_recruitNumbers_box_icon_img {
	display:inline-block;
}
.el_recruitNumbers_box_graph {
	display: inline-block;
}
.el_recruitNumbers_box_graph_foundingNum {
	font-size: 10.0rem;
	font-weight: 600;
	line-height: 0.5;
	color: var(--color-blue);
}
.el_recruitNumbers_box_graph_foundingUnit {
	font-size: 4.0rem;
	font-weight: 600;
	color: var(--color-blue);
}

.el_recruitNumbers_box_location {
}
.el_recruitNumbers_box_location_left {
	width: 60%;
	float: left;
	text-align: center;
}
.el_recruitNumbers_box_location_right {
	width: 40%;
	float: right;
	text-align: right;
}
.el_recruitNumbers_box_location_right ul {
	padding: 0;
}
.el_recruitNumbers_box_location_right li {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-blue);
	list-style-type: none;
	text-align: left;
	margin-bottom: 10px;
}
.el_recruitNumbers_box_location_locationNum {
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1;
	color: var(--color-blue);
}
.el_recruitNumbers_box_location_locationUnit {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-blue);
}

.el_recruitNumbers_box_graph.el_recruitNumbers_box_graph__holidy {
	display: block;
	position: relative;
	height: 205px;
	margin-top: 120px;
}
.el_recruitNumbers_box_graph__holidy_img {
	position: absolute;
	top: 0;
	left: 0;
}
.el_recruitNumbers_box_graph__holidy_numOutdoor {
	position: absolute;
	bottom: 11%;
	left: 0px;
}
.el_recruitNumbers_box_graph__holidy_numIndoor {
	position: absolute;
	bottom: 11%;
	right: 0px;
}
.el_recruitNumbers_box_graph__holidyNum {
	font-size: 4.8rem;
	font-weight: 600;
	color: var(--color-blue);
}
.el_recruitNumbers_box_graph__holidyUnit {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--color-blue);
}


.bl_recruitNumbers_box_numBasic {

}
.bl_recruitNumbers_box_numBasic_item {
	width: 50%;
	float: left;
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--color-blue);
	text-align: left;
}
.el_recruitNumbers_box_numBasic_item_num {
	font-size: 4.0rem;
	font-weight: 600;
	color: var(--color-blue);
}
.el_recruitNumbers_box_numBasic_item_unit {
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--color-blue);
}





/* ■■■  採用情報 ■■■ end */


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


html {

}

.ly_header_inner {
	width: 95%;
}


/* グローバルナビ */
.bl_globalNavi {
	display: none;
}

/* グローバルナビ end */

/* ハンバーガーメニュー */
.hamburger-menu {
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 37px; right: 0;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: #fff;
  position: absolute;
  top: 75px;
  width: 100%;
  z-index: 9999;
	padding: 0 0 60px 0;
}
.navigation ul {
	display: block;
	padding: 0 2.5%;
	border-top: solid 1px #dedede;
}
.navigation ul li {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 0;
	list-style-type: none;
	border-bottom: solid 1px #dedede;
}
.navigation ul li a {
	display: block;
	padding: 15px 5px;
}
.navigation ul li a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	right: 30px;
	transition: all 0.2s;
}
.navigation_reqruitOther {
	font-size: 1.2rem;
	font-weight: 400;
}
.navigation_reqruitOther a.text {
	padding: 10px 5px;
}

.navigation_btnConract a {
	width: 85%;
	font-size: 1.4rem;
	display: block;
	color: #fff;
	background-color: var(--color-orange);
	padding: 20px 5%;
	margin: 15px auto 0;
	position: relative;
}
.navigation_btnConract a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 600;
	color: #fff;
	position: absolute;
	right: 30px;
	transition: all 0.2s;
}


.navigation_accordion {
  margin: 0;
}
.navigation_accordion__summary {
  font-weight: bold;
  position: relative;
  display: block;
  cursor: pointer;
	padding: 20px 5px;


}
.navigation_accordion__summary::after {
  content: "+";
  font-size: 1.6em;
  color:  var(--color-blue);
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
.navigation_accordion input:checked ~ .navigation_accordion__summary::after {
  font-size: 2.4em;
  content: "-";
}
.navigation_accordion input {
  display: none;
}
.navigation_accordion__detail {
  display: none;
  padding: 4px 10px;
  margin: 10px 0;
}
.navigation_accordion input:checked ~ .navigation_accordion__detail {
  display: block;
}
.navigation_accordion__text {
  margin: 0;
}
/* ハンバーガーメニュー end */


.el_btnContact a {

}

.el_mv {
	height: 500px;
}
ul.bl_globalNavi_ul li {
	font-size: 1.2rem;
	margin-right: 10px;
}

.bl_mvCommon {
	height: 300px;
}
.bl_mvCommon.bl_mvCommon__recruitMv {
	height: 480px;
}

.el_recruit_menu div a {
	font-size: 1.2rem;
}

.bl_topContents_titleBox {
	width: 100%;
}
.un_topRecruit_inner {
	width: 100%;
}
.un_topNews {
	width: 100%;
}
.bl_commonContents_2column {
	width: 95%;
}


.bl_strengths_box {
    width: 95%;
}

.bl_recruitWork_explanation {
    width: 95%;
}





}


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


html {
	/*font-size: 74%;*/
}

a[href^="tel:"] {
	pointer-events: auto;
}

.hp_pc {
	display: none;
}
.hp_sp {
	display: block;
}

/* ヘッダー */

.ly_header {
	padding: 20px 0 20px;
}

.ly_header_inner {
	width: 95%;
}
/* ヘッダー end */

/* ハンバーガーメニュー */
.hamburger-menu {
	top: 13px; right: 0;
}
/* ハンバーガーメニュー end */

/* フッター */
.ly_footer_inner {
	width: 95%;
}
.ly_footer_left {
	width: 100%;
	float: none;
	margin-bottom: 50px;
}
.ly_footer_right {
	width: 100%;
	float: none;
}
.ly_footer_right ul li {
	width: 45%;
}
.ly_footer .el_footerAdd {
	font-size: 1.4rem;
	line-height: 2;
	display: block;
}
.ly_footer .el_logo.el_logo__footer {
	margin-bottom: 10px;
	float: none;
}


/* フッター end */

/* お問い合わせ */
.ly_contact {
	width: 100%;
	padding: 60px 0;
}
.ly_contact_inner {
	width: 95%;
	padding: 0px;
	margin: 0 auto;
	background-color: #f4f4f4;
}
.ly_contact_inner_left {
	width: 100%;
	float: none;
	padding: 60px 5%;
	margin-bottom: 3px;
	text-align: center;
	background-color: #fff;
}
.ly_contact_inner_right {
	width: 100%;
	float: none;
	padding: 50px 5% 70px;
	background-color: #fff;
}
.ly_contact_inner_right .el_contact_tel {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.ly_contact_inner_right .el_contact_tel:before {
	font-size: 1.8rem;
	position:absolute;top: 6px;left:-23px;
}

.ly_contact_inner_left .el_contact_text {
	display: block;
	text-align: center;
}
.ly_contact_inner_right .el_btnFooterContact {
	margin-top: 40px;
}
/* お問い合わせ end */




/* メインビジュアル */

.el_mv {
	height: 600px;
	margin: 0 auto 40px;
}
.el_mv.el_mv__pc {
	display: none;
}
.el_mv.el_mv__sp {
	display: block;
}

.el_mvBox_mvtext {
	top: 100px; right: 20px;
}

.bg_flowing .bg_flowing_text_scroll .bg_flowing_text_inn ,.bg_flowing .bg_flowing_text_scroll2 .bg_flowing_text_inn {
  font-size: 4.0rem;
}

/* メインビジュアル end */

/* TOP汎用 */
.bl_topContents__strengths {
	background: url( "../images/top/img_top_conttxt_strengths.png" ) 10% 17% / 700px auto no-repeat ;
}
.bl_topContents__service {
	background: url( "../images/top/img_top_conttxt_services.png" ) 90% 22% / 700px auto no-repeat ;
}
.bl_topContents_titleBox {
	width: 95%;
}

.bl_topContents_titleBox_left {
	width: 100%;
	float: none;
	margin-bottom: 30px;
}

.bl_topContents_titleBox_right {
	width: 100%;
	float: none;
}

.el_topContents_titleBox_left_title.el_topContents_titleBox_left_title__PageTitleCommon {
	font-size: 4.0rem;
}

/* TOP汎用 end */

/* 南重機の強み */
.un_topStrengths {
	width: 100%;
	background: url( "../images/top/img_mv_1.jpg" ) 50% 0% / auto 100% no-repeat ;
	padding: 60px 0;
}
.un_topStrengths_inner {
	width: 95%;
	display: block;
}
.un_topStrengths_inner_box {
	width: 100%;
	float: none;
	padding: 50px 10%;
	margin-bottom: 60px;
}
.un_topStrengths_inner_box img {
	margin-bottom: 50px;
}

.un_topStrengths_inner_box_title {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 5px;
}
/* 南重機の強み end */

/* 事業紹介 */
.un_topServices {
	width: 100%;
	height: 1200px;
	margin: 0 auto 0px;
}

.un_topServices_left {
	width: 100%;
	height: 600px;
	float: none;
	background-size: auto 100%;
	margin-bottom: 10px;
}
.un_topServices_right {
	width: 100%;
	float: none;

}
.un_topServices_right_sheetpile {
	width: 100%;
	height: 300px;
	background-size: 100% auto;
	margin-bottom: 10px;
}
.un_topServices_right_other {
	width: 100%;
	height: 300px;
	background-size: 100% auto;
}
.bl_topServices_title {
	color: #fff;
	position: absolute;
	top: 50px;
	left: 20px;
}

/* 事業紹介 end */

/* 会社概要 */
.un_aboutUS {
	width: 100%;
}
.un_aboutUS ul {
	margin: 60px 0;
	padding: 0;
}

.bl_topContents_titleBox_right__aboutUs {
	display: none;
}
/* 会社概要 end */


/* 採用情報 */

.un_topRecruit {
	width: 100%;
	background: url( "../images/top/img_top_recruit.jpg" ) 50% 0% / auto 100% no-repeat ;
}
.un_topRecruit_inner {
	width: 95%;
	margin: 0 auto;
}
.un_topRecruit_inner_box {
	width: 100%;
	padding: 50px 10% 80px;
	float: none;
}

/* 採用情報 end */

/* お知らせ */

.un_topNews {
	width: 95%;
	margin: 0 auto;
}
.un_topNews_left {
	width: 100%;
	float: none;
	margin-bottom: 60px;
}
.un_topNews_right {
	width: 100%;
	float: none;
}

.un_topNews_right ul {
	padding: 0;
	margin: 0 0 60px 0;
}
.un_topNews_right_day {
	width: 100%;
	float: none;
	margin-bottom: 10px;
}
.un_topNews_right_text {
	width: 100%;
	float: none;
}
/* お知らせ end */


/* 下層共通 */


.bl_commonContents_2column {
	width: 95%;
}
.bl_commonContents_2column_left {
	width: 100%;
	float: none;
}
.bl_commonContents_2column_right {
	width: 100%;
	float: none;
}


.bl_commonContents_2column_left ul li {
	font-size: 1.6rem;
	width: 45%;
	float: left;
}
.bl_commonContents_2column_left ul li:nth-child(odd) {
	margin-right: 10%;
}
.bl_commonContents_2column_left ul li a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f063";
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	top: 0%;
	left: 2px;
	transition: all 0.2s;
}


.bl_breadCrumbs {
	margin: 30px auto 30px;
}
.bl_PageTitleCommon {
	width: 95%;
	margin: 0 auto;
}
.bl_mvCommon {
	height: auto;
	margin: 70px auto 50px;
}
.bl_mvCommon img {
	width: 100%;
	height: auto;
	margin-top: 0;
}

.bl_mvCommon.el_mv__pc {
	display: none;
}
.bl_mvCommon.el_mv__sp {
	display: block;
}

.bl_mvCommon.bl_mvCommon__recruitMv {
	height: 500px;
}
.bl_mvCommon.bl_mvCommon__recruitMvOther {
	height: 200px;
}

/* 下層共通 end */


/* フォーム共通 */

.bl_form {
	width: 95%;
}
.bl_form table th {
	display: block;
	width: 100%;
	height: auto;
	padding: 0px 0px 15px 0px;
}
.bl_form table td {
	display: block;
	width: 100%;
	padding: 0px 0px 30px 0px;
}

.form_textAdd {
	font-size: 1.4rem;
	margin: 0 5px 0 5px;
}

.bl_form_privacyNote {
	margin: 0px 0 20px;
}

input[type="text"] {
	padding: 10px;
}
select {
	width: 80%;
	font-size: 1.4rem;
	color: #666;
	padding: 10px 10px;
	margin-bottom: 20px;
	border-radius: 5px;
	-webkit-appearance: none;
	background-color: #fff;
}

.bt_formSubmit_outer {
	text-align: center; margin-top: 30px;
}
.bt_formSubmit .submit {
	margin: 0 0 0px 0;
}
.bt_formSubmit .back {
	margin: 0 0 30px 0;
}

/* フォーム共通 end */


/* ■■■ 南重機の強み ■■■ */


.bl_strengths_box {
	width: 95%;
	margin: 0 auto 60px;
}

.bl_strengths_image {
	width: 100%;
	float: none;
}
.bl_strengths_image.bl_strengths_image__reverse {
	width: 100%;
	padding: 0 0 0 0px;
	float: none;
}

.bl_strengths_text {
	width: 100%;
	padding: 0 0 0 0;
	margin-bottom: 30px;
	float: none;
}
.bl_strengths_text.bl_strengths_text__reverse {
	width: 100%;
	padding: 0 0 0 0;
	float: none;
}

.bl_strengths_image img {
	width: 100%;
	height: auto;
}
.bl_strengths_text_title {
	margin-bottom: 30px;
}
.bl_strengths_text_title_num {
	font-size: 3.0rem;
	color: var(--color-blue);
}
.bl_strengths_text_title_jp {
	font-size: 3.0rem;
}
.bl_strengths_text_title_en {
	font-size: 1.4rem;
	color: var(--color-blue);
}
.bl_strengths_text_txt {
	font-size: 1.4rem;
	line-height: 2;
}

/* ■■■ 南重機の強み ■■■ end */

/* ■■■ 事業紹介 ■■■ */

.bl_services_imageBox_img {
  overflow: hidden;
  width: 100%;
  height: auto;
}

/* ■■■ 事業紹介 ■■■ end */

/* ■■■ 会社情報 ■■■ */

.bl_aboutus_text.company .bl_aboutus_text_box_left {
	width: 100%;
	float: none;
	margin-right: 0%;
	margin-bottom: 10px;
}
.bl_aboutus_text.company .bl_aboutus_text_box_right {
	width: 100%;
	float: none;
}

.bl_aboutus_text.history .bl_aboutus_text_box_left {
	width: 28%;
}
.bl_aboutus_text.history .bl_aboutus_text_box_right {
	width: 67%;
}


/* ■■■ 会社情報 ■■■ end */


/* ■■■ お知らせ ■■■ */

.bl_news_box {
	width: 95%;
}
.bl_news_box_left {
	width: 100%%;
	float: none;
	margin-right: 0%;
	margin-bottom: 10px;
}
.bl_news_box_right {
	width: 100%%;
	float: none;
}

.bl_news_detail_titleBox {
	width: 95%;
}
.bl_news_detail_text {
	width: 95%;
}

/* ■■■ お知らせ ■■■ end */

/* ■■■  保有機械 ■■■ */

.el_machine_outer {
	width: 95%;
}

.el_machine_outer .el_machine_outer_scroll {
	overflow: auto;
}
.el_machine_outer .el_machine_outer_scroll table {
	width:1200px;
}
.el_machine_outer .el_machine_outer_scroll table th{
white-space: nowrap;　/* 文字の折返しを禁止 */
}

.el_machine_outer_scroll::-webkit-scrollbar{
	height: 5px;
}
.el_machine_outer_scroll::-webkit-scrollbar-track{
	background: #F1F1F1;
}
.el_machine_outer_scroll::-webkit-scrollbar-thumb {
	background: #BCBCBC;
}


/* ■■■  保有機械 ■■■ end */



/* ■■■  サイトマップ ■■■ */


.el_sitemap_outer {
	width: 95%;
}

/*
.el_sitemap_outer {
	width: 95%;
}
.el_sitemap_outerSub {
	width: 95%;
}
.el_sitemap_outer_link {
	width: 45%;
	padding-left: 5%;
}
.el_sitemap_outer_sublink {
	font-size: 1.4rem;
	width: 45%;
	padding-left: 5%;
}
*/



/* ■■■  サイトマップ ■■■ end */



/* ■■■  採用情報 ■■■ */

.el_recruit_logo_jp {
	font-size: 2.4rem;
}
.el_recruit_logo_en {
	font-size: 1.0rem;
}

.el_recruit_catch {
	width: 85%;
	position: absolute; top: 120px; right: 0px;
}
.el_recruit_catch_main {
	font-size: 3.5rem;
	margin-bottom: 20px;
}	
.el_recruit_catch_sub {
	font-size: 1.4rem;
	margin-bottom: 50px;
}
.el_btn_more.el_btn_more__recruitMv a {
    padding: 20px 70px;
    margin-right: 20px;
}
.el_recruit_menu {
    margin-bottom: 60px;
}
.el_recruit_menu div a {
	font-size: 1.4rem;
	font-weight: 600;
	width: 50%;
}
.el_recruit_menu div:last-child a {
	width: 100%;
}

.el_recruit_menu div a:after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-blue);
	position: absolute;
	right: 10px;
	transition: all 0.2s;
}
.el_recruit_menu div a:hover:after {
	color: #fff;
	right: 5px;
}

.el_recruit_menu div:nth-child(even) a {
	border-right: solid 0px;
}

.bl_recruit_menuTitle_jp {
	display: inline-block;
	font-size: 3.0rem;
	font-weight: 400;
	margin-bottom: 30px;
}


.bl_strengths_text_txt.bl_strengths_text_txt__recruitTop {
	line-height: 2.4;
	margin-bottom: 100px;
}

.el_recruitTop_numbers {
	width: 100%;
	padding: 100px 20px;
	margin:  0 auto 60px;
}
.el_recruitTop_numbers_left {
	width: 100%;
	float: none;
	margin-bottom: 70px;
}
.el_recruitTop_numbers_right {
	width: 100%;
	float: none;
}
.el_recruitTop_numbers_right_img {
	width: 100%;
}
.el_recruitTop_numbers_right_img img {
	width: 100%;
	height: auto;
	margin-left: 0px;
}
.el_recruitTop_numbers_left_menuText {
	margin-bottom: 60px;
}

.el_recruitTop_requirements {
	width: 100%;
	padding: 100px 0px;
	margin:  0 auto 60px;
	background-position: left 0px;
	background-size: auto 100%;
}


.hp_recruit_btMargin {
	margin-bottom: 60px;
}

.bl_recruitJoin {
	width: 100%;
	padding: 90px 0 130px;
}
.bl_recruitJoin_title {
	font-size: 4.0rem;
	margin-bottom: 30px;
}
.bl_recruitJoin_text {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 60px;
}


.bl_recruitWork_plink {
	font-size: 1.4rem;
	width: 100%;
	margin: 0 auto 0px;
}
.bl_recruitWork_plink a {
	padding-left: 18px;
	position: relative;
}
.bl_recruitWork_plink a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-size: 1.4rem;
	font-weight: 600;
	color: #333;
	position: absolute;
	top: 0px;
	left: 0px;
}
.bl_recruitWork_plink_left {
	width: 50%;
	float: left;
	text-align: right;
	padding-right: 20px;
}
.bl_recruitWork_plink_right {
	width: 50%;
	float: right;
	text-align: left;
	padding-left: 20px;
}

.bl_recruitWork_caption {
	width: 100%;
	background-color: var(--color-blue);
	margin-top: 60px;
}
.bl_recruitWork_caption_inner {
	font-size: 3.0rem;
	font-weight: 600;
	color: #fff;
	width: 95%;
	padding: 60px 0;
	margin: 0 auto 50px;
	text-align: left;
}

.bl_recruitWork_explanation {
	width: 95%;
	padding: 0px 0;
	margin: 0 auto 0px;
}

.bl_recruitWork_explanation_title {
	font-size: 2.4rem;
	border-left: solid 8px var(--color-blue);
	padding-left: 15px;
	margin-bottom: 20px;
	
}
.bl_recruitWork_explanation_text {
	font-size: 1.4rem;
	line-height: 2;
	margin-bottom: 60px;
}

.el_recruitSummary {
	width: 95%;
}
.el_recruitSummary_box_left {
	width: 30%;
}
.el_recruitSummary_box_right {
	width: 70%;

}



.el_recruitNumbers {
	width: 95%;
	margin: 30px auto 0;
}
.bl_recruitNumbers_box {
	width: 100%;
	float: none;
	padding: 50px 40px;
}



.bl_recruitNumbers_box:nth-child(1) {
	height: 420px;
}
.bl_recruitNumbers_box:nth-child(2) {
	height: 600px;
}

.bl_recruitNumbers_box:nth-child(3) {
	height: 600px;
}
.bl_recruitNumbers_box:nth-child(4) {
	height: 600px;
}

.bl_recruitNumbers_box:nth-child(5) {
	height: 560px;
}
.bl_recruitNumbers_box:nth-child(6) {
	height: 560px;
}

.bl_recruitNumbers_box:nth-child(7) {
	height: 450px;
}
.bl_recruitNumbers_box:nth-child(8) {
	height: 420px;
}

.bl_recruitNumbers_box:nth-child(9) {
	height: 560px;
}
.bl_recruitNumbers_box:nth-child(10) {
	height: 560px;
}

.bl_recruitNumbers_box:nth-child(11) {
	height: 420px;
}
.bl_recruitNumbers_box:nth-child(12) {
	height: 420px;
}

.el_recruitNumbers_box_title {
	font-size: 2.6rem;
}

.el_recruitNumbers_box_location_left {
	width: 100%;
	float: none;
	text-align: center;
	margin-bottom: 20px;
}
.el_recruitNumbers_box_location_left img {
	text-align: center;
	display: inline-block;
}

.el_recruitNumbers_box_location_right {
	width: 100%;
	float: none;
	text-align: right;
}
.el_recruitNumbers_box_location_right ul {
	padding: 0;
}
.el_recruitNumbers_box_location_right li {
	width: 48%;
	font-size: 1.6rem;
	text-align: left;
	margin-bottom: 10px;
	margin-right: 4%;
	float: left;
}
.el_recruitNumbers_box_location_right li:nth-child(odd) {
	margin-right: 0;
}

.el_recruitNumbers_box_location_locationNum {
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1;
	color: var(--color-blue);
}
.el_recruitNumbers_box_location_locationUnit {
	font-size: 1.4rem;
	font-weight: 600;
	margin-right: 5px;
}

.bl_recruitNumbers_box_numBasic_item {
	font-size: 1.6rem;
}
.el_recruitNumbers_box_numBasic_item_num {
	font-size: 2.4rem;
}
.el_recruitNumbers_box_numBasic_item_unit {
	font-size: 1.4rem;
}



/* ■■■  採用情報 ■■■ end */











}








