@charset "utf-8";

/*-----------------------------------
	headline
-----------------------------------*/
.headline{
	background-image: url(../img/privacy/headline.jpg);
	position: relative;
}
.headline .message{
	position: absolute;
	bottom: 20px;
	text-align: center;
	width: fit-content;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-size: 20px;
	background-color: #ffffff;
	padding: 3px 5px;
	font-weight: 500;
}
@media screen and (max-width: 640px) {
	.headline .message{
		font-size: 16px;
	}
}

/*-----------------------------------
	base
-----------------------------------*/
.lead{
	margin-bottom: 40px
}
.lead .m_bottom{
	margin-bottom: 20px;
}
.lead .ta_right{
	margin-top: 24px;
	text-align: right;
	font-weight: 600;
    letter-spacing: 0.06em;
	font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ＭＳ 明朝', 'MS Mincho', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}
#recruit_block #business .clearfix a.link_btn_sub {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    padding-right: 20px;
    position: relative;
    float: right;
}
#recruit_block #business .clearfix a.link_btn_sub:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    margin: auto 0;
}
.h3_style02 {
  font-size: 22px;
  font-weight: 500;
  /* border-bottom: solid 3px #ededed; */
  padding-bottom: 8px;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  text-align: center;
  font-weight: 700;
  color: #272727;
}

/*-----------------------------------
	recruit_block
-----------------------------------*/
#recruit_block{
	margin-bottom: 40px;
}
/*-----------------------------------
	environment
-----------------------------------*/
#recruit_block #environment .m_bottom{
	margin-bottom: 20px;
}
#recruit_block #environment .m_bottom p{
	margin-left: 14px;
}
#recruit_block #environment .in_number{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items: stretch;
	gap: 10px;
}
#recruit_block #environment .in_number li{
	width: calc((100% - 30px) / 4);
	padding: 10px;
	border: 1px solid #0078d4;
	text-align: center;
}
#recruit_block #environment .in_number li .big{
	font-size: 30px;
	color: #0078d4;
	font-weight: 700;
	line-height: 1.3;
}
#recruit_block #environment table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc; /* 全体の枠線 */
  font-size: 14px;
  margin-bottom: 20px;
}

#recruit_block #environment table th,
#recruit_block #environment table td {
  border: 1px solid #ccc; /* 各セルの枠線 */
  padding: 8px 12px;
}

/* 1列目（項目名）を薄い青に */
#recruit_block #environment table th {
  background: #e6f2ff; /* 薄い青 */
  font-weight: normal;
  width: 30%;
}
#recruit_block #environment table tr:nth-child(1) th{
	background: #ffffff;
}
#recruit_block #environment table tr:nth-child(1) td{
	text-align: center;
}
@media screen and (max-width: 640px) {
	#recruit_block #environment .in_number li{
		width: calc((100% - 10px) / 2);
		padding: 10px;
		border: 1px solid #0078d4;
		text-align: center;
	}
	#recruit_block #environment .in_number{
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 382px) {
	#recruit_block #environment .in_number .none_382{
		display: none;
	}
}
/*-----------------------------------
	ideal_candidate_profile
-----------------------------------*/
#recruit_block #ideal_candidate_profile ul li{
	padding-left: 15px;
	position: relative;
}
#recruit_block #ideal_candidate_profile ul li:before{
    content: "";
    display: inline-block;
	background: #00A5EA;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    border-radius: 50%;
}
/*-----------------------------------
	business
-----------------------------------*/
#recruit_block #business .m_bottom{
	margin-bottom: 20px;
}
#recruit_block #business .m_bottom p{
	margin-left: 14px;
}
/*-----------------------------------
	recruitment_details
-----------------------------------*/
#recruitment_details{
		padding-bottom: 0 !important;
	}
#recruitment_details .tab_area .tabs {
  display: flex;
  margin-bottom: 24px;
  height: auto;          /* ← 高さを固定しない */
  overflow: visible;     /* ← 隠さない */
  z-index: 1;
}
/* 基本は非表示 */
#recruitment_details .tab_area .tab-content > section {
  display: none;
}

