@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;
}

/*: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;*/
  max-width: 100%;
}

/*<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;
	}
}
iframe{
	display: none;
}

/*
＝＝＝以下の記述はheaderに関連したcssです＝＝＝
*/

.hderCenterLogo {
  /*position: fixed;*/
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  padding: 10px 0 11px;
	text-align: center;
}

@media (min-width: 768px) {
  .hderCenterLogo {
    padding: 18px 0;
  }
}

.hderCenterLogo img {
  height: 40px;
  margin: 0 auto;
}

.hderCenterLogo h1{
	font-size: 1rem;
	font-weight: lighter;
	text-align: center;
	padding: 10px 0 0 0;
}

@media (min-width: 768px) {
  .hderCenterLogo img {
    height: 40px;
  }
.hderCenterLogo h1{
	font-size: 1rem;
	font-weight: lighter;
	text-align: right;
	padding: 10px 10px 0 0;
	box-sizing: border-box;
}
}

.shadow {
    box-shadow: 0 2px 2px -1px #ee7801;
}

/*
＝＝＝以下の記述はfooterに関連したcssです＝＝＝
*/

/* パンくず */
.pagePathParent {
    width: 100%;
    display: inline-block;
    /* font-size: var(--px11); */
    background-color: rgb(0,170,238);
    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: -16px;
    border-width: 15px 15px 15px 15px;
    border-color: transparent rgb(0,170,238) rgb(0,170,238) transparent;
    border-style: solid;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-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 rgb(0,170,238) transparent;
    border-style: solid;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-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 rgb(0,170,238);
    border-style: solid;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}


/* 現在地 */
.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;
  }
}

/* 企業向けリンク \*/
.linkForKigyo{
	text-decoration: none;
  margin: 5px 0px 10px 0px;
  text-align: center;
  font-weight: 400;
}
.linkForKigyo a{
  text-decoration: none;
  color: #000;
}
.linkForKigyo a:hover {
  font-weight: bold;
  color: #00aaee;
		}

/*
＝＝＝このページにかかわるcssは以下に記述＝＝＝
*/


/*-----------------------------
  FV
--------------------------------*/
#icatch{
}
#icatch h1 img{
	margin: 0 auto;
	display: block;
}

/*/////▼ LPバナー ▼////*/
.adbnr{
	width: 100%;
	margin: 10px 0;
}
	.adbnr h3{
		width: 960px;
		margin: 0 auto 10px auto;
		background: #000;
		padding: 5px 0;
		color: #fff;
		font-size: 14px;
		font-weight: lighter;
		text-align: center;
	}
.adbnr ul{
	width: 960px;
	margin: 0 auto;
}
.adbnr ul li{
	margin: 0 0 10px 0;
}
.adbnr ul li:last-child{
	margin: 0;
}
.adbnr ul li a{
	display: block;
	padding: 5px;
	box-sizing: border-box;
	background: #fff;
	color: #000;
	text-align: center;
	border-bottom: 2px solid #e6e6e6;
	border-radius: 100px;
	font-size: 80%;
}

/*-----------------------------
  共通指定
--------------------------------*/
.pc_location,
#about,
#category,
#merit,
#reco,
#choice,
#qa{
	width: 100%;
}
#about section,
#category section,
#merit section,
#reco section,
#choice section,
#qa section{
	width: 960px;
	margin: 0 auto;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
.pc_location h2,
#about h2,
#category h2,
#merit h2,
#reco h2,
#choice h2,
#qa h2{
	font-size: 30px;
	font-weight: lighter;
	text-align: center;
	padding:70px 0 0 0;
	margin: 0 0 20px 0;
	letter-spacing: 0.2em;
}

/*-----------------------------
  都道府県
--------------------------------*/
.pc_location{
	padding: 40px 0;
	background: #fff;
}
.pc_location h2{
	background: url(../img/area_ico.png) no-repeat center top;
}
.pc_location section{
	padding: 0 20px;
	box-sizing: border-box;
}
.pc_location section dl{
	width: 31%;
	height: 270px;
	background: #333;
	border-radius: 5px;
	float: left;
	box-sizing: border-box;
	margin: 0 0.5% 2% 1.5%;
}
.pc_location section dl dt{
	font-size: 24px;
	padding: 15px 0;
	text-align: center;
	color: #fff;
}
.pc_location section dl dd ul li{
	width: 31.2%;
	float: left;
	margin: 0 0.8% 2% 1.2%;
}
.pc_location section dl dd ul li a{
	display: block;
	color: #444;
	border-radius: 5px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	font-size: 14px;
	text-align: center;
	padding: 15px 0;
}

