@charset "UTF-8";

/*------------------------------------------------

 common.css
 
 Copyright (C) Kurashinokura

------------------------------------------------*/

/* general layout
================================================================================*/
/* responsive nav
------------------------------------------------*/

/* common
------------------------------------------------*/
.sp {
	display: none;
}
.sp360 {
	display: none;
}

/* a
------------------------------------------------*/
a[href^="tel:"]:link {
	color: #000;
	text-decoration: none;
	cursor: default;
}


/* body
================================================================================*/
body {
	background: #fff url(../common_img/bg.png) repeat-x 0 155px;
}

/* header
================================================================================*/
#globalHeader {
	position: relative;
	width: 960px;
	height: 148px;
	margin: 0 auto 0;
	padding: 25px 0 0;
	text-align: left;
}
#globalHeader p {
	margin: 0;
}

/* logo */
#globalHeader #logo {
	position: absolute;
	top: 0;
	left: 0;
}
/* inlineText */
#globalHeader #inlineText {
	position: absolute;
	top: 10px;
	right: 220px;
	color: #00693e;
	font-size: 1.2rem;
	line-height: 20px;
	text-align: right;
	letter-spacing: 0;
}
/* address */
#globalHeader #headerTel {
	position: absolute;
	top: 35px;
	right: 220px;
	width: 278px;
}
#globalHeader #headerForm {
	position: absolute;
	top: 10px;
	right: 0;
	width: 200px;
	height: 70px;
	margin: 0 0 0 auto;
}
#globalHeader #headerForm a {
	display: block;
	width: 200px;
	height: 70px;
	padding: 12px 0 0;
	border: 1px solid #00472a;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
	text-decoration: none;
	line-height: 1.3;
	letter-spacing: 0;
	border-radius: 4px;
  background: url(../common_img/arrow_white.png) 5px center no-repeat, -webkit-linear-gradient(top, #29863A, #00693E 70%);
  background: url(../common_img/arrow_white.png) 5px center no-repeat, linear-gradient(to bottom, #29863A, #00693E 70%);
	box-shadow: 1px 1px 2px #ddd;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
#globalHeader #headerForm a:hover {
  background: url(../common_img/arrow_white.png) 5px center no-repeat, -webkit-linear-gradient(top, #55A536, #00693E);
  background: url(../common_img/arrow_white.png) 5px center no-repeat, linear-gradient(to bottom, #55A536, #00693E);
	box-shadow: none;
}
#globalHeader #headerForm a span {
	font-size: 1.4rem;
}

/* globalNav */
#globalHeader nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	position: absolute;
	top: 103px;
	left: 0;
	width: 960px;
	height: 25px;
	margin: 0;
	padding: 0;
	background: url("../header_img/nav_back.png") no-repeat left center;
}
#globalHeader nav ul li {
	width: 150px;
	height: 25px;
	margin: 0;
	padding: 0;
}

#globalHeader nav ul li a {
	display: block;
	width: 100%;
	height: 25px;
	background: #fff;
	color: #000;
	font-weight: 700;
	text-align: center;
	line-height: 25px;
}
#globalHeader nav ul li a:link,
#globalHeader nav ul li a:visited,
#globalHeader nav ul li a:hover,
#globalHeader nav ul li a:active {
	text-decoration: none;
}

#globalHeader nav ul li a:hover,
#globalHeader nav ul li a:active {
	background: #55A536;
	color: #fff;
	text-shadow: none;
	border-radius: 4px;
}

/* 縦固定ボタン */
div.side-cta {
  position: fixed; 
  top: 20vh; 
	right: 0; 
	z-index:20; 
}

div.side-cta li a{
	-webkit-writing-mode: vertical-rl; 
          writing-mode: vertical-rl;
	  text-orientation: upright;
}

div.side-cta p{
	font-size: 12px;
	display: inline-block;
}

ul.side-cta-menu{
	background-color: #fceddd;
	padding-right: 4px;
	padding-left: 4px;
	border-radius: 10px 0 0 10px;
}

