@charset "UTF-8";
/* ==================================================================

  VIEW

=====================================================================*/

.view__pc {
	display: block !important;
}

@media only screen and (max-width: 767px) {
	.view__pc {
		display: none !important;
	}
}

.view__sp {
	display: none !important;
}

@media only screen and (max-width: 767px) {
	.view__sp {
		display: block !important;
	}
}

.view__pc_inline {
	display: inline-block !important;
}

@media only screen and (max-width: 767px) {
	.view__pc_inline {
		display: none !important;
	}
}

.view__sp_inline {
	display: none !important;
}

@media only screen and (max-width: 767px) {
	.view__sp_inline {
		display: inline-block !important;
	}
}

/* ==================================================================

  GENERAL

=====================================================================*/
/* box-sizing（全ての要素に適用）
-----------------------------------*/

*,
*:before,
*:after {
	box-sizing: border-box;
}

/* image
-----------------------------------*/

img {
	max-width: 100%;
	width: auto\9;
	height: auto\9;
}

/* anchor
-----------------------------------*/

a {
	color: #ac6712;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

a:link {
	color: #0057a8;
	text-decoration: none;
}

a:visited {
	color: #609;
	text-decoration: none;
}

a:hover {
	color: #0057a8;
	text-decoration: underline;
}

li {
	list-style: none;
}

figure {
	text-align: center;
}

/* others
-----------------------------------*/

sup {
	vertical-align: super;
	font-size: smaller;
	line-height: 1;
}

/* ==================================================================

  ELEMENTS

=====================================================================*/
/* cmnHeadlineType
-----------------------------------*/
/* .cmnAnchorLinkType
-----------------------------------*/
/* .cmnBtnType
-----------------------------------*/
/* .cmnTableType
-----------------------------------*/
/* ==================================================================

  FRAME

=====================================================================*/

html {
	font-size: 62.5%;
	/*ベースを10pxに設定*/

	-webkit-text-size-adjust: 100%;
	/*文字サイズの自動調整を無効化*/

	-webkit-font-smoothing: antialiased;
}

body {
	font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino KakuGothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 1.6em;
	color: #313131;
	width: 100%;
	height: auto;
	min-width: 1000px;
}

@media only screen and (max-width: 640px) {
	body {
		min-width: 100%;
		overflow-x: hidden;
	}
}

.contentsInner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

@media only screen and (max-width: 640px) {
	.contentsInner {
		width: 100%;
	}
}

/* ==================================================================

  HEADER

=====================================================================*/

header {
	padding-top: 20px;
	/*padding-bottom: 20px;*/
	border-bottom: 1px solid #d9d9d9;
}

@media only screen and (max-width: 640px) {
	header {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

header h1 {
	color: #828282;
	/*ベースを10pxに設定*/

	font-size: 11px;
	font-size: 1.1rem;
	margin-bottom: 10px;
}

@media only screen and (max-width: 640px) {
	header .siteLogo {
		width: 138px;
		margin-left: 10px;
	}
}

header .hour {
	position: absolute;
	top: 10px;
	right: 180px;
}

header .dial {
	position: absolute;
	top: 10px;
	right: 0;
}

header .globalNav {
	position: absolute;
	bottom: 0;
	right: 0;
}

header .globalNav li {
	display: inline-block;
	background-image: url(../images/common/icon_arrow_or.gif);
	background-position: 0 9px;
	background-repeat: no-repeat;
	padding-left: 10px;
}

header .globalNav li a {
	/*ベースを10pxに設定*/

	font-size: 12px;
	font-size: 1.2rem;
}

header .breadList {
	border-top: 1px solid #dadada;
	padding-top: 5px;
	padding-top: 3px;
	margin-top: 10px;
}

header .breadList li {
	display: inline-block;
	/*ベースを10pxに設定*/

	font-size: 12px;
	font-size: 1.2rem;
	padding-left: 3px;
}

header .breadList li:before {
	content: ">";
	display: inline-block;
	padding-right: 3px;
}

header .breadList li:first-child:before {
	content: "";
}

/* ==================================================================

  CONTENTS(MODULES)

=====================================================================*/
/* ==================================================================

  FOOTER

=====================================================================*/

footer {
	text-align: center;
	background: #f0f0f0;
	padding-top: 20px;
	padding-bottom: 20px;
	/*ベースを10pxに設定*/

	font-size: 12px;
	font-size: 1.2rem;
}

@media only screen and (max-width: 640px) {
	footer {
		padding-bottom: 100px;
	}
}

footer .logo {
	width: 60px;
	margin: 0 auto;
	margin-bottom: 10px;
}

@media only screen and (max-width: 640px) {
	footer .logo {
		width: 44px;
	}
}

footer .companyName {
	display: inline-block;
	/*ベースを10pxに設定*/

	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	margin-right: 10px;
}

@media only screen and (max-width: 640px) {
	footer .companyName {
		font-weight: normal;
	}
}

footer .address {
	display: inline-block;
}

@media only screen and (max-width: 640px) {
	footer .address {
		margin-bottom: 10px;
	}
}

footer .copyRight {
	margin-top: 20px;
}