@charset "utf-8";


/*
＝＝＝以下の記述はbaseに関連したcssです＝＝＝
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}



ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------
フォント設定
---------------------*/
html {
  font-size: 13px;
	scroll-behavior: smooth;
}
body {
  line-height: 1.3;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: lighter;
}

/*:root {
  --px8: 0.6153rem;
  --px10: 0.769rem;
  --px11: 0.846rem;
  --px12: 0.923rem;
  --px13: 1rem;
  --px14: 1.077rem;
  --px15: 1.154rem;
  --px16: 1.231rem;
  --px17: 1.308rem;
  --px18: 1.385rem;
  --px19: 1.462rem;
  --px20: 1.538rem;
  --px21: 1.615rem;
  --px22: 1.692rem;
  --px23: 1.769rem;
  --px24: 1.846rem;
  --px25: 1.923rem;
  --px26: 2rem;
  --px27: 2.077rem;
  --px28: 2.154rem;
  --px29: 2.231rem;
  --px30: 2.308rem;
  --px31: 2.385rem;
  --px32: 2.462rem;
  --px33: 2.583rem;
  --px34: 2.615rem;
}*/

/*--------------
  セレクタ設定
----------------*/
/* <a> */
a {
  display: block;
  text-decoration: none;
  color: black;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: 0.4s ;
}

a:hover {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

/*<img>*/
img {
  display: block;
}

/*<label>*/
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

label:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/*
<input>
<textarea>
*/
input,
textarea {
  -webkit-appearance: none;
}

/*---------------
  color設定
-----------------*/
:root {
  /* マイナビメインテーマカラー */
  --mynavi-main: rgb(0,170,238);
  /* マイナビサブテーマカラー */
  --mynavi-sub: rgb(240,88,10);
}

/*---------------
    shadow
----------------*/
/* 外側 */
.shadow {
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.18);
}

/* 内側 */
.shadowInset {
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.18) inset;
}

/*---------------------*/
/*	clearfix 
/*---------------------*/
.clearfix:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
} 
.clearfix {display: inline-block;} 

/* Hides from IE-mac \*/ 
* html .clearfix {height: 1%;} 
.clearfix {display: block;} 
/* End hide from IE-mac */

/*---------------------*/
/*	crossdevice 
/*---------------------*/
.pc_hidden{
		display: none;
	}
.sp_hidden{
		display: block;
	}
@media screen and (max-width:780px) {
	.sp_hidden{
		display: none;
	}
.pc_hidden{
		display: block;
	}
}

/*
＝＝＝以下の記述はheaderに関連したcssです＝＝＝
*/

.hderCenterLogo {
  /*position: fixed;*/
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  padding: 10px 0 11px;
}

@media (min-width: 768px) {
  .hderCenterLogo {
    padding: 18px 0;
  }
}

.hderCenterLogo img {
  height: 40px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hderCenterLogo img {
    height: 40px;
  }
}

.shadow {
    box-shadow: 0 2px 2px -1px #ee7801;
}

/*
＝＝＝以下の記述はfooterに関連したcssです＝＝＝
*/

/* パンくず */
.pagePathParent {
  width: 100%;
  display: inline-block;
  font-size: var(--px11);
  background-color: var(--mynavi-main);
  overflow: hidden;
}

/* パンくずリスト */
.pagePathParent > ul {
  margin-left: 20px;
  float: left;
}

/* パンくずリスト項目 */
.pagePathParent > ul > li {
  float: left;
}

/* パンくずリスト内ホームアイコン */
.pagePathParent > ul > li > img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  padding-top: 11px;
}

/* １パンくずのあとに＞表示 */
.pagePath::after {
  content: ">";
  margin: 0 3px;
  color: #fff;
}

/* 最後の子の場合は＞非表示 */
.pagePath:last-child::after {
  display: none
}

/* パンくずリンク */
.pagePathLink {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  line-height: 40px;
}

/* 現在地表示場所 */
.pagePathChild01 {
  width: auto;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 20px 0 25px;
  float: left;
  position: relative;
  z-index: 1;
}

/* リボンデザイン */
.pagePathChild01::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 6px;
  left: -15px;
  border-width: 15px 15px 15px 15px;
  border-color: transparent var(--mynavi-main) var(--mynavi-main) transparent;
  border-style: solid;
  transform: rotate(-45deg);
  box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.18);
}