ul.side-cta-menu li{
	width: 52px;
}

ul.side-cta-menu a{
	padding: 32px 14px;
}

ul.side-cta-menu i{
	font-size: 24px;
}

li.side-cta-line, li.side-cta-mail{
	background-image : linear-gradient(to right, #00784a, #00784a 3px, transparent 3px, transparent 9px);  
  background-size: 6px 2px; 
  background-position: left bottom; 
  background-repeat: repeat-x; 
	text-align: center;
}

div.side-cta-icon{
	display: inline-block;
}

.side-cta-line i{
	color: #06c755;
	background-color: #ffffff;
}

.side-cta-line p{
	color: #00693e;
		margin-top: 8px!important;
}

.side-cta-mail i, .side-cta-mail p, .side-cta-tel i, .side-cta-tel p{
	color: #00784a;
}

.side-cta-mail p{
	margin-top: 8px!important;
}

.side-cta-tel a:hover{
	cursor: pointer;
}

.side-cta-tel p{
	margin-top: 16px!important;
}

/* main
================================================================================*/
#main {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 960px;
	margin: 0 auto 50px;
	padding: 12px 0 0;
}

/* content */
#content {
	width: 720px;
}
/* sidebar */
#sidebar {
	width: 200px;
}

/* content
================================================================================*/
/* h
------------------------------------------------*/
.centerLine {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 30px;
	padding: 0;
	color: #55a536;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-size: 3.0rem;
}
.centerLine:after {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-top: 1px solid #55a536;
  content: "";
  margin-left: 0.5em;
}
.centerLine.doubleLine {
	text-align: center;
}
.centerLine.doubleLine:before {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-top: 1px solid #55a536;
  content: "";
  margin-right: 0.5em;
}

/* flexbox
------------------------------------------------*/
.flexbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* button
------------------------------------------------*/
.btn a {
	display: inline-block;
	padding: 0 20px;
  background: #00693e url(../common_img/arrow_white.png) no-repeat 5px center;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	text-decoration: none;
	line-height: 30px;
	letter-spacing: 0;
	border-radius: 4px;
}
.btn a:hover {
  background: #55a536 url(../common_img/arrow_white.png) no-repeat 5px center;
}

/* induce
------------------------------------------------*/
.induce {
	padding: 5px 0 5px 20px;
	background: url(../common_img/arrow_back.png) no-repeat left center;
	background-size: 14px auto;
	color: #000;
}
.induce a:link { color: #000; text-decoration: none; }
.induce a:visited { color: #666; text-decoration: none; }
.induce a:hover, .induce a:active { color: #00693E; text-decoration: none; }

/* indent
------------------------------------------------*/
.indent {
	margin-right: 30px;
	margin-left: 30px;
}
.indent1em {
	margin-left: 1em;
	text-indent: -1em;
}

/* page nation
------------------------------------------------*/
.wp-pagenavi {
	margin: 30px 0;
	text-align: center;
}
.wp-pagenavi a {
	margin: 0 2px 0 0;
	padding: 5px 10px;
	border: 1px solid #00693e;
	text-decoration: none;
}
.wp-pagenavi a:link,
.wp-pagenavi a:visited {
	background: #fff;
	color: #00693e;
	text-decoration: none;
}
.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
	background: #00693e;
	color: #fff;
	text-decoration: none;
}
.wp-pagenavi .current {
	margin: 0 2px 0 0;
	padding: 5px 10px;
	border: 1px solid #55a536;
	background: #55a536;
	color: #fff;
}

/* 買取実績の親カテゴリーリスト[results-ctg]
------------------------------------------------*/
.resultsCtgList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 0 30px;
}
.resultsCtgList li {
	width: 110px;
}
.resultsCtgList li a {
	display: block;
	width: 100%;
	text-align: center;
	text-decoration: none;
}
.resultsCtgList li a img {
	display: block;
	margin: 0 auto 5px;
}
.resultsCtgList li a > span {
	display: block;
	border: 1px solid #00784a;
	background: #fff;
	color: #00784a;
	font-size: 1.2rem;
	line-height: 25px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0;
	border-radius: 4px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.resultsCtgList li a:hover > span {
	border: 1px solid #55a536;
  background: #55a536;
  color: #fff;
}

/* 買取実績一覧
------------------------------------------------*/
#resultsList {
	width: 720px;
	margin: 0;
	padding: 25px;
	background: #eaf2f0;
	border-radius: 8px;
}
#resultsList ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -10px -10px 0 0;
}
#resultsList ul li {
	width: 160px;
	margin: 10px 10px 0 0;
	padding: 10px;
	background: #fff;
	font-size: 1.2rem;
	border-radius: 4px;
}
#resultsList ul li img {
	display: block;
	margin: 0 auto 5px;
}

