@charset "utf-8";
/*-------------------------------------*/
/*	共通	*/
/*-------------------------------------*/
.ttl{
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 40px;
	color: #0092E5;
}
.ttl span{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 4.6rem;
	margin-bottom: 5px;
	color: #000000;
	text-transform: uppercase;
	font-weight: 700;
}
.ttl02{
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 20px;
}

.main_wrap p a, .main_wrap ul a, .main_wrap ol a, .main_wrap table a {
  color: #0071bc;
  text-decoration: underline;
}
.main_wrap p a:hover, .main_wrap ul a:hover, .main_wrap ol a:hover, .main_wrap table a:hover {
  text-decoration: none;
}
.main_wrap p a:visited {
  color: #006AB7;
  text-decoration: underline;
}
.list {
  margin-bottom: 0;
  padding: 0 ;
}
.list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
  list-style: none;
}
.list li::before{
	content: "";
width: 7px;
height: 7px;
background-color: #0092E5;
border-radius: 50px;
	position: absolute;
	left: 0;
	top: 0.9em;
}
@media screen and (max-width: 768px) {
	.ttl{
		font-size: 1.6rem;
		font-weight: 600;
	}
	.ttl span{
		font-size: 3.6rem;
	}
	.ttl02{
		font-size: 2rem;
	}	
table.gaiyo td dl{
	flex-direction: column;
}
table.gaiyo td dl dt,table.gaiyo td dl dd{
	font-size: 1.2rem;
}
table.gaiyo td dl dt{
	width: 100%;
}
table.gaiyo td dl dd{
	width: 100%;
	margin-bottom: 10px;
}
}
/*----------------------------------------
	レイアウト関連
-----------------------------------------*/
/*2列レイアウト*/
.col-2_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-2_list::after {
  content: "";
  display: block;
   max-width: 525px;
  width: calc(100% / 2 - 20px);
}
.col-2_list .col_box {
  max-width: 525px;
  width: calc(100% / 2 - 20px);
}
/*3列*/
.col-3_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-3_list::after {
  content: "";
  display: block;
  max-width: 350px;
  width: calc(100% / 3 - 20px);
}
.col-3_list .col_box {
  max-width: 350px;
  width: calc(100% / 3 - 20px);
}
.col_box {
  margin-bottom: 40px;
}
.col_box .box {
  margin-top: -10px;
}
.col_box p, .col_box .box {
  margin-bottom: 0 !important;
}
/*4列*/
.col-4_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-4_list::after {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
}
.col-4_list::before {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
  order: 1;
}
.col-4_list .col_box {
  width: calc(100% / 4 - 20px);
}
@media(max-width: 768px) {
  .main_wrap hr {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .main_wrap .alignright, .main_wrap .alignleft {
    float: none;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
  }
  /*2列レイアウト*/
	.col-2_list {
    gap: 10px 10px;
		flex-direction: column;
  }
  .col-2_list .col_box {
		width:100%;
		max-width: 700px;
  }
  /*3列*/
  .col-3_list {
    gap: 10px 10px;
  }
  .col-3_list .col_box {
    width: calc(100% / 2 - 10px);
  }
}
@media(max-width: 550px) {
  .col_box {
    margin: 0 auto 20px auto;
  }
  /*3列*/
  .col-3_list {
    gap: 10px 10px;
		flex-direction: column;
  }
  .col-3_list .col_box {
    width:100%;
  }
    /*4列*/
    .col-4_list {
      gap: 20px 10px;
    }
    .col-4_list .col_box {
      width: calc(100% / 2 - 10px);
    }
}		
/*-------------------------------------*/
/*	ボタン関連	*/
/*-------------------------------------*/
/*ボタン*/
a.bt_base {
  font-size: 1.6rem;
  position: relative;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.1em;
    background-color: #0092E5;
    border: 3px solid #FFFFFF;
    padding: 1.2em 2em;
    line-height: 1;
    border-radius: 50px;
    color: #FFFFFF!important;
    font-weight: 500;
    text-decoration: none!important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  
  }
  a.bt_base::before {
    content: "\f0da";
      position:absolute;
      top:50%;
      right:10px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index:1;
      font-family: FontAwesome;
      transition: all 0.3s ease-out;
    }
  a.bt_base:hover {
    background-color: #FFFFFF;
    color: #0092E5!important;
    border: 3px solid #0092E5;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  a.bt_base:hover:before {
    right:8px;
    }
/*----------------------------------------
	囲みボックス
-----------------------------------------*/
.box {
  background: #EAF6FD;
  padding: 1.5em;
  margin-bottom: 20px;
  position: relative;
}
.box::before {
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 15px 15px 0px 0px;
border-color: #0092E5 transparent transparent transparent;
position: absolute;
left: 0;
top: 0;

}
.box p {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {}


/*メインビジュアル*/
#mv {
    width: 100vw;
    height: 100vh;
	z-index: 0;
	position: relative;
	background-image: url(../images/index/main_img.jpg);
	background-position: center;
	background-size: cover;
}
#mv h2{ 
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
		max-width: 520px;
		width: 80%;
}
#mv h2 img{
	width: 100%; 
}
@media screen and (max-width: 1000px) {
	#mv {
		padding-top: 70px;
}
}
@media screen and (max-width: 768px) {
	#mv {
	background-image: url(../images/index/main_img_sp.jpg);
}
}
@media screen and (max-width: 550px) {
}