.pagePathChild01::after {
  position: absolute;
  content: "";
  width:0px;
  height: 0px;
  z-index: 1;
  top: -15px;
  right: -15px;
  border-width: 15px 15px 15px 15px;
  border-color: transparent transparent var(--mynavi-main) transparent;
  border-style: solid;
  transform: rotate(45deg);
  box-shadow: 0 2px 2px -2px var(--shadow);
}

.pagePathChild02 {
  float: left;
  position: relative;
}

.pagePathChild02::after {
  position: absolute;
  content: "";
  width:0px;
  height: 0px;
  z-index: 1;
  bottom: -15px;
  right: -35px;
  border-width: 15px 15px 15px 15px;
  border-color: transparent transparent transparent var(--mynavi-main);
  border-style: solid;
  transform: rotate(45deg);
}

/*バレンタインバナー追加*/
@media (min-width: 768px) {
.img_banner{
  width: 448px;
  margin: auto;
  padding: 20px 0;
}
}

@media (max-width: 768px) {
  .img_banner{
    padding: 15px 10px;
  }
}
/*バレンタインバナー追加　ここまで*/

/* 現在地 */
.nowHere {
  color: var(--mynavi-main);
}

/*--------------------
  パンくず下関連サイト
----------------------*/

/*パンくず下囲み*/
.simpleRelationFooter{
  width: 100%;
  background-color: rgb(238, 238, 238);
  margin-top: -2px;
  padding: 32px 20px;
  box-sizing: border-box;
}

@media screen and (max-width:780px) {
  .simpleRelationFooter {
    padding: 28px 0;
  }
/* パンくず */
.pagePathWrap{
overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
	width: 100%;
	}
.pagePathParent {
  display: inline-block;
  font-size: var(--px11);
  background-color: var(--mynavi-main);
	width: 800px;
}
/* パンくずリスト */
.pagePathParent > ul {
  margin-left: 20px;
  float: left;

}

/* パンくずリスト項目 */
.pagePathParent > ul > li {
  float: left;
}
}

/*コンテンツ幅囲み*/
.contentWidthWrap {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contentWidthWrap {
    max-width: 1034px;
    padding: 0 17px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}

/*マイナビロゴ*/
.simpleRelationFooterMynaviLogo {
  width: 62px;
  height: auto;
  float: left;
  margin-right: 20px
}

@media (min-width: 768px) {
  .simpleRelationFooterMynaviLogo {
    width: 82px;
    height: auto;
    margin-right: 0;
  }
}

/*関連サイト囲み*/
.simpleRelationSiteWrap{
  float: left;
  width: calc(100% - 82px);
}

@media (min-width: 768px) {
  .simpleRelationSiteWrap {
    max-width: calc(100% - 154px);
    text-align: center;
  }
}

/*関連サイト*/
.simpleRelationSite{
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .simpleRelationSite {
    margin-bottom: 8px;
  }
}

/*関連サイト項目*/
.simpleRelationSiteItem {
  display: inline;
  font-size: var(--px10);
  line-height: var(--px16);
}

@media (min-width: 768px) {
  .simpleRelationSiteItem {
    font-size: var(--px11);
  }
}

/* 項目区切り線 */
.simpleRelationSiteItem::after {
  content: "|";
  display: inline;
  margin: 0 5px;
}

/* 最後の項目時項目区切り線非表示 */
.simpleRelationSiteItem:last-child::after {
  display: none;
}

/* コピーライター */
.copyright {
  font-size: var(--px10);
}

@media (min-width: 768px) {
  .copyright {
    float: none;
    font-size: var(--px11);
  }
}





/*プライバシーマーク*/
.privacyLink,
.privacyMark {
  display: none;
}

@media (min-width: 768px) {
  .privacyLink,
  .privacyMark {
    display: block;
    float: right;
    width: 72px;
    height: 72px;
  }
  .privacyLink img{
    width: 72px;
  }
}

/*
＝＝＝このページにかかわるcssは以下に記述＝＝＝
*/


.contents img{
	width: 100%;
	height: auto;
}

.main{
	width: 90%;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.5em;
}

h2{
	text-align: center;
	padding: 20px 0;
	line-height: 1.3em;
}

h2 > span{
	font-size: 16px;
	color: #FFA454;
}

/*ajax*/
.adbnr{
	text-align: center;
	background-color:  #F5F5F5;
	padding: 10px;
}

.adbnr a{
	text-decoration: underline;
	margin: 6px 0;
	color: #FFA454;
	font-size: 16px;
}

.adbnr h3{
	padding: 20px 0 20px 0;
    font-size: 20px;
}

.adbnr li{
	width: 100%;
	max-width: 960px;
	margin: 0 auto 10px;
	padding: 3px 0;
	background: #FFF;
	border-radius: 5px;
}
/**/

.location{
	padding: 20px 0 40px;
}

.area{
	padding: 0 0 40px;
}

.popular{
	padding: 20px 0 40px;
	background-color: #F5F5F5;
}

@media (min-width: 767px) {
.JobInfo {
    width: 960px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
}
.JobInfoBlock1 {
    float: left;
    text-align: center;
    width: 460px;
    padding-bottom: 15px;
}

.JobInfoBlock2 {
    float: right;
    text-align: center;
    width: 460px;
    padding-bottom: 15px;
}

.question {
    width: 960px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
}

}
@media (max-width: 768px) {
.JobInfo {
    width: 90%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
}

.JobInfoBlock1 {
    float: left;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
}
}




#questionnaire section {
    width: 960px;
    margin: 0 auto;
}