/* お問い合わせエリア[contanct-area]
------------------------------------------------*/
.contact {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 720px;
	margin: 40px 0;
	padding: 20px;
	background: #55a536;
	border-radius: 8px;
}
.contactL {
	width: 310px;
}
.contactL h3 {
	margin: 0 0 15px;
	padding: 0 0 5px;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-size: 2.4rem;
	letter-spacing: 0;
}
.contactL .contactRead {
	margin: 0 0 10px;
	color: #00472a;
}
.contactL .contactFaq {
	width: 220px;
	height: 50px;
	margin: 0 auto 10px;
}
.contactL .contactFaq a {
	display: block;
	padding: 0 0 0 20px;
	background: #fff url(../common_img/faq_bg.png) no-repeat 20px center;
	background-size: 38px auto;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 50px;
	text-align: center;
	letter-spacing: 0;
	border-radius: 4px;
}
.contactL .contactFaq a:link,
.contactL .contactFaq a:visited {
	color: #000;
}
.contactL .contactFaq a:hover,
.contactL .contactFaq a:active {
	color: #000;
	text-decoration: none;
}
.contactL .contactText {
	margin: 15px 0 0;
	padding: 8px;
	border: 1px dashed #fff;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.contactR {
	width: 350px;
}
.contactR li {
	margin: 0 0 10px;
	padding: 0 0 0 75px;
}
.contactR l:last-child {
	margin: 0;
}
.contactR .contactTel {
	background: url(../common_img/contact_tel_title.png) left center no-repeat;
}
.contactR .contactMail {
	background: url(../common_img/contact_mail_title.png) left center no-repeat;
}
.contactR .contactForm {
	height: 50px;
	background: url(../common_img/contact_form_title.png) left center no-repeat;
}
.contactForm a,  .recruitForm a {
	display: block;
	width: 275px;
	height: 50px;
	border: 1px solid #00472a;
	color: #fff;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-size: 1.8rem;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	letter-spacing: 0;
	border-radius: 3px;
  background: url("../common_img/arrow_white.png") 5px center no-repeat, -webkit-linear-gradient(top, #29863A, #00693E 70%);
  background: url("../common_img/arrow_white.png") 5px center no-repeat, linear-gradient(to bottom, #29863A, #00693E 70%);
	box-shadow: 1px 1px 2px #ddd;
}
.contactForm a:hover {
  background: url("../common_img/arrow_white.png") 5px center no-repeat, -webkit-linear-gradient(top, #55A536, #00693E);
  background: url("../common_img/arrow_white.png") 5px center no-repeat, linear-gradient(to bottom, #55A536, #00693E);
	box-shadow: none;
}
.contactR .contactShop {
	background: url("../common_img/contact_shop_title.png") left center no-repeat;
	color: #000;
}

/* sidebar
================================================================================*/
/* 検索
------------------------------------------------*/
#searchOutbox {
	margin: 0 0 80px;
}
#searchOutbox h3 {
	position: relative;
	margin: 20px 0 15px;
	padding: 0;
	background: #fff;
	border: 1px solid #000;
	color: #000;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
	line-height: 40px;
	border-radius: 4px;
}
#searchOutbox h3:after,
#searchOutbox h3:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
}
#searchOutbox h3:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 8px;
	margin-left: -8px;
}
#searchOutbox h3:before {
	border-color: rgba(0, 0, 0, 0);
	border-top-color: #000;
	border-width: 9px;
	margin-left: -9px;
}