/* top contents*/
.ban_list a img{
	filter:drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}
.ban_list a{
margin-bottom: 0;
}
.ban_list a:hover img{
	opacity: 1;
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	filter:drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 768px) {
	.ban_list a{
		margin-bottom: 20px;
		}
}

/* top instagram*/
#instagram{
	background-image: url(../images/index/bg_instagram.jpg);
	background-size: cover;
}
#instagram .ttl span{
	color: #FFFFFF;

}
@media screen and (max-width: 768px) {
	#instagram{
		background-image: url(../images/index/bg_instagram_sp.jpg);
		background-size: cover;
	}
}

/*-------------------------------------*/
/*	下層ページ関連	*/
/*-------------------------------------*/
#sub_img{
	width: 100%;
	background-position: center;
	background-size: cover;
	height: 400px;
	position: relative;
}
#sub_img.company_sub{background-image: url("../images/page/subimg_company.jpg");}
#sub_img.biz_sub{background-image: url("../images/page/subimg_biz.jpg");}
#sub_img.recruit_sub{background-image: url("../images/page/subimg_recruit.jpg");}
#sub_img.contact_sub{background-image: url("../images/page/subimg_contact.jpg");}

#sub_img h2{
	color: #fff;
	text-align: center;
	width: 100%;
	font-size: 2.2rem;
	letter-spacing: 0.1em;
	line-height: 1;
	font-weight: 600;
	margin: 0 auto;
	letter-spacing: 0.1em;
	position: absolute;
	top: calc( 50% + 50px );
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#sub_img h2 span{
	font-size: 4rem;
	font-family: "Roboto Condensed", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
}
@media screen and (max-width: 1000px){
	#sub_img h2{
		top: 50%;
	}
}
@media screen and (max-width: 550px){
	#sub_img{
		height: 150px;
	}
	#sub_img h2{
		font-size: 1.6rem;
	}
	#sub_img h2 span{
		font-size: 3rem;
	}

}
/*-------------------------------------*/
/*	下層ページ共通 */
/*-------------------------------------*/
.midashi01 {
	margin-bottom: 20px;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.5;
	position: relative;
}
.midashi02 {
	margin-bottom: 20px;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.5;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 2px solid #BEBEBE;
}
.midashi02::before {
content: "";
width: 80px;
height: 2px;
background-color: #0092E5;
position: absolute;
left: 0;
bottom: -2px;
}
.midashi03{
	margin-bottom: 20px;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.5;
	position: relative;
	background-color: #EAF6FD;
	padding: 0.5em 1em;
}
.midashi03::before{
content: "";
width: 3px;
height: 80%;
background-color: #0092E5;
position: absolute;
top: 50%;
left: 5px;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
}
.midashi04{
	margin-bottom: 20px;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.5;
	position: relative;
  border-left: 5px solid #0092E5;
  padding: 0.5em 0 0.5em 1em;
}