.voice{
	padding: 20px 0 40px;
	background:url(../img/backimg.png) #C9EFF1 right 50% bottom 30% / 60px;
}

.income{
	padding: 30px 0 10px;
}

.qa{
	padding: 20px 0;
	background-color: #F5F5F5;
}

.advice{
	padding: 0 0 40px;
	background-color: #F5F5F5;
}


.location li{
	float: left;
	width: 46%;
	margin: 2%;
}

.location a{
	display: block;
	padding: 20px;
	color: #FFF;
	background-color: #7DE1B9;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	font-weight: 600;
}

.area li{
	float: left;
	width: 46%;
	margin: 2%;
}

.area a{
	display: block;
	padding: 20px;
	color: #FFF;
	background-color: #7DE1B9;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	font-weight: 600;
}


.popular_contents,.voice_contents{
	display: flex;
	flex-wrap: wrap;
}

.popular dl{
	width: 100%;
	margin: 10px auto;
	padding: 30px 20px 100px;
	position: relative;
	background: #fff;
	border-radius: 5px; 
}

.popular dt{
	text-align: center;
	padding: 0 0 200px 0 ;
	font-weight: 600;
	font-size: 18px;
	color: #7DE1B9;
}

.popular1{
	background:url(../img/popular1.png) no-repeat right 50% bottom 30% / 290px;
}

.popular2{
	background:url(../img/popular2.png) no-repeat right 50% bottom 30% / 290px;
}

.popular3{
	background:url(../img/popular3.png) no-repeat right 50% bottom 30% / 290px;
}

.popular4{
	background:url(../img/popular4.png) no-repeat right 50% bottom 30% / 290px;
}

.popular5{
	background:url(../img/popular5.png) no-repeat right 50% bottom 30% / 290px;
}

.popular6{
	background:url(../img/popular6.png) no-repeat right 50% bottom 30% / 290px;
}

.popular7{
	background:url(../img/popular7.png) no-repeat right 50% bottom 30% / 290px;
}

.popular8{
	background:url(../img/popular8.png) no-repeat right 50% bottom 30% / 290px;
}

.popular9{
	background:url(../img/popular9.png) no-repeat right 50% bottom 30% / 290px;
}
.popular10{
	background:url(../img/popular10.png) no-repeat right 50% bottom 30% / 290px;
}
.popular11{
	background:url(../img/popular11.png) no-repeat right 50% bottom 30% / 290px;
}
.popular12{
	background:url(../img/popular12.png) no-repeat right 50% bottom 30% / 290px;
}

.link{
	display: block;
	width: 290px;
    text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
  	right: 0;
 	margin: 15px auto;
	background: #7DE1B9;
	padding: 18px 0;
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
}

.link2{
	display: block;
	width: 290px;
    text-align: center;
	margin: 20px auto;
	border: 2px solid #FFA454;
	padding: 8px 0;
	border-radius: 30px;
	color: #FFA454;
	font-weight: 600;
}

/**/
.hidden_box {
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
	display: block;
	width: 250px;
	margin: 10px auto;
    padding: 18px;
    font-weight: bold;
	background: #FFA454;
    cursor :pointer;
	text-align: center;
	border-radius: 40px;
	color: #fff;
	font-size: 16px;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #FFCDA1;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    height: auto;
    opacity: 1;
}

.voice dl{
	width: 100%;
	margin: 10px auto;
	background: #fff;
}

.voice dd{
	padding: 16px 20px 10px;
	background: #fff;
}

