@charset "utf-8";

/*

【CSS表記ルール】
CSSの表記につきましては以下のルールに則って記述をお願いいたします。

1.bodyタグにid等を付けない
フレームワークの仕様により、bodyタグの出し分けが困難なためbodyにディレクトリ毎のidを振るのは禁止とさせて頂きます。
その代わりbody直下のwrapperに対してはディレクトリ毎のidを振って頂いて大丈夫です。

2.class名、id名の表記
フレームワークの仕様により、公開時は全てのCSSが1つのファイルに統合されます。
そのためclass,idの名前が被らないよう以下のルールに則って記述をお願いいたします。

#(wrapperのid名) .(wrapperのid名)_(個別のクラス名)
例:
#about .about_box{
	margin:10px auto;
}
3.!important は使わないようお願いたします。（どうしても必要な場合はご連絡ください。）

4.@importでのcssの読み込みはしないようお願いいたします。

*/

html,body{
	background: #fff;
}

@media (min-width: 821px) {
	.sp_only {
		display: none;
	}
}
@media (max-width: 820px) {
	.pc_only {
		display: none;
	}
}

.remoteworkWrap{
  width: 1000px;
  padding: 45px 0;
  color:#494949;
  font-size: 18px;
  margin: 0 auto;
  clear: both;
}

#remoteworkWrap_house{
	background-color: #EFFAFF;
	clear: both;
}

p{
	line-height: 1.8em;
}

a{
	text-decoration: none;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
  .remoteworkWrap{
      width: 90%;
      font-size: 14px;
      line-height: 1.6em;
	  margin: auto;
	  padding-top: 0;
  }

  .remoteworkWrap h2 img{
    width: 100%;
  }

}
/*SP SETTING*/  



/*------------------------------
Key
------------------------------*/

.bx-wrapper{
	margin: 0 auto;
}

.bx-wrapper .bx-controls-direction a{
	z-index: 1;
}

.bx-wrapper .bx-pager{
	bottom: 8px;
}

.bx-wrapper .bx-pager.bx-default-pager a{
	background: #fff;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active{
	background: #33B3EB;
}

.bx-wrapper .bx-next{
	background: url(/images/remotework/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev{
	background: url(/images/remotework/controls.png) no-repeat 0 -32px;
}


#key{
	position: relative;
}

#key h1{
	background: rgba(237,248,253,0.5);
	text-align: center;
	padding: 8px 0;
	display: block;
	color: #494949;
	font-size: 14px;
}

#key ul.bxslider{
	width: 70%;
	height: 540px;
}

#key ul.bxslider .bxslider1{
	width: 100%;
	height: 460px;
	background: url(/images/remotework/key.jpg) center center;
	background-size: cover;
}

#key ul.bxslider .bxslider2{
	width: 100%;
	height: 460px;
	background: url(/images/remotework/key2.jpg) center center;
	background-size: cover;
}

#key ul.bxslider .bxslider3{
	width: 100%;
	height: 460px;
	background: url(/images/remotework/key3.jpg) center center;
	background-size: cover;
}

#key .key_wf{
	position: absolute;
	top: 100px;
	left: 300px;
}

#key .key_wf img{
	width: 400px;
	height: auto;
}

#key .keyTitle{
	color: #494949;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	margin: 0 auto;
	background: rgba(255,255,255,0.9);
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2);
	position: absolute;
	left: 64px;
	bottom: 56px;
	padding: 30px 30px 40px 30px;
	z-index: 2;
}

#key .keyTitle .key_happyhouse{
	position: absolute;
	top: -55px;
	right: 0;
	
}

#key .keyTitle .key_happyhouse img{
	width: 100px;
	height: auto;
}

#key .key_remotework{
	position: absolute;
	top: 164px;
	right: -32px;
	z-index: 1;
}

#key .key_remotework img{
	width: 520px;
	height: auto;
}

#key .keyTitle h2{
	line-height: 1.4;
	font-size: 20px;
	padding-bottom: 20px;
}

#key .keyTitle a.btn{
	color: #33B3EB;
	font-weight: normal;
	padding: 10px 20px;
	border-radius: 30px;
	border: 1px solid #33B3EB;
	text-align: center;
	text-decoration: none;
	transition: 1.0s;
}

#key .keyTitle a.btn:hover{
	background: #33B3EB;
	color: #fff;
}

#key .keyTitle a.btn .arrow{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

#key .keyTitle a.btn .arrow::before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #33B3EB;
  border-right: solid 1px #33B3EB;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -8px;
}