@media screen and (max-width: 768px){
	.midashi01 {
		font-size: 2.8rem;
	}
	.midashi02 {
		font-size: 2.4rem;
	}
	.midashi03 span{
		font-size: 2.4rem;
	}
	.midashi03 span{
		background-color: #8E775D;
		padding: 0.2em 1em;
		display: inline-block;
	}
}
/*-------------------------------------*/
/*	company */
/*-------------------------------------*/
ul.houshin{
margin-bottom: 60px;
}
ul.houshin li{
	font-weight: 500;
	padding-left: 2em;
	position: relative;
}
ul.houshin li::before{
	content: "一、";
	position: absolute;
	left: 0;
}
.gaiyo {
  width: 100%;
  border-top: 1px solid #BCBCBC;
	margin-bottom: 20px;
	background-color: #FFFFFF;
	color: #000000;
}
 .gaiyo, .gaiyo td, .gaiyo th {
  border-collapse: collapse;
}
.gaiyo tr:nth-child(odd)  {
	background-color: #EAF6FD;
}
.gaiyo td, .gaiyo th {
  padding: 1em 0.5em;
}
.gaiyo th {
  border-bottom: 1px solid #BCBCBC;
  width: 25%;
	text-align: center;
	font-weight: 500;
}
.gaiyo td {
  border-bottom: 1px solid #BCBCBC;
}
dl.factory{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
dl.factory dt{
width: 70%;
font-weight: 400;
margin-bottom: 5px;
position: relative;
padding-left: 15px;
}
dl.factory dt::before{
	content: "";
width: 7px;
height: 7px;
background-color: #0092E5;
border-radius: 50px;
	position: absolute;
	left: 0;
	top: 0.5em;
}
dl.factory dd{
	width: 30%;
	text-align: right;
	margin-bottom: 5px;
	}
	@media screen and (max-width: 767px){
	
	}
	@media screen and (max-width: 550px){

	}
/*-------------------------------------*/
/*	recruit */
/*-------------------------------------*/
.caption {
	margin-bottom: 40px;
	padding: 0 20px;
}
.caption p{
	text-align: center;
	color: #0092E5;
	font-size: 2.8rem;
	font-weight: 600;
}
.about_sld img{
	width: 100%;

}
@media screen and (max-width: 767px){
	.caption p{
		font-size: 2rem;
	}
}
@media screen and (max-width: 550px){

}
/*-------------------------------------*/
/*	business */
/*-------------------------------------*/

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

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

}
/*-------------------------------------*/
/*	フォーム	*/
/*-------------------------------------*/

.form_area {

}

