@charset "UTF-8";
/*============================================================================================
      Header
=============================================================================================*/
.header {
	position: fixed;
	width: calc(100% - 20px);
	height: 60px;
	padding: 0 20px;
	margin: auto;
	background-color: #fff;
	top: 10px;
	left: 0;
	right: 0;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  z-index: 999999;
}
.header_cont {
  position: relative;
  height: 60px;
  z-index: 999999;
}
.header_logo span {
	display: block;
	margin-left: 20px;
	font-size: 1.4rem;
	line-height: 1;
}
.header_logo img {
	height: 36px;
}

/*    Navigation
=====================================================*/
.header_gnav .gnav_list_item {
	position: relative;
	display: block;
}
.header_gnav .gnav_list_item a {
	display: block;
	padding: 18px 15px;
	font-size: 1.4rem;
	font-weight: bold;
	-webkit-transition: color .2s;
	transition: color .2s;
}
.header_gnav .gnav_list_item a:hover {
	color: #E5262D;
}

.header .header_btn {
	position: relative;
	display: block;
	margin: auto;
	margin-left: 20px;
}
.header .header_btn:hover {
	background-color: #fff;
}
.header .header_btn a{
	width: 100%;
	padding: 4px 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	background-color: #E5262D;
	border: 2px solid #E5262D;
	border-radius: 50px;
	transition: background .2s, color .2s;
	-webkit-transition: background .2s, color .2s;
}
.header .header_btn a:hover {
	color: #E5262D;
	background-color: #fff;
}


@media (min-width: 992px){
	.header .header_btn.header_btn_sp {
		display: none;
	}
}
@media (max-width: 991px){
	.header {
		width: 100%;
		top: 0;
		border-radius: 0;
	}

	/*    Navigation
	=====================================================*/
	.header_gnav {
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 10000;
  }
  .header_gnav .gnav_cont{
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    top: 0;
		right: 0;
    overflow-y: scroll;
  }
  .header_gnav .gnav_cont_box{
    width: 100%;
    height: auto;
    padding-bottom: 130px;
    /* overflow-y: scroll; */
  }
	.header_gnav .gnav_list_item {
    width: 100%;
    font-size: 1.6rem;
    border-bottom: 1px solid #eee;
	}
	.header_gnav .gnav_list_item:hover {
		color: #E5262D;
		background-color: #fff;
	}
	.header_gnav .gnav_list_item:first-child {
    border-top: 1px solid #eee;
	}
	.header_gnav .gnav_list_item a {
    display: block;
    width: 100%;
		padding: 20px;
	}
	.header_gnav .gnav_list_item + .gnav_list_item {
		margin-left: 0px;
	}
	.header .header_gnav .gnav_list_item.header_btn {
		width: 100%;
		margin-left: auto;
	}
	.header .header_gnav .gnav_list_item.header_btn a {
		display: block;
		padding: 20px;
		color: #111;
		background-color: #fff;
		border: none;
		border-radius: 0px;
	}
	.header .header_gnav .gnav_list_item.header_btn a:hover {
		color: #E5262D;
	}

	.header_btn.header_btn_sp {
		display: block;
		margin-right: 20px;
		margin-left: auto;
	}
	.header .header_btn.header_btn_sp a {
		font-size: 1.2rem;
	}
}
@media (max-width: 576px){
	.header_logo span {
		margin-top: 5px;
		margin-left: 0;
		font-size: 1rem;
	}
	.header_logo img {
		height: 30px;
	}
}