/* 検索フォーム */
.searchArea form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 200px;
}
.searchArea input {
	padding: 8px 2px;
}
.searchArea input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
	width: 146px;
	height: 100%;
	margin: 0;
	font-family: Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, Arial, sans-serif;
	font-size: 1.4rem;
}
.searchArea input[type="search"]focus {
  outline-offset: -2px;
}
input[type="search"]::-webkit-search-decoration {
  display: none;
}
.searchArea input[type="submit"] {
	width: 40px;
	margin: 0;
	border: 1px solid #00472a;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
	text-decoration: none;
	line-height: 1.3;
	letter-spacing: 0;
	border-radius: 4px;
  background: -webkit-linear-gradient(top, #29863A, #00693E 70%);
  background: linear-gradient(to bottom, #29863A, #00693E 70%);
	font-size: 1.2rem;
	cursor: pointer;
}

/* sidebarNav
------------------------------------------------*/
#sidebar nav {
	margin: 0 0 20px;
}
#sidebar nav a:link { color: #000; text-decoration: none; }
#sidebar nav a:visited { color: #666; text-decoration: none; }
#sidebar nav a:hover, #sidebar nav a:active {
	color: #000; text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
#sidebar nav div {
	position: relative;
}
#sidebar nav h3 a {
	display: block;
	padding: 0 0 0 35px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	color: #000;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 40px;
}
#sidebar nav h3 a:hover,
#sidebar nav h3 a:active {
	border-top: 1px solid #55A536;
	border-bottom: 1px solid #55A536;
	color: #55A536;
	opacity: 1;
}
#sidebar nav h3#ctgBrand {
	background: url("../common_img/brand.jpg") no-repeat 0;
	background-size: 25px auto;
}
#sidebar nav h3#ctgJewelry {
	background: url("../common_img/jewelry.jpg") no-repeat 0;
	background-size: 25px auto;
}
#sidebar nav h3#ctgKimono {
	background: url("../common_img/kimono.jpg") no-repeat 0;
	background-size: 25px auto;
}
#sidebar nav h3#ctgAntique {
	background: url("../common_img/antique.jpg") no-repeat 0;
	background-size: 25px auto;
}
#sidebar nav h3#ctgPottery {
	background: url("../common_img/pottery.jpg") no-repeat 0;
	background-size: 25px auto;
}
#sidebar nav h3#ctgFurniture {
	background: url("../common_img/furniture.jpg") no-repeat 0;
	background-size: 25px auto;
}
#sidebar nav ul {
	margin: 0;
}
#sidebar nav li a {
	display: block;
	padding: 0 5px 0 25px;
	border-bottom: 1px dashed #ccc;
	background: #fff url("../common_img/arrow_black.png") no-repeat 5px center;
	font-size: 1.3rem;
	line-height: 40px;
}
#sidebar nav li a:hover,
#sidebar nav li a:active {
	background: #eaf2f0 url("../common_img/arrow_black.png") no-repeat 5px center;
}
#sidebar nav:not(:first-of-type) ul li:last-of-type a {
	border-bottom: none;
}
#sidebar nav#globalNav ul li:first-of-type a {
	border-top: 1px dashed #ccc;
}
#sidebar nav h3#tag {
	margin: 20px 0;
	padding: 0;
	border: none;
	font-size: 1.4rem;
}
#sidebar nav h3#tag a {
	display: block;
	padding: 0;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	letter-spacing: -.1em;
}
#sidebar nav h3#tag a:link,
#sidebar nav h3#tag a:visited {
	border: 1px solid #000;
	background: url("../common_img/arrow_black.png") no-repeat 5px center;
	color: #000;
}
#sidebar nav h3#tag a:hover,
#sidebar nav h3#tag a:active {
	border: 1px solid #00784a;
	background: #00784a url("../common_img/arrow_white.png") no-repeat 5px center;
	color: #fff;
}