/* activeクラスがついているものだけ表示 */
#recruitment_details .tab_area .tab-content > section.active {
  display: block;
}
#recruitment_details .text{
	margin-bottom: 30px;
}
#recruitment_details .tab_area .tabs.level1{
	position: relative;
  	display: flex;
}
#recruitment_details .tab_area .tabs.level1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ccc;
  z-index: 0;
}
#recruitment_details .tab_area .tabs.level1 .tab {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  color: #000000;
  font-size: 14px;
  background: #e7e7e7;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #ccc;
  position: relative;
  z-index: 1;
}
#recruitment_details .tab_area .tabs.level0{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	gap: 15px;
}
#recruitment_details .tab_area .tabs.level0 button span{
	font-size: 18px;
	letter-spacing: 0.1em;
}
#recruitment_details .tab_area .tabs.level0 button.blue{
	border-radius: 5px;
	background-color: #e7e7e7;
	padding: 10px 25px;
	border: 1px solid #ccc;
	font-size: 15px;
}
#recruitment_details .tab_area .tabs.level0 button.green{
	border-radius: 5px;
	background-color: #e7e7e7;
	padding: 10px 25px;
	border: 1px solid #ccc;
	font-size: 15px;
}
#recruitment_details .tab_area .tabs.level0 button.blue.active{
	background-color: #00A5EA;
	color: #ffffff;
}
#recruitment_details .tab_area .tabs.level0 button.green.active{
	background-color: #00992e;
	color: #ffffff;
}
#recruitment_details .tab_area .tabs.level2{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	gap: 10px;
}
#recruitment_details .tab_area .tabs.level2 button.blue{
	border-radius: 20px;
	background-color: #e7e7e7;
	padding: 8px 20px;
	border: 1px solid #ccc;
}
#recruitment_details .tab_area .tabs.level2 button.green{
	border-radius: 20px;
	background-color: #e7e7e7;
	padding: 8px 20px;
	border: 1px solid #ccc;
}
#recruitment_details .tab_area .tabs.level2 button.blue.active{
	background-color: #00A5EA;
	color: #ffffff;
}
#recruitment_details .tab_area .tabs.level2 button.green.active{
	background-color: #00992e;
	color: #ffffff;
}
#recruitment_details .tab_area .tabs .tab:hover{
	font-weight: 500;
}

#recruitment_details .tab_area .tabs.level1 .tab.blue.active {
  background: #00A5EA;
  color: #fff;
  border: 2px solid #ccc;
  border-bottom: none;
  font-weight: 500;
  font-size: 15px;
}
#recruitment_details .tab_area .tabs.level1 .tab.green.active {
  background: #00992e;
  color: #fff;
  border: 2px solid #ccc;
  border-bottom: none;
  font-weight: 500;
  font-size: 15px;
}

#recruitment_details .tab_area .tab-content .content {
  display: none;
}
#recruitment_details .tab_area .tab-content .content h5 {
  font-size: 15px;
  color: #0078d4;
  margin-bottom: 5px;
}
#recruitment_details .tab_area .tab-content .content nav ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	column-gap: 20px;
	row-gap: 5px;
	margin-bottom: 10px;
}
#recruitment_details .tab_area .tab-content .content nav ul li a{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	gap: 3px;
	transition: color .3s ease,
	            font-weight .3s ease;
}
#recruitment_details .tab_area .tab-content .content nav ul li a:hover{
	color: #0078d4;
	font-weight: 700;
}
#recruitment_details .tab_area .tab-content .content nav ul li a img{
	width: 10px;
	height: auto;
	object-fit: contain;
}
#recruitment_details .tab_area .tab-content .content .note{
	color: #e30d0d;
}
#recruitment_details .tab_area .tab-content .content.active {
  display: block;
}
#recruitment_details .tab_area .tab-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc; /* 全体の枠線 */
  font-size: 14px;
  margin: 30px 0;
}

#recruitment_details .tab_area .tab-content table th,
#recruitment_details .tab_area .tab-content table td {
  border: 1px solid #ccc; /* 各セルの枠線 */
  padding: 8px 12px;
}

/* 1列目（項目名）を薄い青に */
#recruitment_details .tab_area .tab-content table th {
  background: #e6f2ff; /* 薄い青 */
  font-weight: normal;
  width: 30%;
}
#recruitment_details .tab_area .tab-content table tr:nth-child(1) th{
	background: #ffffff;
}
#recruitment_details .tab_area .tab-content table tr:nth-child(1) td{
	text-align: center;
	font-weight: 500;
}
/* 偶数行を薄いグレーに */
#recruitment_details .tab_area .tab-content table tr:nth-child(even) td {
  background: #f7f7f7;
}
@media screen and (max-width: 840px) {
	#recruitment_details .tab_area .tabs .tab {
	  font-size: 13px;
	}
	#recruitment_details .tab_area .tab-content table {
	  font-size: 13px;
	}
	
}

@media screen and (max-width: 640px) {
	#recruitment_details .tab_area .tabs .tab.active {
	  font-size: 14px;
	}
#recruitment_details .tab_area .tabs .tab .vertical{
	font-size: 13px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	}
	#recruitment_details .tab_area .tabs .tab .vertical02{
	text-orientation: sideways;
	}
}