/*============================================================================================
      Footer
=============================================================================================*/
.footer_entry {
	background-image: url(../img/common/footer_entry_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.footer_entry_inr::before {
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.82);
	z-index: -1;
}
.footer_entry_inr {
	padding: 120px 0;
	z-index: 1;
}
.footer_entry_ttl span {
	display: block;
	font-size: 1.5rem;
	letter-spacing: normal;
}

.footer_cont {
	padding: 80px 0;
	background-color: #fff;
}
.footer_cont * {
	color: #E5262D;
}

.footer_sns_itm {
	width: 40px;
	height: 40px;
}
.footer_sns_itm + .footer_sns_itm {
	margin-left: 20px;
}

.footer_btm {
	padding: 20px;
	background-color: #E5262D;
}

@media (max-width: 576px){
	.footer_entry_inr {
		padding: 21.3vw 0;
	}
	.footer_cont {
		padding: 16vw 0;
	}
	.footer_sns_itm {
		width: 10.6vw;
		height: 10.6vw;
	}
	.footer_sns_itm + .footer_sns_itm {
		margin-left: 5.3vw;
	}
}

/*============================================================================================
      Contents
=============================================================================================*/
@media (max-width: 991px){
	.wrapper {
		padding-top: 60px;
	}
}


/*    TOP
=====================================================*/
.top_wrap {
	overflow-x: hidden;
}

.top_cont {
	background-image: url(../img/top/top_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	z-index: -5;
}
@media (max-width: 896px){
	.top_cont {
		background-size: 320vw;
		background-position: 75% top;
	}
}
@media (max-width: 576px){
	.top_cont {
		background-image: none;
		background-color: #E5262D;
	}
}

.top_news_inr {
	padding-top: 17px;
	padding-bottom: 17px;
}
.top_news_ttl {
	margin-right: 40px;
}
.top_news_lst {
	width: 100%;
}
.top_news_itm {
	width: 100%;
}
.top_news_itm .top_news_itm_date {
	display: inline-block;
	margin-right: 20px;
}
.top_news_itm a {
	padding-right: 40px;
	-webkit-transition: color .2s;
	transition: color .2s;
}
.top_news_itm a::before {
	display: inline-block;
	width: 28px;
	height: 28px;
	top: 0;
	bottom: 0;
	right: 0;
	border: 2px solid #E5262D;
	background-color: #E5262D;
	border-radius: 5px;
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
}
.top_news_itm a::after {
	display: inline-block;
	width: 4px;
	height: 4px;
	top: 0;
	bottom: 0;
	right: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.top_news_itm a:hover {
	color: #E5262D;
}
.top_news_itm a:hover::before {
	background-color: #fff;
}
.top_news_itm a:hover::after {
	border-top: 2px solid #E5262D;
	border-right: 2px solid #E5262D;
}


.top_message {
	padding: 160px 0;
}
.top_message_txt {
	width: 50%;
}
.top_message_txt > h2,
.top_message_txt > p {
	color: #fff;
}
.top_message_txt > p {
	margin-top: 30px;
}
.top_message_txt .g_btn {
	margin-top: 75px;
}
.top_message_img {
	width: 45vw;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
}
.top_message_img {
	max-height: 500px;
	object-fit: cover;
}
@media (max-width: 991px){
	.top_message_txt > h2 br {
		display: none;
	}
}
@media (max-width: 896px){
	.top_message {
		padding: 100px 0;
	}
	.top_message_txt {
		width: 100%;
	}
	.top_message_txt > h2 {
		margin-bottom: 40px;
	}
	.top_message_txt .g_btn {
		margin: 60px auto 0;
	}
}
@media (max-width: 576px){
	.top_message {
		padding: 16vw 0;
	}
	.top_message_txt > h2 {
		margin-bottom: 10.6vw;
	}
	.top_message_txt > p {
		margin-top: 6.6vw;
	}
	.top_message_txt .g_btn {
		margin: 10.6vw auto 0;
	}
}


.top_work {
	padding-bottom: 140px;
}
.top_work_bg {
	position: relative;
	height: 320px;
	overflow: hidden;
	background-image: url(../img/top/top_work_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_work_inr::before {
	display: block;
	width: 48vw;
	height: 100%;
	margin: 0 calc(50% - 50vw);
	background-color: #fff;
	z-index: 1;
}
.top_work_cont {
	position: relative;
	max-width: 460px;
	margin-top: -18%;
	padding: 80px 80px 80px 0;
	z-index: 5;
}
.top_work_cont .g_btn {
	margin-top: 60px;
}
@media (min-width: 896px){
	.top_work_bg {
		background-attachment: fixed;
	}
}
@media (max-width: 896px){
	.top_work_inr::before {
		width: 100%;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.top_work_cont {
		position: relative;
		max-width: 100%;
		margin-top: -60px;
		padding: 60px 40px;
		z-index: 5;
	}
	.top_work_cont .g_btn {
		margin: 40px auto 0;
	}
}
@media (max-width: 576px){
	.top_work_bg {
		height: 50vw;
	}
	.top_work {
		padding-bottom: 26vw;
	}
	.top_work_cont {
		margin-top: -16vw;
		padding: 16vw 10.6vw;
	}
	.top_work_cont .g_btn {
		margin: 10.6vw auto 0;
	}
}


/*    COMPANY
=====================================================*/
.company_lead {
	margin-bottom: 120px;
}
.company_lead_inr::before {
	display: block;
	width: 70vw;
	height: 100%;
	right: 0;
	margin: 0 calc(50% - 50vw);
	background-color: #fff;
	z-index: 1;
}
.company_lead_img {
	position: absolute;
	max-width: 390px;
	top: 120px;
	z-index: 5;
}
.company_lead_txt {
	position: relative;
	width: calc(100% - 470px);
	padding: 90px 0;
	margin: 0 0 0 auto;
	z-index: 5;
}

.company_policy_box {
	margin-bottom: 40px;
	background-color: #F8F8F8;
}
.company_policy_lst {
	padding-top: 20px;
}
.company_policy_itm {
	position: relative;
	padding-top: 40px;
	border-top: 1px solid #EBEBEB;
}
.company_policy_itm + .company_policy_itm {
	margin-top: 60px;
}
.company_policy_itm > span {
	position: absolute;
	display: inline-block;
	top: -0.5em;
	padding-right: 20px;
	background-color: #F8F8F8;
	line-height: 1;
}
.company_policy_txt {
	font-size: 1.6rem;
	font-weight: bold;
}

.company_sec {
	padding-top: 120px;
}

.company_row_ttl {
	min-width: 205px;
}
.company_row_cont {
	width: 100%;
	max-width: 785px;
}

.company_access_map {
	width: 53.5%;
}
.company_access_map * {
	width: 100%;
}
.company_access_map iframe {
	min-height: 400px;
}
.company_access_cont {
	width: 38.5%;
	margin-left: 8%;
}

.company_history_lst .company_history_lst_m {
	display: inline-block;
	width: 3.5em;
	margin-right: 1em;
	text-align: right;
	vertical-align: top;
}
.company_history_lst .company_history_lst_m + dd {
	display: inline-block;
	width: calc(100% - 5em);
}

@media (min-width: 2000px){
	.company_lead_inr::before {
		max-width: 65vw;
	}
}
@media (max-width: 1040px){
	.company_lead {
		margin-bottom: 80px;
	}
	.company_lead_inr {
		padding: 75px 60px;
		background-color: #fff;
	}
	.company_lead_inr::before {
		display: none;
	}
	.company_lead_img {
		position: static;
		max-width: 100%;
		margin: 60px auto 0;
		order: 2;
	}
	.company_lead_txt {
		width: 100%;
		padding: 0;
		order: 1;
	}
}
@media (min-width: 896px){
	.company_row_sec {
		-ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
	}
}
@media (max-width: 896px){
	.company_sec {
		padding-top: 80px;
	}

	.company_row_ttl {
		min-width: auto;
	}
	.company_row_cont {
		width: 100%;
		max-width: 100%;
		margin-top: 40px;
	}

	.company_access_map {
		width: 100%;
	}
	.company_access_cont {
		width: 100%;
		margin-top: 40px;
		margin-left: 0;
	}

	.company_history .company_history_lst_y {
		display: inline-block;
		width: 3.5em;
		text-align: right;
	}
}
@media (max-width: 576px){
	.company_lead {
		margin-bottom: 16vw;
	}
	.company_lead_inr {
		padding: 6.6vw 5vw;
	}
	.company_lead_img {
		margin: 10.6vw auto 0;
	}

	.company_policy_box {
		margin-bottom: 10.6vw;
	}
	.company_policy_lst {
		padding-top: 5.3vw;
	}
	.company_policy_itm {
		padding-top: 8vw;
	}
	.company_policy_itm + .company_policy_itm {
		margin-top: 10.6vw;
	}
	.company_policy_itm > span {
		padding-right: 4vw;
	}

	.company_sec {
		padding-top: 16vw;
	}

	.company_access_map iframe {
		min-height: 52vw;
	}
}



/*    WORK
=====================================================*/
.work_sec{
	padding-top: 60px;
}
.work_cont{
	padding-top: 60px;
	margin-top: 60px;
}
.work_anchor_chd{
	background-color: #E5262D;
	width: calc(33% - 5px);
	border-radius: 10px;
}
.work_anchor_chd a{
	display: block;
	padding: 15px 30px 15px 20px;
}
.work_anchor_chd::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
	position: absolute;
	top:-2px;
	bottom: 0;
	right: 20px;
	margin: auto;
	-webkit-transition: top .2s;
	-o-transition: top .2s;
	transition: top .2s;
}
.work_anchor_chd:hover.work_anchor_chd::after{
	top: 4px;
}
.work_anchor_chd + .work_anchor_chd{
	margin-left: 10px;
}
.work_number::after{
	content: "";
	display: inline-block;
	background-color: #EBEBEB;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: calc(100% - 90px);
	height: 1px;
}
.work_img_cont{
	width: 40%;
}
.work_txt_cont{
	width: 57%;
}
.work_img{
	display: inline-block;
	max-width: 380px;
}
.work_tag{
	display: inline-block;
	background-color: #E5262D;
	padding: 4px 15px;
}
.work_sub_ttl{
	font-size: 2.4rem;
}
.work_table{
	width: 100%;
	border: none;
}
.work_table tr{
	border-bottom: 1px solid #fff;
}
.work_table tr th{
	background-color: #E5262D;
	width: 134px;
	height: inherit;
	text-align: center;
	vertical-align: middle;
  font-family: 'Roboto', sans-serif;
}
.work_table_ttl{
	font-size: 1.6rem;
}
.work_table tr td{
	background-color: #F8F8F8;
	width: calc(100% - 135px);
	padding: 30px 30px 25px;
}
@media (max-width: 896px){
	.work_anchor_chd{
		width: 100%;
	}
	.work_anchor_chd + .work_anchor_chd{
		margin-left: 0;
		margin-top: 10px;
	}
	.work_table tr th{
		width: 100%;
	}
	.work_table tr td{
		width: 100%;
	}
}
@media (max-width: 576px){
	.work_sec{
		padding-top: 16vw;
	}
	.work_cont{
		margin-top: 10.7vw;
	}
	.work_number::after{
		width: calc(100% - 24vw);
	}
	.work_img_cont{
		width: 100%;
	}
	.work_txt_cont{
		width: 100%;
	}
	.work_img{
		display: inline-block;
		max-width: unset;
	}
	.work_tag{
		padding: 1.1vw 4vw;
	}
	.work_table tr th{
		padding: 4vw;
	}
	.work_table tr td{
		padding: 8vw;
	}
}



/*    RECRUIT
=====================================================*/
/* archive */
.RctIdx_lst{
  border-bottom: 1px solid #EBEBEB;
}
.RctIdx_itm{
	border-top: 1px solid #EBEBEB;
  padding: 25px 0 30px;
}

.RctIdx_itm_box{
  width: calc(100% - 180px);
}

.RctIdx_itm_table{
  font-size: 1.3rem;
  width: 100%;
	border: 1px solid #ddd;
}
.RctIdx_itm_table tr{
	border-bottom: 1px solid #ddd;
}
.RctIdx_itm_table tr:last-child{
	border-bottom: none;
}
.RctIdx_itm_table th{
  width: 100px;
	background-color: #fafafa;
	border-right: 1px solid #ddd;
	padding: 13px 20px;
}
.RctIdx_itm_table td{
  padding: 13px 15px;
}

.RctIdx_btn{
  width: 140px;
}
.RctIdx_btn_itm{
  width: 100%;
}
.RctIdx_btn_itm + .RctIdx_btn_itm{
  margin-top: 10px;
}
@media (max-width: 1024px){
  .RctIdx_itm_box{
    width: 100%;
  }
  .RctIdx_btn{
    width: 100%;
    margin-top: 20px;
  }
  .RctIdx_btn_itm{
    width: 49%;
  }
  .RctIdx_btn_itm + .RctIdx_btn_itm{
    margin: 0 0 0 2%;
  }
}
@media (max-width: 576px){
	.RctIdx_itm_table th{
		width: 90px;
		padding: 13px 15px;
	}
}


/* single */
.RctDtl_slider_wrp{
  width: 280px;
  float: right;
  margin-left: 80px;
  margin-bottom: 50px;
}
.RctDtl_slider{
  width: 100%;
}

.RctDtl_entry{
  padding: 40px 40px 60px;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.06);
}
.RctDtl_entry_btn{
  width: calc(50% - 15px);
  max-width: 350px;
}
.RctDtl_entry_btn + .RctDtl_entry_btn{
  margin: 0 0 0 30px;
}
.RctDtl_entry_btn a{
  padding: 10px 15px;
  height: 100%;
}
.RctDtl_entry_btn__tel{
  line-height: 1.4;
}
.RctDtl_entry_btn__tel span{
  display: block;
	text-align: center;
}
/* SP以外はリンクアクションなし */
@media (min-width: 577px){
  .RctDtl_entry_btn__tel{
    pointer-events: none;
  }
  .RctDtl_entry_btn__tel:hover{
    color: #fff;
    background-color: #E5262D;
  }
}

@media (max-width: 1024px){
  .RctDtl_entry_btn{
    max-width: 400px;
  }
}

@media (max-width:896px){
  .RctDtl_slider_wrp{
    float: none;
    margin: 20px 0 30px;
    width: 100%;
    order: 2;
  }
  .RctDtl_overview{
    float: none;
    order: 1;
  }
  .RctDtl_entry_btn{
    width: 100%;
    min-height: 75px;
  }
  .RctDtl_entry_btn + .RctDtl_entry_btn{
    margin: 10px 0 0;
  }
}
@media (max-width: 576px){
  .RctDtl_entry{
    padding: 20px 20px 30px;
  }
  .RctDtl_entry_btn{
    max-width: 100%;
  }
}



/*    FAQ
=====================================================*/
.faq_sec {
  margin-top: 5px;
}
.faq_lst {
  counter-reset: item;
}
.faq_itm {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}
.faq_itm::before {
  position: absolute;
  content: "Q" counter(item);
  counter-increment: item;
  font-family: "Hind", sans-serif;
  color: #E5262D;
  font-size: 2.2rem;
  font-weight: bold;
  top: 20px;
  bottom: 0;
  left: 5px;
  letter-spacing: 0.1em;
}
.faq_itm:first-child {
  border-top: 1px solid #ddd;
}
.faq_itm_ttl {
  position: relative;
  font-size: 1.6rem;
  padding: 23px 40px 21px 70px;
}
.faq_itm_ttl::before,
.faq_itm_ttl::after {
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #E5262D;
}
.faq_itm_ttl::before {
  width: 12px;
  height: 2px;
  right: 15px;
}
.faq_itm_ttl::after {
  width: 2px;
  height: 12px;
  right: 20px;
}
.faq_itm_txt {
  cursor: auto;
  background-color: #F8F8F8;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 30px 30px 25px 70px;
}
.faq_itm_txt *:first-child {
  position: relative;
}
.faq_itm_txt *:first-child::before {
  content: "A";
  position: absolute;
  font-family: "Hind", sans-serif;
  color: #E5262D;
  font-size: 2.2rem;
  font-weight: bold;
  left: -2em;
  top: -0.3em;
}

.js_open.faq_itm_ttl {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.js_open.faq_itm_ttl::before {
  display: none;
}
.js_open.faq_itm_ttl::after {
  -webkit-transform: rotate(90deg) translateY(0px);
      -ms-transform: rotate(90deg) translateY(0px);
          transform: rotate(90deg) translateY(0px);
}

@media (max-width: 576px) {
	.faq_itm::before {
		left: 0;
		top: 4vw;
	}
  .faq_itm_ttl {
		padding: 5.3vw 16vw 5.3vw 13vw;
  }
	.faq_itm_txt {
    padding-left: 12vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
	.faq_itm_txt *:first-child::before {
    left: -9vw;
  }
}