.voice_contents span{
	font-weight: 600;
	font-size: 18px;
	background: linear-gradient(transparent 70%, #FFD53C 70%);
}

.voice1{
	background:url(../img/voice1.png) no-repeat right 50% top 2% #fff/ 350px;
}

.voice2{
	background:url(../img/voice2.png) no-repeat right 50% top 2% #fff/ 350px;
}

.income_contents{
	display: flex;
	flex-wrap: wrap;
}

.income dl{
	width: 100%;
	margin: 10px auto;
	padding: 20px;
}

.income dl > img{
	width: 80%;
	margin: 10px auto;
}

.income dt{
	float: left;
	font-weight: 600;
	color: #333;
	padding: 18px 0 0 0;
}

.income dd{
	padding: 18px 0 4px 80px;
	border-bottom: 4px solid #FFD53C;
}


/*accordion_1*/
ul li ul {
	color: #333;
}
.areabox .accordion {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
}
.areabox .accordion > li p {
	display:block;
	padding: 10px 10px 10px 50px;
	background:url(../img/q.png) no-repeat #7DE1B9 left 2% bottom 50% /20px;
	color: #FFF;
	border-radius: 5px;
	font-weight: 600;
}
.areabox .accordion > li {
	cursor: pointer;
	color: #111;	
}

.areabox .accordion > li a{
	display: block;
	text-decoration: none;
}

.areabox ul li ul {
	display: none;
	border-top: 1px solid #FFF;	
}
.areabox ul li ul li {
	border-bottom: 1px solid #FFF;
	text-align: left;
	padding: 20px;
	background-color: #fff;
}
.areabox ul li ul li:last-child {
	border-bottom: none;
}

/*accordion_2*/
.areabox2 .accordion {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
}
.areabox2 .accordion > li p {
	display:block;
	padding: 10px 10px 10px 50px;
	background:url(../img/pen.png) no-repeat #7DE1B9 left 2% bottom 50% /20px;
	color: #FFF;
	border-radius: 5px;
	font-weight: 600;
}
.areabox2 .accordion > li {
	cursor: pointer;
	color: #111;	
}

.areabox2 .accordion > li a{
	display: block;
	text-decoration: none;
}

.areabox2 ul li ul {
	display: none;
	border-top: 1px solid #FFF;	
}
.areabox2 ul li ul li {
	border-bottom: 1px solid #FFF;
	text-align: left;
	padding: 20px;
	background-color: #fff;
}
.areabox2 ul li ul li:last-child {
	border-bottom: none;
}


/*modal*/
.popup li{
	float: left;
	width: 46%;
	margin: 2%;
	font-size: 16px;
}

.popup a{
	display: block;
	padding: 20px;
	color: #FFF;
	background-color: #7DE1B9;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	font-weight: 600;
}

.popup h2{
	text-align: left;
	padding: 0 0 20px 2%;
}

.popup_area{
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	padding: 0 0 5px 5px;
}

.popup_contents{
	padding: 20px 0;
}

.pc { display: none !important; }
.sp { display: block !important; }


/*scroll*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 0px;
}

#pageTop i {
  padding-top: 6px
} 

#pageTop a {
  display: block;
  z-index: 999;
  padding: 14px 12px 4px 6px;
  width: 40px;
  height: 40px;
  background-color: #555;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}



@media screen and (min-width:768px){
	.main{
		width: 90%;
		max-width: 960px;
		margin: 0 auto;
		
	}
	
	.popup li{
		width: calc(100% / 5 - 10px);
		margin: 5px;
		font-size: 14px;
	}
	
	.popup h2{
	text-align: left;
	padding: 0 0 20px 5px;
	}
	
	.location li{
		width: 127px;
		margin: 5px;
		font-size: 14px;
	}

	.area li{
		width: 127px;
		margin: 5px;
		font-size: 14px;
	}
	
	.voice dl{
	max-width: 320px;
	margin: 10px auto;
}
	.income dl{
	max-width: 300px;
	margin: 10px auto;
}

}

@media screen and (min-width:960px){
	.main{
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
	}
	
	.popup li{
		width: 120px;
		margin: 5px;
	}
	
	.nav li{
	width: 100%;
	max-width: 32%;	
	margin: 5px auto;
	}
	
	.popular dl{
	max-width: 270px;
    margin: 10px 5px;
	padding: 30px 20px 100px;
	position: relative;
	background: #fff;
	border-radius: 5px; 
}
	.voice dl{
	max-width: 450px;
	margin: 10px auto;
}
	.income dl{
	max-width: 430px;
	margin: 10px auto;
}

	
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
	.pc { display: block !important; }
	.sp { display: none !important; }

}

.lpbanner{
    background: #fff;
    border: 1px solid #7DE1B9;
    border-radius: 5px;
    font-size: 12px;
    margin:20px auto 20px auto;
	width:100%;
}


.lpbanner h3{
	background: #7DE1B9;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: .06em;
    padding: 10px 0!important;
    margin: 0 0 15px;
}

.lpbanner p {
    padding: 0 15px 15px;
    box-sizing: border-box;
    letter-spacing: .08em;
    line-height: 1.4;
    font-size: 13px;
    text-align: center;
}


////////////////////////
///////*JobInfo*////////
////////////////////////
    

.JobInfoBlockTitle span {
    position: relative;
}

.JobInfoBlockInner h3 {
    padding-bottom: 20px;
    font-size: 18px;
    text-align: center;
    width: 100%;
}
}