/*/////▼ コンテンツエリア ▼////*/
#about{
	padding: 0 0 40px 0;
}
#about h2{
	background: url(../img/about_ico.png) no-repeat center top;
}
#about section dl{
	width: 465px;
	height: 350px;
	background: url(../img/about_img01.png) no-repeat 20px top #333;
	color: #fff;
	border-radius: 10px;
	float: left;
}
#about section dl:last-child{
	float: right;
}
#about section dl dt{
	padding: 20px 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 18px;
}
#about section dl dd{
	padding:0 15px 15px 15px;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
}

#category{
	padding: 40px 0;
}
#category h2{
	background: url(../img/category_ico.png) no-repeat center top;
}
#category section dl{
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
	margin: 0 0 20px 0;
	color: #fff;
}
#category section dl:last-child{
	margin: 0;
}
#category section dl dt{
	font-size: 24px;
	font-weight: lighter;
	text-align: center;
	padding: 0 0 20px 0;
	box-sizing: border-box;
	border-bottom: 1px solid #fff;
	margin: 0 0 20px 0;
}
#category section dl dd h3{
	padding: 0 0 10px 0;
	font-size: 18px;
	font-weight: lighter;
}
.service{
	background: url(../img/cat_bg01.jpg) no-repeat center bottom;
	background-size: cover;
}
.security{
	background: url(../img/cat_bg02.jpg) no-repeat center bottom;
	background-size: cover;
}
.medical{
	background: url(../img/cat_bg03.jpg) no-repeat center bottom;
	background-size: cover;
}
#category section a{
	display: block;
	width: 500px;
	padding: 20px 0;
	text-align: center;
	color: #444;font-size: 21px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	border-radius: 5px;
	margin: 20px auto 0 auto;
}
#category section a:hover{
	background: url(../img/arrow.png) no-repeat 98% center #fff;
	color: #444;
}

#merit{
	padding: 180px 0 80px 0;
	background: url(../img/merit_bg.png) no-repeat center top #333;
	background-size: 100% auto;
}
#merit section dl{
	width: 465px;
	color: #fff;
	border-radius: 10px;
	float: left;
}
#merit section dl:last-child{
	float: right;
}
#merit section dl dt{
	padding: 70px 0 20px 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 21px;
	color: #ff9696;
	background: url(../img/merit_ico.png) no-repeat center top;
}
#merit section dl:last-child dt{
	color: #7ecadc;
	background: url(../img/demerit_ico.png) no-repeat center top;
}
#merit section dl dd{
	padding:0;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
	margin: 0 0 20px 0;
}
#merit section dl dd:last-child{
	margin: 0;
}
#merit section dl dd h3{
	margin: 0 0 10px 0;
	color: #ff9696;
}
#merit section dl:last-child dd h3{
	color: #7ecadc;
}


#reco{
	padding: 40px 0;
}
#reco h2{
	background: url(../img/recommend_ico.png) no-repeat center top;
}
#reco section dl{
	width: 465px;
	border-radius: 10px;
	float: left;
}
#reco section dl:last-child{
	float: right;
}
#reco section dl dt{
	padding: 0 0 10px 0;
	text-align: center;
}
#reco section dl dd{
	height: 90px;
	padding:0;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
	position: relative;
}
#reco section dl dd h3{
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: lighter;
	text-align: center;
	border-bottom: 1px solid #444;
}
#reco dl dd a{
	display: block;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	color: #444;font-size: 21px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
}
#reco dl dd a:hover{
	background: url(../img/arrow_w.png) no-repeat 98% center #444;
	color: #fff;
}


