@charset "UTF-8";

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

 common.css
 
 Copyright (C) SATOBLDG.

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

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

/* body
================================================================================*/

/* header
================================================================================*/
#globalHeader {
	position: relative;
	width: 830px;
	height: 104px;
	margin: 0 auto;
	padding: 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
#globalHeader .logo {
	position: absolute;
	top: 24px;
	right: 40px;
}

/* main
================================================================================*/
#main {
	width: 830px;
	margin: 20px auto 0;
	padding: 20px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

/* footer
================================================================================*/
#globalFooter {
	position: relative;
	width: 830px;
	height: 104px;
	margin: 0 auto;
	padding: 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
#globalFooter .logo {
	position: absolute;
	top: 24px;
	right: 40px;
}

/* 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, 1);
	color: #fff;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
}
.pagetop a:hover, .pagetop a:active {
	background-color: rgba(0, 0, 0, .7);
}

/* content
================================================================================*/
/* flexbox
------------------------------------------------*/
.flexbox {
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
  -ms-flex-pack: justify;    /*IE10*/
  -webkit-justify-content: space-between; /*PC-Safari,iOS8.4*/
	justify-content: space-between;
	margin: 0 0 30px;
}

/* area
------------------------------------------------*/
.areaA {
	margin: 0 0 50px;
	padding: 20px 10px 0 40px;
	border-top: 1px solid #000;
}
.areaB {
	margin: 0 0 18px;
	padding: 18px 10px 0;
	border-top: 1px dotted #000;
}

/* col
------------------------------------------------*/
.col {
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  display: flex;
	-ms-flex-pack: justify; /*IE10*/
	-webkit-justify-content: space-between; /*PC-Safari,iOS8.4*/
	justify-content: space-between;
	list-style: none;
	width: 810px;
	margin: 0;
	padding: 0;
}
.col li {
	margin: 0;
	padding: 0;
}
.col3 li {
	width: 260px;
}


.col2 li.large {
	width: 535px;
}

/* h
------------------------------------------------*/
.areaA h2 {
	margin: 0 0 50px;
	font-size: 3.0rem;
}
.areaA h2 .shoulder {
	display: block;
	margin: 0 0 10px;
	font-size: 1.6rem;
}

/* p
------------------------------------------------*/
.strong {
	margin: 0 0 50px;
	font-size: 2.2rem;
}

/* span
------------------------------------------------*/
.satobldg {
	letter-spacing: .3em;
}

/* button
------------------------------------------------*/
.btn a {
	display: inline-block;
	padding: 0 20px;
  background: #000;
	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: #555;
}
.btn.btnBlock a {
	display: block;
	padding: 30px;
	font-size: 2.4rem;
}

/* induce
------------------------------------------------*/
.induce {
	padding: 5px 0 5px 20px;
	background: url(/common_img/arrow.gif) no-repeat left center;
	background-size: 5px 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; }