/* contact
------------------------------------------------*/
#sidebarContact {
	margin: 0 0 20px;
	padding: 12px;
	background: #55A536;
	text-align: center;
	border-radius: 4px;
}
#sidebarContact h3 {
  margin: 0 0 12px;
  padding: 0 0 7px;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
  font-size: 2.4rem;
  letter-spacing: 0;
	text-align: center;
}
#sidebarContact li {
	margin: 0 0 10px;
	padding: 0;
	text-align: center;
}
#sidebarContact .contactMail {
	letter-spacing: -.05rem;
}
#sidebarContact .contactShop {
	color: #000;
}
#sidebarContact .contactShop span {
	display: block;
	font-size: 1.1rem;
	letter-spacing: -.05rem;
}
#sidebarContact .contactForm {
	width: 176px;
	background: url("../common_img/contact_form_title.png") left center no-repeat;
}
#sidebarContact li.contactForm a {
	display: block;
	width: 174px;
	height: auto;
	padding: 10px 0;
	border: 1px solid #00472A;
	color: #FFF;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	line-height: 1.4;
	letter-spacing: 0;
	border-radius: 3px;
  background: url("../common_img/arrow_white.png") 5px center no-repeat, -webkit-linear-gradient(top, #29863A, #00693E 70%);
  background: url("../common_img/arrow_white.png") 5px center no-repeat, linear-gradient(to bottom, #29863A, #00693E 70%);
	box-shadow: 1px 1px 2px #ddd;
}
#sidebarContact li.contactForm a:hover {
  background: url("../common_img/arrow_white.png") 5px center no-repeat, -webkit-linear-gradient(top, #55A536, #00693E);
  background: url("../common_img/arrow_white.png") 5px center no-repeat, linear-gradient(to bottom, #55A536, #00693E);
	box-shadow: none;
}
#sidebarContact .contactText {
	margin: 0;
	padding: 8px;
	border: 1px dashed #fff;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}

/* banner
------------------------------------------------*/
#sidebar .bnr {
	margin: 0 0 10px;
}
#sidebar .bnr a {
	display: block;
	width: 200px;
	height: 80px;
	border: 1px solid #000;
}
#sidebar .bnr a:link,
#sidebar .bnr a:visited {
	text-decoration: none;
}
#sidebar #recommendBnr a {
	padding: 20px 0 0;
	background: #fff;
	background: #fff url(../sidebar_img/recommend_bg.png) no-repeat right -50px top 0;
	background-size: 200px auto;
	color: #000;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
	text-align: center;
	text-shadow: 0 0 3px #fff; 
}
#sidebar #recommendBnr a span {
	display: block;
	margin: 0 0 5px;
	font-size: 1.4rem;
	letter-spacing: -.1em;
}
#sidebar #recommendBnr a:hover,
#sidebar #recommendBnr a:active {
	background: #fff url(../sidebar_img/recommend_bg.png) no-repeat center top;
	background-size: 200px auto;
	color: #55a536;
}

#sidebar #nagoyaBnr a {
	padding: 10px 0 0;
	background: #fff url(../sidebar_img/nagoya_bg.jpg) no-repeat center;
	background-size: 200px auto;
	color: #000;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1;
	text-align: center;
	text-shadow: 0 0 3px #fff; 
}
#sidebar #nagoyaBnr span {
	display: inline-block;
	margin: 0 0 5px;
	padding: 4px;
	background-color: rgba(255, 255, 255, .8);
	color: #000;
	font-weight: 700;
	font-size: 1.4rem;
}
#sidebar #nagoyaBnr a:hover,
#sidebar #nagoyaBnr a:active {
	background: #fff url(../sidebar_img/nagoya_bg.jpg) no-repeat center;
	background-size: 300px auto;
}