#choice{
	padding: 40px 0;
	background: url(../img/choice_bg.png) no-repeat center center;
	background-size: cover;
	color: #fff;
}
#choice h2{
	background: url(../img/choice_ico.png) no-repeat center top;
	color: #fff;
}
#choice section article{
	margin: 0 0 20px 0;
}
#choice section article:last-child{
	margin: 0;
}
#choice section article figure{
	width: 240px;
	text-align: center;
}
figcaption{
	padding: 10px 0 0 0;
	font-size: 14px;
}
#choice section article div{
	width: 720px;
	height: 160px;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
	border-radius: 10px;
	color: #333;
}
.f_left{
	float: left;
}
.f_right{
	float: right;
}


/*/////▼ QA ▼////*/
#qa{
	padding: 40px 0;
	background: #fff;
}
#qa h2{
	background: url(../img/qa_ico.png) no-repeat center top;
}
#qa dl{
	margin: 0 0 20px 0;
}
#qa dl:last-child{
	margin: 0;
}
#qa dl dt{
	background: #444;
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: pointer;
}
#qa dl dd{
	color: #000;
	padding: 15px 0;
}
dl.answer dd{
	display: none;
}

/*/////▼ モーダル内リンク ▼////*/
.popup h2{
	font-size: 24px;
	font-weight: normal;
	padding: 0 0 20px 0;
	color: #444;
}
.popup section dl{
	width: 31%;
	height: 180px;
	border-radius: 5px;
	float: left;
	padding: 5px;
	background: #333;
	box-sizing: border-box;
	margin: 0 1% 2% 1%;
}
.popup section dl dt{
	font-size: 18px;
	padding: 0 0 5px 0;
	text-align: center;
	color: #fff;
}
.popup section dl dd ul li{
	width: 31%;
	float: left;
	margin: 0 1% 2% 1%;
}
.popup section dl dd ul li a{
	display: block;
	color: #444;
	border-radius: 5px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	font-size: 14px;
	text-align: center;
	padding: 5px 0;
}
.popup section dl dd ul li a:hover{
	background: url(../img/arrow.png) no-repeat 98% center #fff;
	color: #444;
	text-decoration: none;
}

#pickup{
	padding: 2.5rem;
	font-size: 1.3rem;
	max-width: 1360px;
	box-sizing: border-box;
	border-radius: 10px;
	margin: 0 auto 5rem auto;
	background: url("../img/pickup_bg.jpg") no-repeat center;
	background-size: cover;
	color: #fff;
}
#pickup h2{
	font-size: 30px;
	font-weight: lighter;
	text-align: center;
	padding:0;
	margin: 0 0 20px 0;
	letter-spacing: 0.2em;
}
#pickup section a{
    display: block;
    width: 500px;
    padding: 20px 0;
    font-size: 1.3rem;
    text-align: center;
    color: #444;
    background: url(../img/arrow.png) no-repeat 98% center #ffc200;
    border-radius: 5px;
    margin: 2.5rem auto 0 auto;
}

/* /////////////////////////////

▼スマホ用

///////////////////////////// */
@media screen and (max-width:780px) {
	
	/*-----------------------------
  FV
--------------------------------*/
img{
		max-width: 100%;
	}
#icatch{
	padding: 0;
}

/*/////▼ LPバナー ▼////*/
.adbnr{
	width: 100%;
	margin: 10px 0;
}
	.adbnr h3{
		width: 960px;
		margin: 0 auto 10px auto;
		background: #000;
		padding: 5px 0;
		color: #fff;
		font-size: 14px;
		font-weight: lighter;
		text-align: center;
	}
.adbnr ul{
	width: 100%;
}
.adbnr ul li{
	margin: 0;
}
.adbnr ul li a{
	display: block;
	padding: 10px;
	background: #fff;
	color: #000;
	text-align: center;
	border-bottom: 1px solid #e6e6e6;
	font-size: 80%;
}

/*-----------------------------
  共通指定
--------------------------------*/
.contents{
}
.sp_location,
#about,
#category,
#merit,
#reco,
#choice,
#qa{
	width: 100%;
}
.sp_location section,
#about section,
#category section,
#merit section,
#reco section,
#choice section,
#qa section{
	width: auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.sp_location h2,