#key .keyTitle a.btn:hover .arrow::before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -8px;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
	#key{
		width: 100%;
	}
	
	#key h1{
		padding-right:20px;
		padding-left: 20px;
		line-height: 1.2; 
	}
	
	#key .keyTitle{
		font-size: 12px;
		padding: 20px 20px 30px 20px;
		left: 0;
		width: 80%;
	}
	
	#key .keyTitle h2{
		font-size: 14px;
	}
	
	#key .keyTitle h3{
		text-align: center;
	}
	
	#key .keyTitle .btn{
		font-size: 12px;
	}
	
	#key .key_remotework{
		top: -52px;
		right: -20px;
	}
	
	#key .key_remotework img{
		width: 300px;
		height: auto;
	}
	
	#key .bx-controls-direction{
		display: none;
	}
	
	#key .keyTitle .key_happyhouse{
		top: -52px;
	}
	
	#key .keyTitle .key_happyhouse img{
		width: 76px;
	}
}
/*SP SETTING*/  

/*------------------------------
INDEX
------------------------------*/
#p-remoteworkIndex{
  background: #f7f7f7;
  border:1px solid #e3e3e3;
  width: 40%;
  margin: 0 auto;
  padding: 40px;
}

p-remoteworkIndex h3{
	margin: 0 auto;
	text-align: center;
}

#p-remoteworkIndex ol{
  text-align: left;
  font-size: 14px;
  margin: 40px auto 0 auto;
  width: 80%;
}

#p-remoteworkIndex ol li{
    margin: 0 0 10px 0;
}

#p-remoteworkIndex ol ul li::before{
  content: "∟";
}


/*SP SETTING*/  
@media screen and (max-width: 820px) {
  #p-remoteworkIndex{
    width: 100%;
    padding: 40px 0;
    font-size: 20px;
  }
  
  #p-remoteworkIndex h3{
      font-size: 20px;
      text-align: center;
  }
  
  #p-remoteworkIndex ol li{
	  margin: 0;
  }
}
/*SP SETTING*/  



/*------------------------------
 MERIT
------------------------------*/
h3.remotework_title{
	border-bottom: solid 2px #33B3EB;
	border-left: solid 10px #33B3EB;
	text-align: left;
	padding: 10px;
	margin: 100px auto 40px;
	color: #33B3EB;
}

#p-remoteworkMerit{
	background: #FFF;
}

#p-remoteworkMerit ul li{
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	margin-top: 40px;
}

#p-remoteworkMerit ul li .merit_li_inner{
	padding: 40px;
}

#p-remoteworkMerit ul li .merit_li_inner img{
	float: left;
}

#p-remoteworkMerit ul li .merit_li_inner .merit_textMain{
	font-size: 18px;
	margin-left: 100px;
	border-bottom: 1px solid #494949;
	padding-bottom: 2px;
	margin-bottom: 10px;
}

#p-remoteworkMerit ul li .merit_li_inner .merit_textSub{
	font-size: 14px;
	margin-left: 100px;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
	#p-remoteworkMerit ul{
		width: 90%;
		margin: 0 auto;
	}
	
	#p-remoteworkMerit ul li .merit_li_inner{
		text-align: center;
	}
	
	#p-remoteworkMerit ul li .merit_li_inner img{
		float: none;
		margin-bottom: 20px;
	}
	
	#p-remoteworkMerit ul li .merit_li_inner .merit_textMain{
		padding-bottom: 16px;
	}
	
	#p-remoteworkMerit ul li .merit_li_inner .merit_textMain,
	#p-remoteworkMerit ul li .merit_li_inner .merit_textSub{
		margin-left: 0;
		text-align: left;
		line-height: 1.6;
	}
}
/*SP SETTING*/  



/*------------------------------
 SURVEY
------------------------------*/

#p-remoteworkSurvey{
	text-align: center;
	margin: 0 auto;
}

#p-remoteworkSurvey .remotework_subTitle{
	border-radius: 30px;
	border: 1px solid #494949;
	width: max-content;
	padding: 4px 40px;
	margin: 0 auto 40px auto;
}

#p-remoteworkSurvey ul.survey_ul li{
	margin: 40px auto 100px;
}

#p-remoteworkSurvey .survey_donut img{
	display: inline-block;
	vertical-align: middle;
}

#p-remoteworkSurvey .survey_donut .survey_donut_text{
	display: inline-block;
	text-align: left;
	padding-left: 20px;
	vertical-align: middle;
}

#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text1,
#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text2{
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
}

#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text1 span,
#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text2 span{
	font-size: 18px;
	padding-left: 10px;
	font-weight: normal;
}

#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text1{
	color: #53DD07;
}

#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text2{
	color: #00CBC1;
}

#p-remoteworkSurvey .survey_week_text span{
	color: #46D994;
	font-size: 18px;
	font-weight: normal;
	padding: 0 10px;
}

#p-remoteworkSurvey .survey_week_text{
	color: #46D994;
	font-size: 60px;
	font-weight: bold;
}