.form_area h4 {
  margin-top: 40px !important;
  position: relative;
	margin-bottom: 10px;
	font-size: 2.4rem;
	font-weight: 600;
}
.submit_btn_wrap {
  position: relative;
  width: 250px;
  margin: 0 auto;
}
ul.submit2_btn_wrap {
  position: relative;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
ul.submit2_btn_wrap li {
  display: inline-block;
  max-width: 250px;
	width: 100%;
  margin-left: 5px;
}
.submit_btn {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  padding: 0.8em 2em;
  line-height: 1;
  border-radius: 10px;
  text-decoration: none !important;
  color: #FFFFFF;
	border: 3px solid #0092E5;
	background: #0092E5;
  font-size: 2.2rem;
	transition: all 0.2s ease;
	font-weight: 600;
}
.submit_btn:hover {
	background: #FFFFFF;
  text-decoration: none;
	color: #0092E5;
}


.back_btn {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  padding: 0.8em 2em;
  line-height: 1;
  border-radius: 10px;
  text-decoration: none !important;
  color: #FFFFFF;
	border: 3px solid #666666;
	background: #666666;
  font-size: 2.2rem;
	transition: all 0.2s ease;
	font-weight: 600;
}
.back_btn:hover {
  color: #666666;
  background: #FFFFFF;
  text-decoration: none;
}
/*-------------------------------------*/
/*	フォーム関連	*/
input::-webkit-input-placeholder {
  color: #989898;
}
input:-ms-input-placeholder {
  color: #989898;
}
input::-ms-input-placeholder {
  color: #989898;
}
input::placeholder {
  color: #989898;
}
.must {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #cf225c;
  margin-right: 10px;
  vertical-align: middle;
}
.nini{
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #2B70CB;
  margin-right: 10px;
  vertical-align: middle;
}
.privacy_box {
  border: 1px solid #666666;
	background-color: #FFFFFF;

  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.4rem;
}
.privacy_inner {
  width: auto;
  height: 200px;
  overflow-y: scroll;
  padding: 22px;
  font-size: 100%;
}
.consent_check_wrap {
  padding: 20px;
  margin-bottom: 40px;
  text-align: center;
  border-radius: 10px;
	background-color: #EAF6FD;
}
.consent_check_wrap p a {
  text-decoration: underline;
}
.form_area :focus {
  outline: solid 2px #3e4f69;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  border: 1px solid #999999;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.7em;
  margin: 0;
  background-color: #FFFFFF;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  margin-bottom: 0;
}
.form_area input[type="text"].text_fomr_01, .form_area input[type="email"].text_fomr_01, .form_area input[type="tel"].text_fomr_01 {
  width: 70%;
}
.form_area input[type="text"].text_fomr_02, .form_area input[type="email"].text_fomr_02, .form_area input[type="tel"].text_fomr_02 {
  width: 50%;
}
.form_area input[type="text"].text_fomr_03, .form_area input[type="email"].text_fomr_03, .form_area input[type="tel"].text_fomr_03 {
  width: 40%;
  margin: 0
}
.form_area input[type="text"].text_fomr_04, .form_area input[type="email"].text_fomr_04, .form_area input[type="tel"].text_fomr_04 {
  width: 100%;
}
.form_area textarea.form_txtarea_01 {
  width: 100%;
}
.form_area input[type="checkbox"] {
  height: 15px;
  width: 15px;
  margin: 5px;
  vertical-align: middle;
}
.form_area input[type="radio"] {
  vertical-align: middle;
  margin: 0 3px 0 0;
}
.form_area label {
  margin-right: 20px;
  font-weight: normal !important;
  font-size: 100%;
  font-weight: 500;
  padding: 5px;
}
span.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0.5em !important;
}
@media screen and (max-width: 768px) {
	.form_area h4 {
    font-size: 2rem;
}
  .tel_list {
    display: block;
  }
  .tel_list div {
    margin-right: 0;
  }
  .privacy_inner {
    padding: 10px;
  }
  .privacy_inner p {
    font-size: 75% !important;
  }
  .submit_btn_wrap {
    width: 80%;
    margin: 0 auto;
  }
  .submit_btn {
    width: 100%;
  }
  ul.submit2_btn_wrap li {
    margin-bottom: 20px;
  }
  input[type="text"].text_fomr_01, input[type="email"].text_fomr_01, input[type="tel"].text_fomr_01 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_02, input[type="email"].text_fomr_02, input[type="tel"].text_fomr_02 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_03, input[type="email"].text_fomr_03, input[type="tel"].text_fomr_03 {
    width: 100% !important;
  }
  ul.input_list li {
    margin-bottom: 20px;
  }
  ul.input_list li:last-child {
    margin-bottom: 0;
  }
  label {
    font-size: 1.6rem;
  }
}