#about h2,
#category h2,
#merit h2,
#reco h2,
#choice h2,
#qa h2{
	font-size: 24px;
	font-weight: lighter;
	text-align: center;
	padding: 40px 20px 20px 20px;
	box-sizing: border-box;
	margin: 0 0 10px 0;
	letter-spacing: 0.2em;
}

/*-----------------------------
  都道府県
--------------------------------*/
.sp_location{
	padding: 20px 0;
	background: #fff;
}
.sp_location h2{
	background: url(../img/area_ico.png) no-repeat center top;
	background-size: auto 40px;
}
.sp_location section{
	padding: 0 20px;
	box-sizing: border-box;
}
.sp_location section dl{
	width: 48%;
	height: auto;
	background: #333;
	border-radius: 5px;
	float: left;
	padding: 5px;
	box-sizing: border-box;
	margin: 0 0.5% 2% 1.5%;
}
.sp_location section dl dt{
	font-size: 18px;
	padding: 15px 0;
	text-align: center;
	color: #fff;
}
.sp_location section dl dd ul li{
	width: 100%;
	float: none;
	margin: 0 0 2% 0;
}
.sp_location section dl dd ul li a{
	display: block;
	color: #444;
	border-radius: 5px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	font-size: 14px;
	text-align: center;
	padding: 10px 0;
}
.areamenu dd{
	display: none;
	}

/*/////▼ コンテンツエリア ▼////*/
#about{
	padding: 0 0 40px 0;
}
#about h2{
	background: url(../img/about_ico.png) no-repeat center top;
	background-size: auto 40px;
}
#about section dl{
	width: 100%;
	height: auto;
	background: url(../img/about_img01.png) no-repeat 20px top #333;
	background-size: auto 60px;
	color: #fff;
	margin: 0 0 20px 0;
	border-radius: 10px;
}
#about section dl:last-child{
	margin: 0;
}
#about section dl dt{
	padding: 20px 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 18px;
}
#about section dl dd{
	padding:0 15px 15px 15px;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
}

#category{
	padding: 0 0 40px 0;
}
#category h2{
	background: url(../img/category_ico.png) no-repeat center top;
	background-size: auto 40px;
}
#category section dl{
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
	margin: 0 0 20px 0;
	color: #fff;
}
#category section dl:last-child{
	margin: 0;
}
#category section dl dt{
	font-size: 24px;
	font-weight: lighter;
	text-align: center;
	padding: 0 0 20px 0;
	box-sizing: border-box;
	border-bottom: 1px solid #fff;
	margin: 0 0 20px 0;
}
#category section dl dd h3{
	padding: 0 0 10px 0;
	font-size: 18px;
	font-weight: lighter;
}
.service{
	background: url(../img/cat_bg01.jpg) no-repeat center bottom;
	background-size: cover;
}
.security{
	background: url(../img/cat_bg02.jpg) no-repeat center bottom;
	background-size: cover;
}
.medical{
	background: url(../img/cat_bg03.jpg) no-repeat center bottom;
	background-size: cover;
}
#category section a{
	display: block;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	color: #444;
	font-size: 14px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	border-radius: 5px;
	margin: 20px auto 0 auto;
}
#category section a:hover{
	background: url(../img/arrow.png) no-repeat 98% center #fff;
	color: #444;
}

#merit{
	padding: 80px 0 80px 0;
	background: url(../img/merit_bg.png) no-repeat center top #333;
	background-size: 100% auto;
}
#merit section dl{
	width: auto;
	color: #fff;
	border-radius: 10px;
	margin: 0 0 20px 0;
}
#merit section dl:last-child{
	margin: 0;
}
#merit section dl dt{
	padding: 40px 0 20px 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 21px;
	color: #ff9696;
	background: url(../img/merit_ico.png) no-repeat center top;
	background-size: auto 40px;
}
#merit section dl:last-child dt{
	color: #7ecadc;
	background: url(../img/demerit_ico.png) no-repeat center top;
	background-size: auto 40px;
}
#merit section dl dd{
	padding:0;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
	margin: 0 0 20px 0;
}
#merit section dl dd:last-child{
	margin: 0;
}
#merit section dl dd h3{
	margin: 0 0 10px 0;
	color: #ff9696;
}
#merit section dl:last-child dd h3{
	color: #7ecadc;
}