#p-remoteworkSurvey ul.survey_good li{
	display: inline-block;
	margin: 0 20px 0 0;
}

#p-remoteworkSurvey ul.survey_good .survey_icon{
	background: #fff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: inline-block;
}

#p-remoteworkSurvey ul.survey_good .survey_icon span{
	font-size: 12px;
	display: block;
	height: 140px;
	padding-top: 40px;
}

#p-remoteworkSurvey ul.survey_good .survey_icon img{
	width: 30%;
	height: auto;
}

#p-remoteworkSurvey ul.survey_good .survey_text{
	border-bottom: #66E0DA solid 2px;
	width: 300px;
	padding: 0 0 6px 30px;
	display: inline-block;
	margin-left: -13px;
	font-size: 14px;
	text-align: left;
	line-height: 1.4;
}

#p-remoteworkSurvey .resident_comment{
	margin: 40px auto 0 auto;
}

#p-remoteworkSurvey .resident_comment img{
	width: 100px;
	height: auto;
	display: inline-block;
	margin-right: 20px;
	vertical-align: top;
}

#p-remoteworkSurvey .resident_comment .resident_comment_comment{
	background: #EDF8FD;
	padding: 20px;
	font-size: 14px;
	text-align: left;
	width: 640px;
	display: inline-block;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {	
	#p-remoteworkSurvey .remotework_subTitle{
		width: auto;
		line-height: 1.2;
		padding: 14px 20px;
	}
	
	#p-remoteworkSurvey .surveyMain{
		width: 90%;
		margin: 0 auto;
	}

	
	#p-remoteworkSurvey ul.survey_ul li{
		margin: 0 auto 40px;
	}
	
	#p-remoteworkSurvey ul.survey_good .survey_text{
		margin-left: 0;
		padding: 10px 0;
		text-align: center;
		width: 100%;
	}
	
	#p-remoteworkSurvey .resident_comment{
		margin: 0 auto 60px auto;
		
	}
	
	#p-remoteworkSurvey .resident_comment img{
		margin: 0 auto;
	}
	
	#p-remoteworkSurvey .resident_comment .resident_comment_comment{
		width: 80%;
		line-height: 1.6;
	}
	
	#p-remoteworkSurvey .survey_donut .survey_donut_text{
		padding-left: 0;
		display: block;
	}
	
	#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text1,
	#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text2,
	#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text1 span,
	#p-remoteworkSurvey .survey_donut .survey_donut_text .survey_donut_text2 span{
		display: block;
		line-height: 1.4;
		text-align: center;
		padding-left: 0;
	}
}
/*SP SETTING*/ 

/*------------------------------
 INTERVIEW
------------------------------*/

#p-remoteworkMatome .matome{
	margin: 0 auto;
	text-align: center;
}

#p-remoteworkMatome .matome img{
	width: 80px;
	height: auto;
	vertical-align: bottom;
	display: inline-block;
	margin-right: 20px;
}

#p-remoteworkMatome .matome .matome_comment{
	background: #EAFCF3;
	padding: 20px;
	font-size: 14px;
	text-align: left;
	width: 640px;
	display: inline-block;
	line-height: 1.6;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
	#p-remoteworkMatome .matome img{
		margin-right: 0;
	}
	
	#p-remoteworkMatome .matome .matome_comment{
		width: 80%;
		line-height: 1.6;
	}
}



/*------------------------------
 INTERVIEW
------------------------------*/

#p-remoteworkInterview{
	margin: 55px auto;
}

#p-remoteworkInterview img:hover {
	opacity: 0.9 ;
}

#p-remoteworkInterview .interviewMain{
	width: 1000px;
	margin: 0 auto;
	height: 533px;
}

#p-remoteworkInterview .interviewMain .interviewText{
	margin-top: 180px;
	display: inline-block;
	vertical-align: top;
	width: 600px;
}

#p-remoteworkInterview .interviewMain .interviewText .interviewTextTitle{
	font-size: 25px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 20px;
}

#p-remoteworkInterview .interviewMain .interviewText .interviewTextSub{
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.6;
}

#p-remoteworkInterview .interviewMain .interviewText a{
	text-decoration: none;
}

#p-remoteworkInterview .interviewMain .interviewText .interviewBtn{
	background: #f9504c;
	width: 200px;
	text-align: center;
	border-radius: 5px;
	font-size: 14px;
	padding: 5px;
	font-weight: bold;
	color: #fff;
}

#p-remoteworkInterview .interviewMain .interviewText .interviewBtn a{
	color: #fff;
	text-decoration: none;
}

#p-remoteworkInterview .interviewMain .interviewImg{
	display: inline-block;
	margin-left: 123px;
}

#p-remoteworkInterview .interviewMain ul{
	width: 333px;
	display: inline-block;
	float: right;
}