@media (min-width: 767px) {
.JobInfoBlock1 {
    float: left;
    text-align: center;
    width: 460px;
    padding-bottom: 15px;
    padding-right: 40px;
}

.JobInfoBlock2 {
    float: left;
    text-align: center;
    width: 460px;
    padding-bottom: 15px;
    padding-left: 0px;
    padding-right: 0px;
}
}


@media (min-width: 767px) {
.JobInfoBlockTxt {
    display: block;
    width: 460px;
    padding: 25px 0px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    border-top: dotted 3px #4EA1B8;
}
}

@media (max-width: 768px) {
.JobInfoBlockTxt {
    display: block;
    width: 460px;
    padding: 25px 0px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    border-top: dotted 3px #4EA1B8;
}
}

@media (max-width: 768px) {
.JobInfoBlock1 {
    float: left;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
}

.JobInfoBlock2 {
    float: left;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
    padding-left: 0px;
    padding-right: 0px;
}
.JobInfoBlockTxt {
    display: block;
    width: 100%;
    padding: 25px 0px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    border-top: dotted 3px #4EA1B8;
}
}


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

　　#JobInfo {
   　　display: block; 
      padding: 60px 20px 30px;
　　}

　　.JobInfoBlock1 {
      display: block; 
      float: left;
      text-align: center;
      width: 100%;
      padding-bottom: 15px;
   }

    .JobInfoBlock2 {
       display: block; 
       float: left;
       text-align: center;
       width: 100%;
       padding-bottom: 15px;
       padding-left: 0px;
       padding-right: 0px;
    }

    .JobInfoBlockTitle span {
       position: relative;
    }


    .JobInfoBlockTxt {
       display: block;
       width: 100%;
       padding: 25px 0;
       text-align: left;
       font-size: 16px;
       letter-spacing: 0.2em;
       line-height: 1.3;
       border-top: dotted 3px #4EA1B8;
    }

    .JobInfoBlockInner h3 {
       padding-bottom: 20px;
       font-size: 18px;
       text-align: center;
       width: 100%;
    }

}

////////////////////////
////*questionnaire*/////
////////////////////////

#questionnaire section {
    width: 960px;
    margin: 0 auto;
}

.questionnaire {
    width: 960px;
    margin: 0 auto;
    padding-bottom: 80px;
    padding-top: 60px;
}

#questionnaire h3 {
    color: #83C8AB;
    padding: 40px 0 30px;
    text-align: center;
    font-size: 18px;
}

#questionnaire p {
    font-size: 16px;
    font-weight: 300;
    padding: 20px 0 50px;
    letter-spacing: 0.1em;
	line-height: 1.5;
}

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

  #questionnaire {
      padding: 60px 20px 30px;
  }

  .questionnairebox1 {
      text-align: center;
      width: 100%;
      background-position: left bottom;
      padding-bottom: 15px;
  }

  #questionnaire p {
      display: block;
      width: 100%;
      padding: 25px 0;
      text-align: left;
      font-size: 16px;
      letter-spacing: 0.2em;
      line-height: 1.3;
  }

  }

/*/////▼ LINE OA配信連動企画_バナー設置　▼////*/
/*.contents_0 {
		width: 650px;
		margin: auto
}
	
.contents_0 img{
       margin: auto;
       padding: 30px 0 30px;
       display: block;
}

@media (max-width: 768px) {
.contents_0 {
	width: 100%;
	padding: 20px 0 20px;
}
.contents_0 img{
    padding: 20px 0px 20px;
}
}*/