#reco{
	padding: 40px 0;
}
#reco h2{
	background: url(../img/recommend_ico.png) no-repeat center top;
	background-size: auto 40px;
}
#reco section dl{
	width: 100%;
	height: auto;
	border-radius: 10px;
	float: none;
	margin: 0 0 0 0;
}
#reco section dl:last-child{
	margin: 0;
}
#reco section dl dt{
	padding: 0 0 10px 0;
	text-align: center;
}
#reco section dl dd{
	padding:0;
	height: auto;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
}
#reco section dl dd h3{
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: lighter;
	text-align: center;
	border-bottom: 1px solid #444;
}
#reco dl dd a{
	display: block;
	width: 100%;
	padding: 20px 0;
	font-size:14px;
	text-align: center;
	color: #444;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	border-radius: 5px;
	margin: 20px 0 0 0;
	position: static;
}
#reco dl dd a:hover{
	background: url(../img/arrow_w.png) no-repeat 98% center #444;
	color: #fff;
}


#choice{
	padding: 40px 0;
	background: url(../img/choice_bg.png) no-repeat center center;
	background-size: cover;
	color: #fff;
}
#choice h2{
	background: url(../img/choice_ico.png) no-repeat center top;
	background-size: auto 40px;
	color: #fff;
}
#choice section article{
	margin: 0 0 20px 0;
}
#choice section article:last-child{
	margin: 0;
}
#choice section article figure{
	width: 100%;
	text-align: center;
}
.f_left{
	float: none;
}
.f_right{
	float: none;
}

#choice section article figure img{
	height: 80px;
}
figcaption{
	padding: 10px 0;
	font-size: 18px;
}
#choice section article div{
	width: 100%;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
	border-radius: 10px;
	color: #333;
}

/*/////▼ QA ▼////*/
#qa{
	padding: 40px 0;
	background: #fff;
}
#qa h2{
	background: url(../img/qa_ico.png) no-repeat center top;
	background-size: auto 40px;
}
#qa dl{
	margin: 0 0 20px 0;
}
#qa dl:last-child{
	margin: 0;
}
#qa dl dt{
	background: #444;
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: pointer;
}
#qa dl dd{
	color: #000;
	padding: 15px 0;
}
dl.answer dd{
	display: none;
}
	
#pickup{
	padding: 2.5rem;
	font-size: 1.3rem;
	max-width: inherit;
	box-sizing: border-box;
	border-radius: 0;
	margin: 0 auto 5rem auto;
	background: url("../img/pickup_bg.jpg") no-repeat 30% center;
	background-size: auto;
	color: #fff;
}
#pickup h2{
	font-size: 1.5rem;
	font-weight: lighter;
	text-align: center;
	padding:0;
	margin: 0 0 20px 0;
	letter-spacing: 0.2em;
}
#pickup section a{
    display: block;
    width: auto;
    padding: 20px 0;
    font-size: 1.3rem;
    text-align: center;
    color: #444;
    background: url(../img/arrow.png) no-repeat 98% center #ffc200;
    border-radius: 5px;
    margin: 2.5rem auto 0 auto;
}

/*/////▼ モーダル内リンク ▼////*/
.popup h2{
	font-size: 18px;
	font-weight: normal;
	padding: 0 0 20px 0;
	color: #333;
}
.popup section dl{
	width: 100%;
	height: auto;
	background: #333;
	border-radius: 5px;
	float: left;
	padding: 5px;
	box-sizing: border-box;
	margin: 0 0 5% 0;
}
.popup section dl dt{
	font-size: 18px;
	padding: 0 0 5px 0;
	text-align: center;
	color: #fff;
}
.popup section dl dd ul li{
	width: 48%;
	float: left;
	margin: 0 1% 2% 1%;
}
.popup section dl dd ul li a{
	display: block;
	color: #444;
	border-radius: 5px;
	background: url(../img/arrow.png) no-repeat 98% center #ffc200;
	font-size: 14px;
	text-align: center;
	padding: 10px 0;
}
}
div.sp_location section article.clearfix dl.areamenu_p dd {
	display: block;
  }