#p-remoteworkInterview .interviewSub ul{
	margin: 40px 0 0 0;
	font-size: 0;
}

#p-remoteworkInterview .interviewMain ul li,
#p-remoteworkInterview .interviewSub ul li{
	display: inline-block;
	font-size: 0;
	position: relative;
}

#p-remoteworkInterview .interviewMain ul li .comment,
#p-remoteworkInterview .interviewSub ul li .comment{
	position: absolute;
	bottom: 100px;
	font-size: 14px;
	color: #fff;
	margin: 0 26px;
	background-color: rgb(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 10px;
}

#p-remoteworkInterview .interviewMain ul li a,
#p-remoteworkInterview .interviewSub ul li a{
	text-decoration: none;
}

#p-remoteworkInterview .interviewMain ul li a img,
#p-remoteworkInterview .interviewSub ul li a img{
	vertical-align: bottom;
}

ul li .interviewName{
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
	font-size: 18px;
	height: 60px;
}

ul li .interviewName .interviewName_top{
	color: #ffc47f;
	font-size: 14px;
	padding-top: 11px;
	line-height: 1;
}

ul li .interviewName .interviewName_bottom{
	color: #fff;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
	#p-remoteworkInterview{
    	width: 100%;
		font-size: 14px;
		line-height: 1.6em;
	}
	
	#p-remoteworkInterview .interviewMain{
		height: auto;
	}
		
	#p-remoteworkInterview .interviewMain .interviewText{
		margin-top: 0;
		position: inherit;
		text-align: left;
		width: auto;
	}
	
	#p-remoteworkInterview .interviewMain .interviewText .interviewBtn{
		margin: 0 auto 40px auto;
	}
	
	#p-remoteworkInterview .interviewMain .interviewText .interviewTextTitle{
		font-size: 18px;
	}
	
	#p-remoteworkInterview .interviewMain,
	#p-remoteworkInterview .interviewSub{
		text-align: center;
		margin: 0 auto;
		width: 90%;
	}
	
	#p-remoteworkInterview .interviewMain ul{
		float: none;
		width: auto;
	}
	
	#p-remoteworkInterview .interviewSub ul{
		margin-top: 0;
	}
	
	#p-remoteworkInterview .interviewMain ul li,
	#p-remoteworkInterview .interviewSub ul li{
		margin-bottom: 10px;
	}
	
	#p-remoteworkInterview .interviewMain ul li a img,
	#p-remoteworkInterview .interviewSub ul li a img{
		width: 100%;
	}
}
/*SP SETTING*/  



/*------------------------------
 BUKKEN
------------------------------*/

#p-remoteworkBukken{
	padding: 10px 0 20px 0;
}

#p-remoteworkBukken .common_caset_item{
	background-color: #ffffff;
	border-radius: 10px;
	padding: 23px;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	width: 31.42857%;
	margin-left: 10px;
}

#p-remoteworkBukken .common_caset_item:nth-child(3n+1){
	margin-left: 20px;
}


#p-remoteworkBukken .common_caset_figure{
	border-radius: 10px;
	overflow: hidden;
}

#p-remoteworkBukken .common_caset_info:after {
  display: none;
}

#p-remoteworkBukken .common_caset_info{
	border-radius: 10px;
	background: #efefef;
}

#p-remoteworkBukken  .common_caset_body{
	padding-left: 0;
	padding-right: 0;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
	#p-remoteworkBukken{
    	width: 100%;
		font-size: 14px;
		line-height: 1.6em;
	}
	
	#p-remoteworkBukken .common_caset_list{
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	
	#p-remoteworkBukken .common_caset_item {
    	width: 100%;
		margin: 0;
  	}
  	
  	#p-remoteworkBukken .common_caset_item:nth-child(3n+1){
		margin-left: 0;
	}
  	
  	#p-remoteworkBukken .common_caset_item + .common_caset_item {
    	margin-top: 25px;
  	}
}
/*SP SETTING*/ 




/*------------------------------
 BUKKEN SPECIAL
------------------------------*/

#p-remoteworkBukken .common_caset_item_special{
	width: 100%;
	margin-left: 0;
}

#p-remoteworkBukken .common_caset_item_special:nth-child(3n+1){
	margin-left: 0;
}

#p-remoteworkBukken .common_caset_figure_special{
	width: 500px;
	display: inline-block;
}

#p-remoteworkBukken .common_caset_body_special{
	width: 400px;
	display: inline-block;
	margin-left: 20px;
	vertical-align: top;
	padding: 0;
}

/*SP SETTING*/  
@media screen and (max-width: 820px) {
	#p-remoteworkBukken .common_caset_figure_special,
	#p-remoteworkBukken .common_caset_body_special{
		width: auto;
		margin-left: 0;
	}
}

/*SP SETTING*/  



