#sidebar #recruitBnr a {
	padding: 20px 0 0 70px;
	background: #fff url(../sidebar_img/recruit_bg.png) no-repeat 5px 20px;
	background-size: 55px auto;
	color: #00784a;
	font-weight: 700;
	font-size: 3.0rem;
	line-height: 1;
}
#sidebar #recruitBnr span {
	display: block;
	margin: 0 0 5px;
	color: #000;
	font-size: 1.2rem;
	letter-spacing: 0;
}
#sidebar #recruitBnr a:hover,
#sidebar #recruitBnr a:active {
	background: #f6f6f6 url(../sidebar_img/recruit_bg.png) no-repeat 5px 10px;
	background-size: 55px auto;
}

#sidebar aside .bnr {
	margin: 0 0 5px;
}
#sidebar aside .bnr a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	padding: 0;
	border: none;
	color: #fff;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	line-height: 1;
}
#sidebar #twitterBnr a {
	background: #000000;
}
#sidebar #facebookBnr a {
	background: #3b5998;
}
#sidebar #facebookBnr a img,  #sidebar #twitterBnr a img{
	margin: 0 7px 0 0;
}
#sidebar #instagramBnr a {
	background: #125688;
}
#sidebar #instagramBnr a img {
	margin: 0 7px 0 0;
}

#sidebar #mercariBnr a {
	background: #00a0e9;
}

#sidebar #mercariBnr a img {
	margin: 0 7px 0 0;
}

#sidebarBlog {
	margin: 0 0 20px;
}
#sidebarBlog dt {
	margin: 0 0 5px;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-size: 12px;
}
#sidebarBlog dd {
	margin: 0 0 5px;
}



/* footer
================================================================================*/
footer {
	position: relative;
	margin: 0;
	padding: 0;
	background: #eaf2f0 url("../footer_img/bg.png") repeat-x center top;
}
footer #footerArea {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 960px;
	margin: 0 auto;
	padding: 180px 0 15px;
	font-size: 1.2rem;
	letter-spacing: 0;
}
footer #footerInfo {
	width: 300px;
	padding: 10px;
	background: #fff;
	text-align: center;
	border-radius: 8px;
}
footer #footerInfo h2 {
	margin: 0 auto 10px;
}
footer #footerInfo p {
	margin: 5px auto 0;
	text-align: center;
}
footer #nav {
	width: 630px;
}
footer nav {
	margin: 0 0 20px;
}
footer nav a:link, footer Nav a:visited { color: #000; text-decoration: none; }
footer nav a:hover, footer Nav a:active { color: #000; text-decoration: underline; }

footer nav > ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-item: flex-start;
	width: 630px;
}
footer nav > ul > li {
	width: 190px;
	margin: 0;
	padding: 0;
}
footer nav > ul > li section {
	margin: 0 0 10px;
	border-top: 1px dashed #aaa;
}
footer nav > ul > li section:last-of-type {
	padding: 0 0 10px;
	border-bottom: 1px dashed #aaa;
}
footer nav > ul > li h3 {
	margin: 0 0 10px;
	padding: 10px 0 0;
	color: #000;
	font-family: "游明朝","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-weight: 700;
	font-size: 1.4rem;
}
footer nav > ul > li h3 a { 
	font-weight:700;
}
footer nav > ul > li ul {
	margin: 0 0 10px;
	padding: 0 0 0 10px;
}
footer nav > ul > li ul li {
	margin: 0 0 2px;
}
footer small#copyright {
	display: block;
	margin: 10px 0 0;
	text-align: right;
	color: #00693e;
}

/* スマホ固定フッターボタン
------------------------------------------------*/
@media(min-width: 641px){
.footer_fixed{
	display: none;
}
}

/* pagetop
------------------------------------------------*/
.pagetop {
	z-index: 100;
	display: none;
	position: fixed;
	bottom: 40px;
	right: 50px;
	margin: 0;
	font-size: 1.2rem;
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
	background-color: rgba(0, 0, 0, .8);
	color: #fff;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	border-radius: 4px;
}
.pagetop a:hover, .pagetop a:active {
	opacity: 0.7;
}
