@charset "utf-8";
/* ==========================================================================
   $2. Layout
   ========================================================================== */
/**
 * break points [mobile first]
 * (max-width: 35em  ･･･ スマホ縦)
 *  max-width: 40em  ･･･ スマホ
 *  min-width: 40.0625em  ･･･ タブレット
 *  min-width: 60.0625em  ･･･ デスクトップ
 */

/* ==========================================================================
   $3-1. Object -- Project
   ========================================================================== */
/**
 * プロジェクト内の固有スタイル
 */

/* Base Font size ･･･ 14/16px) */
html { font-size: 62.5%;}
body {
	background: #fff;
	color: #333;
	font: 1.4em/1.714 Roboto, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	letter-spacing: .025em;
}

/* Link Colors */
a {
	color: #015db2;
	text-decoration: none;
	word-break: break-all;
	-webkit-transition: color .3s, background .3s;
	transition: color .3s, background .3s;
	/*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
}
a:hover { text-decoration: underline; transform: none;}
a.nolink { color: inherit;}


/* ----------------------------------
   コンテナ
   ---------------------------------- */
.header,
.wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.wrapper:before,
.wrapper:after { content: ""; display: table;}
.wrapper:after { clear: both;}

.content-body {
	overflow: hidden;
	padding-right: 16px;
	padding-left: 16px;
}

/* 別ウィンドウ用 */
.window-header { padding: 8px 16px;}
.window-header .icon-logo { font-size: 24px;}
.window-close { position: absolute; right: 16px; top: 8px;}
.window-close a { margin: 0;}
.window-header a { text-decoration: none;}
.window-footer { padding: 4px 16px;}

@media print, (min-width:60.0625em) {
	.header,
	.wrapper {
		max-width: 1200px;
		min-width: 960px;
	}
	.wrapper-inner {
		max-width: 900px;
		margin: 0 auto;
	}
	.main {
		float: right;
		width: 75%;
	}
	.sidebar {
		float: left;
		width: 23%;
	}
	.content-body { margin-bottom: 120px;}
	.window-header { padding: 16px;}
}
@media print {
	.content-body {
		overflow: auto;
		padding-right: 0;
		padding-left: 0;
	}
}

/* ----------------------------------
   ヘッダー
   ---------------------------------- */
.header {
	height: 40px;
	padding: 10px 16px;
}
.header__nav { display: none;}

/* サイト名 */
.header__logo {
	width: 110px;
	margin: 0 auto;
}
.header__logo a { display: block;}

.header__nav .snav,
.header__nav .snav-list__2nd { display: none;}

@media screen and (max-width:60em) {
	.header__nav {
		position: absolute;
		left: 0;
		top: 40px;
		z-index: 999;
		width: 100%;
		background: #f2f2f2;
		background: rgba(245,245,245,.95);
		box-shadow: 0 8px 10px -2px rgba(0,0,0,.35);
	}

	/* ヘッダーナビゲーション */
	.header__nav li a {
		display: block;
		width: 100%;
		padding: 10px 16px;
		color: #333;
		font-weight: bold;
		text-decoration: none;
	}
	.header__nav li { border-top: 1px solid #ccc;}
	.header__nav li li { border-top: none;}
	.header__nav .snav { margin-bottom: 8px;}
	.header__nav .snav a {
		padding: 6px 16px 6px 30px;
		font-size: 1.3rem;
		font-weight: normal;
	}
	.csstransforms .header__nav .nav-title {
		position: relative;
	}
	.csstransforms .header__nav .snav-toggle:after {
		display: block;
		content: "";
		position: absolute;
		right: 10px;
		top: 50%;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 2px solid #ccc;
		border-right: 2px solid #ccc;
		-webkit-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.csstransforms .header__nav .snav-toggle.is-opened:after {
		border-color: #999;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/* トリガーアイコン */
	.drawer-toggle {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 40px;
		height: 40px;
		padding: 0;
		background: rgba(255,255,255,.75);
		border: 0;
		border-radius: 0;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
		outline: none;
	}

	.drawer-toggle__icon {
		display: block;
		position: relative;
		margin: 0 auto;
	}
	.drawer-toggle__icon,
	.drawer-toggle__icon:after,
	.drawer-toggle__icon:before { width: 24px; height: 3px; background-color:#2370cf; border-radius: 1px; -webkit-transition: all .4s cubic-bezier(.19,1,.22,1); transition:all .4s cubic-bezier(.19,1,.22,1)}
	.drawer-toggle__icon:after,
	.drawer-toggle__icon:before{ display:block; content:""; position:absolute; left:0;}
	.drawer-toggle__icon:before { top: -6px;}
	.drawer-toggle__icon:after { top: 6px;}
	.drawer-toggle.is-opened { background-color: #2370cf;}
	.is-opened .drawer-toggle__icon { background-color: transparent;}
	.is-opened .drawer-toggle__icon:after,
	.is-opened .drawer-toggle__icon:before { top: 0; background-color: #fff;}
	.is-opened .drawer-toggle__icon:before { -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg)}
	.is-opened .drawer-toggle__icon:after { -webkit-transform:rotate(-45deg); -ms-transform:rotate(-45deg); transform:rotate(-45deg)}
}
@media print, (min-width:60.0625em) {
	.header {
		height: auto;
		padding: 0;
	}

	/* サイト名 */
	.header__logo {
		display: table;
		position: absolute;
		left: 0;
		top: 0;
		width: 18%;
		height: 70px;
		margin: 0;
	}
	.header__logo:before {
		display: inline-block;
		content: "";
		height: 100%;
		min-height: 70px;
		vertical-align: middle;
	}
	.header__logo span,
	.header__logo a {
		display: inline-block;
		width: 100%;
		vertical-align: middle;
		text-align: center;
	}

	/* ヘッダーナビゲーション */
	.header__nav {
		display: block;
		position: static;
		padding-left: 16%;
	}
	.header__nav ul:after {
		display: table;
		content: "";
		clear: both;
	}
	.header__nav li {
		float: left;
		width: 13.5%;
		white-space: nowrap;
	}
	.header__nav li a {
		display: block;
		overflow: hidden;
		width: 100%;
		height: 70px;
		line-height: 72px;
		font-size: 12px;
		font-size: 1.2rem;
		font-weight: normal;
		text-align: center;
		text-decoration: none;
	}
	.header__nav li a:hover {
		background: #e5e5e5;
	}
	.header__nav .cr a {
		background: #015db2 !important;
		color: #fff !important;
	}
	.drawer-toggle { display: none;}
}


/* ----------------------------------
   コンテンツ
   ---------------------------------- */
.content { border-top: 1px solid #ccc;}

/* ページビジュアル
   ---------------------------------- */
.page-visual {
	overflow: hidden;
	background: #f2f2f2;
	border-bottom: 1px solid #ccc;
}
.page-visual__body {
	position: relative;
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
}
.page-visual__body > span {
	position: relative;
	z-index: 2;
}

.introduction .page-visual__body:after { background-image: url(../img/visual-intro.jpg);}
.company .page-visual__body:after { background-image: url(../img/visual-company.jpg);}
.product .page-visual__body:after { background-image: url(../img/visual-product.jpg);}

@media screen and (max-width:60em) {
	.page-visual__body {
		overflow: hidden;
		z-index: 0;
	}
	.page-visual__body:after {
		display: block;
		content: "";
		background-position: center center;
		background-size: 120%;
		-webkit-filter: blur(4px);
		-moz-filter: blur(4px);
		-ms-filter: blur(4px);
		filter: blur(4px);
		position: absolute;
		top: -4px;
		left: -4px;
		right: -4px;
		bottom: -4px;
		z-index: -1;
	}
	.page-visual__body > span {
		display: block;
		width: 100%;
		height: 100%;
		padding: 5vw;
		background: rgba(0,0,0,.5);
	}

}
@media print, (min-width:60.0625em) {
	.page-visual { margin-bottom: 20px;}
	.page-visual__body {
		display: table;
		width: 100%;
		height: 130px;
		min-width: 1000px;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2%;
		color: #000;
		font-size: 30px;
		font-size: 3rem;
		letter-spacing: 0;
		text-align: left;
	}
	.page-visual__body:before {
		display: inline-block;
		content: "";
		height: 130px;
		vertical-align: middle;
	}
	.page-visual__body:after {
		display: block;
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 125%;
	}
	.page-visual__body:after {
		background-position: right center;
		background-size: auto;
	}
	.page-visual__body > span {
		display: inline-block;
		padding: 10px;
		vertical-align: middle;
	}
}

/* パンくずリスト
   ---------------------------------- */
.breadcrumbs { display: none;}

@media print, (min-width:40em) {
	.breadcrumbs {
		display: block;
		margin-top: 10px;
		font-size: 11px;
		font-size: 1.1rem;
	}
	.breadcrumbs ol {
		list-style: none;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0;
	}
	.breadcrumbs li {
		display: inline-block;
		position: relative;
	}
	.breadcrumbs a,
	.breadcrumbs strong {
		display: inline-block;
		padding: 5px 0;
		vertical-align: middle;
	}
	.breadcrumbs li + li:before {
		display: inline-block;
		content: "\203A";
		margin-right: .5em;
		vertical-align: middle;
	}
	.breadcrumbs strong { font-weight: normal;}
}
@media (min-width:40.0625em) and (max-width:60em) {
	.breadcrumbs {
		overflow: hidden;
		border-bottom: 1px solid #d2d2d4;
		margin: 0 -20px 20px -20px;
		font-size: 12px;
		font-size: 1.2rem;
	}
	.breadcrumbs ol { padding: 0 20px;}
	.csstransforms .breadcrumbs li + li { padding-left: 20px;}
	.csstransforms .breadcrumbs li + li:before {
		content: "";
		position: absolute;
		left: 6px;
		top: 50%;
		width: 1px;
		height: 50%;
		margin-right: 0;
		border-left: 1px solid #d2d2d4;
		-webkit-transform: skewX(-25deg);
		-ms-transform: skewX(-25deg);
		transform: skewX(-25deg);
	}
	.csstransforms .breadcrumbs li + li:after {
		display: block;
		content: "";
		position: absolute;
		left: 6px;
		top: 0;
		width: 1px;
		height: 50%;
		border-left: 1px solid #d2d2d4;
		-webkit-transform: skewX(25deg);
		-ms-transform: skewX(25deg);
		transform: skewX(25deg);
	}
	.breadcrumbs strong {
		max-width: 400px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	.breadcrumbs a { color: inherit;}
}

/* ページタイトル
   ---------------------------------- */
.page-title {
	position: relative;
	line-height: 1.33;
	margin: 0 -16px 16px;
	padding: 16px 10px;
	background: #f5f5f5;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 16px;
	font-size: 1.6rem;
}
.page-title small {
	position: relative;
	top: -1px;
	color: #808080;
	font-size: 14px;
	font-size: 1.4rem;
}
@media (min-width:40.0625em) {
	.page-title {
		margin: 0 0 20px;
		padding: 26px 15px;
		border: 1px solid #ccc;
		font-size: 20px;
		font-size: 2rem;
	}
	.page-title small {
		font-size: 15px;
		font-size: 1.5rem;
	}
}
@media print, (min-width:60.0625em) {
	.page-title {
		margin: 0 0 30px;
		padding: 36px 15px;
	}
}


/* メイン
   ---------------------------------- */
/* セクション間隔 */
.section ~ .section { margin-top: 60px;}

/* セクション見出し */
.heading {
	margin-bottom: 30px;
	font-kerning: normal;
	letter-spacing: .1em;
}
.heading__title {
	line-height: 1.38;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 900;
	text-align: center;
}
.heading__lead {
	line-height: 1.5;
	margin: 1em 0;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}
@media print, (min-width:40.0625em) {
	.heading {
		margin-bottom: 40px;
		text-align: center;
	}
	.heading__title {
		font-size: 35px;
		font-size: 3.5rem;
	}
	.heading__lead {
		font-size: 20px;
		font-size: 2rem;
	}
}

/* 本文見出し */
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	font-size: inherit;
}
.h1,.h2,.h3 {
	text-transform: none;
}
/* @note: line-heightをremで指定するとIEで崩れる */
.h1 {
	margin-bottom: 10px;
	line-height: 1.3;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}
.h2 {
	margin-top: 2em;
	margin-bottom: 10px;
	line-height: 1.3;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}
.h3 {
	line-height: 1.66;
	margin-top: 1.5em;
	margin-bottom: 4px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
.h4 {
	line-height: 1.33;
	margin: 1.2em 0 4px;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}
.h2.colored,
.h3.colored,
.h4.colored {
	color: #2991e2;
}
.lead {
	line-height: 1.66;
	margin-bottom: 10px;
	color: #4d4d4d;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}
@media print, (min-width:40.0625em) {
	.h1 {
		margin-bottom: 16px;
		font-size: 30px;
		font-size: 3rem;
	}
	.h2 {
		margin-bottom: 16px;
		font-size: 25px;
		font-size: 2.5rem;
	}
	.h3 {
		margin-bottom: 8px;
		font-size: 22px;
		font-size: 2.2rem;
	}
	.h4,
	.lead {
		font-size: 18px;
		font-size: 1.8rem;
	}
}


/* リンク格納ボックス */
.link-box {
	margin-top: 60px;
	margin-right: -16px;
	margin-left: -16px;
	padding: 20px;
	background: url(../img/bg-link.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
}
.link-box__title,
.link-box__link {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}
.link-box__link {
	display: block;
	position: relative;
	width: 90%;
	max-width: 500px;
	height: 70px;
	margin: 20px auto 0 auto;
	background: #f2f2f2;
	text-decoration: none;
}
.link-box__link:before {
	display: inline-block;
	content: "";
	height: 100%;
	vertical-align: middle;
}
.link-box__link:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50%;
	background: #fff;
}
.link-box__link span {
	display: inline-block;
	position: relative;
	z-index: 1;
	vertical-align: middle;
}
.link-box__link i {
	position: relative;
	top: -1px;
	font-size: 20px;
	vertical-align: middle;
}
.link-box__link:hover { background: #fff;}

.water .link-box__link { color: #f7931e;}
.construction .link-box__link { color: #2991e2;}

@media print, (min-width:60.0625em) {
	.link-box {
		margin-right: 0;
		margin-left: 0;
		page-break-inside: avoid;
	}
	.link-box__title,
	.link-box__link {
		font-size: 18px;
		font-size: 1.8rem;
	}
	.link-box__link i { font-size: 24px;}
}


/* ----------------------------------
   サイドバー
   ---------------------------------- */
.sidebar { margin: 60px -16px 0;}

/* サイドバータイトル */
.snav-title {
	line-height: 1.5;
	padding: 10px 16px;
	background: #015db2;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
}
.snav-title a { color: #fff;}

/* サイト内検索 */
.sidebar__search {
	padding: 25px 35px;
	background: #679ed1;
}
.search__inner {
	position: relative;
	max-width: 300px;
	margin: 0 auto;
}
.search__field {
	width: 100%;
	height: 40px;
	padding: 8px;
	/*background: #ccdff0;*/
	border: none;
	font-size: 16px;
	font-size: 1.6rem;
	outline: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.search__field:focus {
	background: #fff;
}
.search__btn {
	position: absolute;
	right: 0px;
	top: 1px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	background: transparent;
	border: none;
	color: #015db2;
	font-size: 20px;
	cursor: pointer;
	outline: none;
}
.search__btn:active {
	background: #015db2;
	color: #fff;
}
.search--404 {
	background: #b3d3e9;
}
.search--404 .search__field {
	max-width: 400px;
	height: 40px;
	padding: 8px;
}
.search--404 .search__btn {
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
}

/* Google カスタム検索 カスタマイズ */
.gsc-search-box { margin: 0;}
.main .gsc-control-cse { padding: 0;}
.main .gsc-webResult.gsc-result { margin: 0; padding: 10px;}
.main .gsc-table-cell-thumbnail { padding: 0 6px 0 0;}
.main .gs-result .gs-snippet { margin-top: .5em; font-size: 13px; font-size: 1.3rem; line-height: 1.33;}
.main .gsc-results .gsc-cursor-box .gsc-cursor-page { display: inline-block; min-width: 24px; height: 24px; line-height: 24px; margin: 0 .1em; border-radius: 4px; background: #eee; color: #666; text-align: center; text-decoration: none;}
.main .gsc-results .gsc-cursor-box .gsc-cursor-current-page { border-color: #015DB2; background-color: #015DB2; color: #fff;}
.main .gsc-tabHeader { border-radius: 3px 3px 0 0; vertical-align: top;}
.main .gsc-tabHeader.gsc-tabhInactive { background: #fff; color: #666;}
.main .gsc-tabhActive { font-weight: bold;}
.gsc-orderby .gsc-selected-option, .gsc-orderby .gsc-option { white-space: nowrap;}

/* サポート・お問い合わせ */
a.sidebar__support {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 8px auto;
	padding: 12px;
	color: #015db2;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: all .2s;
}
a.sidebar__support .icon-mail {
	display: inline-block;
	content: "";
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin: 0 10px 0 0;
	border-radius: 50%;
	background: #015db2;
	color: #fff;
	font-size: 24px;
	text-align: center;
	vertical-align: middle;
}
a.sidebar__support:hover { opacity: .75;}

@media print, (min-width:40.0625em) {
	a.sidebar__support {
		margin: 16px auto;
		background: #015db2;
		color: #fff;
	}
	a.sidebar__support .icon-mail {
		background: #fff;
		color: #015db2;
	}
}
@media print, (min-width:60.0625em) {
	.sidebar { margin: 0;}
	.snav-title {
		position: relative;
		margin: 0;
		padding: 18px 10px;
		background: #f5f5f5;
		border: 1px solid #ccc;
		color: #333;
	}
	.snav-title a { color: #333;}

	/* サイト内検索 */
	.snav-list + .sidebar__search { margin-top: 30px;}
	.search__field { height: 20px;}
	.search__btn {
		width: 20px;
		height: 20px;
		line-height: 20px;
		font-size: 18px;
	}

	/* サポート・お問い合わせ */
	a.sidebar__support {
		width: 100%;
		margin: 0;
		font-size: 11px;
		font-size: 1.1rem;
		font-weight: normal;
	}
	a.sidebar__support .icon-mail {
		display: block;
		margin: 0 auto 6px;
	}
}

/* サイドバーナビ
   ---------------------------------- */
.sidebar .snav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar .snav-list > li {
	border-bottom: 1px solid #ccc;
}
.sidebar .snav-list a {
	display: block;
	padding: 10px 16px;
	color: #333;
	text-decoration: none;
}
/* 次階層 */
.sidebar .snav-list__2nd { display: none;}
.sidebar .cr .snav-list__2nd { display: block;}

@media screen and (max-width:60em) {
	.sidebar .snav-list > li { background: #f0f0f0;}
	/* 次階層 */
	.sidebar .snav-list__2nd {
		list-style: none;
		margin: 0;
		padding: 0;
		background: #fff;
	}
	.sidebar .snav-list__2nd > li {
		border-top: 1px solid #e6e6e6;
	}
	.sidebar .snav-list__2nd a {
		padding: 8px 16px 8px 28px;
	}
	.csstransforms .sidebar .snav-list a {
		position: relative;
		padding-right: 20px;
	}
	.csstransforms .sidebar .snav-list a:before {
		display: block;
		content: "";
		position: absolute;
		right: 12px;
		top: 50%;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 2px solid #aaa;
		border-right: 2px solid #aaa;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
@media print, (min-width:60.0625em) {
	.sidebar .snav-list > li {
		width: 100%;
		margin-top: -1px;
		border: 1px solid #ccc;
	}
	.sidebar .snav-list > li:before {
		display: inline-block;
		content: "";
		height: 100%;
		min-height: 60px;
		vertical-align: middle;
	}
	.sidebar .snav-list a {
		display: inline-block;
		width: 100%;
		line-height: 1.2;
		padding: 10px 16px 10px 20px;
		border: none;
		font-size: 15px;
		font-size: 1.5rem;
		vertical-align: middle;
	}
	.sidebar .snav-list a:hover {
		color: #015db2;
	}
	.sidebar .snav-list .cr {
		background: #015db2;
		color: #fff;
	}
	.sidebar .snav-list .cr > a {
		color: #fff;
		-webkit-transition: none;
		transition: none;
	}
	.sidebar .snav-list .snav-top { display: none;}

	/* 次階層 */
	.sidebar .snav-list__2nd {
		padding: 15px 10px 15px 34px;
		background: #f2f2f2;
		color: #015db2;
	}
	.sidebar .snav-list__2nd a {
		padding: 5px;
		color: #015db2;
	}
}
@media print {
	.sidebar .snav-list > li:before { display: none;}
}


/* ----------------------------------
   フッター
   ---------------------------------- */
.footer {
	position: relative;
	padding-bottom: 10px;
	text-align: center;
}

/* ページトップに戻る */
.pagetop {
	display: none;
	background: #4e8fc9;
	background: rgba(1,93,178,.7);
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	cursor: pointer;
}
.pagetop:hover { background: rgba(1,93,178,.5);}
.pagetop a {
	display: block;
	color: #fff;
	text-decoration: none;
}
.pagetop a:before {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border: 4px solid rgba(0,0,0,0);
	border-bottom: 5px solid #fff;
	border-top: none;
}

@media print, (min-width:40.0625em) {
	.footer { padding: 0 16px 20px;}
}
@media screen and (max-width:60em) {
	.pagetop a {
		position: relative;
		padding: 12px 8px;
	}
	.pagetop a:before {
		margin-right: 6px;
		vertical-align: middle;
	}
}
@media print, (min-width:60.0625em) {
	.footer {
		font-size: 12px;
		font-size: 1.2rem;
		text-align: left;
	}
	.pagetop {
		display: none;
		overflow: hidden;
		position: fixed;
		right: 1%;
		bottom: 80px;
		z-index: 900;
		width: 100px;
		height: 100px;
		border-radius: 50%;
	}
	.pagetop a {
		display: block;
		position: relative;
		width: 100px;
		height: 100px;
		padding: 40px 0 0;
		border-radius: 50%;
		font-weight: bold;
		vertical-align: middle;
	}
	.pagetop a:before {
		position: absolute;
		top: 30px;
		left: 50%;
		margin-left: -4px;
	}
}

/* フッターナビゲーション */
.footer__nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer__nav a { display: block;}

@media screen and (max-width:40em) {
	.footer__nav {
		margin-bottom: 10px;
		border-bottom: 1px solid #ccc;
		font-size: 12px;
		font-size: 1.2rem;
		font-weight: bold;
	}
	.footer__nav:before,
	.footer__nav:after { content: ""; display: table;}
	.footer__nav:after { clear: both;}
	.footer__nav > li {
		float: left;
		width: 50%;
		border-top: 1px solid #ccc;
	}
	.footer__nav > li:nth-child(odd) { box-shadow: 1px 0 0 #ccc;}
	/*.footer__nav > li:last-of-type {
		clear: both;
		width: 100%;
		box-shadow: none;
	}*/
	.footer__nav a {
		padding: 8px;
		text-decoration: none;
	}
}
@media print, (min-width:40.0625em) {
	.footer__nav { padding: 10px 0;}
	.footer__nav > li {
		display: inline-block;
		margin-right: 6px;
	}
	.footer__nav a {
		display: block;
		padding: 6px 2px;
	}
	.select-lang { top: 6px;}
}

/* 言語選択 */
.langList {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen and (max-width:60em) {
	.select-lang { margin: 10px 0;}
	.select-lang dt,
	.select-lang dd {
		display: inline-block;
		margin: 0;
	}
	.select-lang dt:after { content: "\205A";}
	.langList > li { display: inline;}
	.langList a,
	.langList span {
		display: inline-block;
		vertical-align: middle;
	}
	.langList > li + li:before {
		display: inline-block;
		content: "";
		width: 1px;
		height: 1em;
		margin: 0 .5em;
		background: #aaa;
		vertical-align: middle;
	}
}
@media print, (min-width:60.0625em) {
	.select-lang {
		display: inline-block;
		position: absolute;
		right: 0px;
		top: 16px;
		z-index: 1;
		width: 90px;
		line-height: 1.2;
		background: #f7931e;
		color: #fff;
	}
	.select-lang:before {
		display: block;
		content: "";
		position: absolute;
		top: 8px;
		right: 6px;
		width: 0;
		height: 0;
		border: 3px solid rgba(0,0,0,0);
		border-top: 5px solid #fff;
		border-bottom: none;
	}
	.select-lang {
		margin: 0;
		text-align: left;
	}
	.select-lang dt {
		margin: 0;
		padding: 4px 8px;
	}
	.select-lang dd {
		display: none;
		margin: 0;
	}
	.langList a,
	.langList span {
		display: block;
		padding: 4px 8px;
		color: #fff;
	}
	.langList span {
		color: rgba(255,255,255,.5);
		font-weight: bold;
	}
}

/* 最下段 */
.footer__logo { padding: 10px;}
.address__row {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
}
.copyright {
	margin-top: 10px;
	font-size: 10px;
	font-size: 1rem;
}
@media print, (min-width:40.0625em) {
	.address__row {
		display: inline-block;
		margin-right: 1em;
	}
}
@media screen and (min-width:60.0625em) {
	.footer__logo {
		float: left;
		margin-right: 30px;
		padding: 0;
	}
	.footer .copyright {
		position: absolute;
		right: 0;
		bottom: 2px;
		font-size: 7px;
		font-size: .7rem;
	}
}
@media print {
	.pagetop,
	.select-lang { display: none !important;}
	.footer__logo {
		float: left;
		margin-right: 20px;
		padding: 0;
	}
	.copyright { position: static;}
}


/* ==========================================================================
   $3-2. Object -- Component
   ========================================================================== */
/**
 * 再利用可能なパーツ群
 */

/* 本文内レイアウト
   ---------------------------------- */
/* コーナートップページ */
.index-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.index-list:before,
.index-list:after { content: ""; display: table;}
.index-list:after { clear: both;}
.index-list a {
	display: block;
	position: relative;
	line-height: 1.5;
	height: 70px;
	margin: .5em 0;
	padding: 0 1em;
	border: 1px solid #015db2;
	color: #015db2;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.index-list a:before {
	display: inline-block;
	content: "";
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.no-touchevents .index-list span {
	display: inline-block;
	vertical-align: middle;
}

@media screen and (max-width:40em) {
	.csstransforms .index-list span:after {
		display: block;
		content: "";
		position: absolute;
		right: 10px;
		top: 50%;
		width: 8px;
		height: 8px;
		border-top: 2px solid #015db2;
		border-right: 2px solid #015db2;
		-webkit-transform: rotate(45deg) translate(-50%);
		-ms-transform: rotate(45deg) translate(-50%);
		transform: rotate(45deg) translate(-50%);
	}
}
@media print, (min-width:40.0625em) {
	.index-list {
		margin: 0 -.66%;
	}
	.index-list > li {
		float: left;
		width: 48.66%;
		margin: 0 .66%;
	}
}


/* 分割グリッド */
.grid:before,
.grid:after { content: ""; display: table;}
.grid:after { clear: both;}
.grid .grid__col { margin-bottom: 30px;}
.grid.grid.grid-4,
.grid.grid.grid-5 {
	clear: both;
	width: 104%;
	margin: 0 -2% 20px;
	*zoom: 1;
}
.grid.grid-4 .grid__col,
.grid.grid-5 .grid__col {
	float: left;
	width: 46%;
	margin: 0 2% 20px;
}

@media print, (min-width:40.0625em) {
	.grid {
		clear: both;
		width: 104%;
		margin: 0 -2% 30px;
		*zoom: 1;
	}
	.grid.grid-5 {
		width: 102%;
		margin: 0 -1% 30px;
	}
	.grid .grid__col {
		float: left;
		margin: 0 2%;
	}
	.grid.grid-2 .grid__col {
		width: 46%;
	}
	.grid.grid-3 .grid__col {
		width: 29.33%;
	}
	.grid.grid-4 .grid__col {
		width: 21%;
	}
	.grid.grid-5 .grid__col {
		width: 18%;
		margin: 0 1%;
	}
}

/* 画像+テキスト */
.image-set { margin-bottom: 20px;}
.image-set__image + .image-set__text,
.image-set__text + .image-set__image { margin-top: 10px;}
@media print, (min-width:40.0625em) {
	.image-set {
		clear: both;
		margin-bottom: 30px;
		*zoom: 1;
	}
	.image-set:before,
	.image-set:after { content: ""; display: table;}
	.image-set:after { clear: both;}
	.image-set__image,
	.image-set__text { margin-top: 0 !important;}
	.image-set__image { width: 36%;}
	.image-set__text { width: 61.33%; text-align: justify;}
	.image-set--l .image-set__image { float: left;}
	.image-set--l .image-set__text { float: right;}
	.image-set--r .image-set__image { float: right;}
	.image-set--r .image-set__text { float: left;}
}


/* 丸アイコン
   ---------------------------------- */
/* サイズ大 */
.csstransforms i.circle,
.csstransforms i.circle:after {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-indent: 0;
}
.csstransforms i.circle {
	position: relative;
	top: -2px;
	margin-right: 4px;
	background: #015db2;
	vertical-align: middle;
}
.csstransforms i.circle:after {
	content: "";
	background: rgba(255,255,255,.2);
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
}
.csstransforms .page-title { padding-left: 10px;}
.csstransforms .page-title i.circle { margin-right: 6px;}

@media print, (min-width:40.0625em) {
	.csstransforms i.circle,
	.csstransforms i.circle:after {
		width: 24px;
		height: 24px;
	}
	.csstransforms i.circle { margin-right: 6px;}
}
@media screen and (max-width:60em) {
	.csstransforms .snav-title i.circle { display: none;}
}
@media print, (min-width:60.0625em) {
	.csstransforms .snav-title { padding-left: 10px;}
	.csstransforms .page-title i.circle { margin-right: 10px;}
}

/* サイズ中 */
.point:before {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #015db2;
}
.point.point--t:before {
	display: block;
	margin: 0 auto 12px;
}
.point.point--l:before {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-right: 6px;
	vertical-align: middle;
}
@media print, (min-width:40.0625em) {
	.point:before {
		width: 20px;
		height: 20px;
	}
	.point.point--t:before { margin-bottom: 20px;}
	.point.point--l:before { margin-right: 8px;}
}

/* 丸アイコン色分け */
.csstransforms .construction i.circle,
.construction .point:before { background: #2991e2;}
.csstransforms .water i.circle,
.water .point:before { background: #f7931e;}

.square:before {
	content: "\25A0";
	font-style: normal;
}


/* フォントアイコン
   ---------------------------------- */
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?wvsfie');
  src:  url('../fonts/icomoon.eot?wvsfie#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?wvsfie') format('truetype'),
    url('../fonts/icomoon.woff?wvsfie') format('woff'),
    url('../fonts/icomoon.svg?wvsfie#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-logo { color: #015db2;}
.icon-logo:before { content: "\e900"; position: relative; top: -2px; vertical-align: middle;}
.icon-global:before { content: "\e903";}
.icon-search:before { content: "\e901";}
.icon-mail:before { content: "\e902";}
.icon-file-pdf:before { content: "\eadf";}
.icon-file-word:before { content: "\eae1";}
.icon-file-excel:before { content: "\eae2";}


/* ページネーション
   ---------------------------------- */
.pagination {
	position: relative;
	line-height: 1;
	margin: 2em 0;
	text-align: center;
}
.pagination:before,
.pagination:after { content: ""; display: table;}
.pagination:after { clear: both;}
.pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pagination li {
	display: inline-block;
	vertical-align: top;
}
.pagination .page,
.pagination .navi {
	display: inline-block;
	overflow: hidden;
	min-width: 34px;
	height: 34px;
	line-height: 34px;
	margin: 0 .1em;
	border-radius: 4px;
	font-weight: bold;
}
.pagination a.page,
.pagination a.navi {
	background: #ddd;
	color: #333;
}
.pagination a.page:hover,
.pagination a.navi:hover {
	background: #f0f0f0;
	color: #015db2;
	text-decoration: none;
}
.pagination span.page,
.pagination span.navi {
	background: #efefef;
	color: #aaa;
}
.pagination .page.cr {
	background: #015db2 !important;
	color: #fff !important;
}
.pagination .page { min-width: 34px;}
.pagination .navi { width: 5em;}
.pagination .prev span:before { content: "＜"; margin-right: .2em;}
.pagination .next span:after { content: "＞"; margin-left: .2em;}
.pagination .page i { font-style: normal;}

@media screen and (max-width:40em) {
	.pagination li { display: none;}
	.pagination .prev { display: block; float: left;}
	.pagination .next { display: block; float: right;}
	.pagination .navi { width: 100px;}
}
@media print, (min-width:40.0625em) {
	.pagination .first span,
	.pagination .last span {
		display: inline-block;
		position: relative;
		padding-top: 34px;
	}
	.pagination .first:after,
	.pagination .last:before {
		display: inline-block;
		content: "･･･";
		line-height: 1;
		margin: 0 .5em;
		vertical-align: middle;
	}
}

/* アコーディオンモジュール
   ---------------------------------- */
.mod-acc { margin: 20px 0;}
.mod-acc__title,
.mod-acc__close {
	padding: 8px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
	cursor: pointer;
}
.mod-acc__title {
	background: #2a90e2;
	color: #fff;
}
.mod-acc__close {
	margin: 20px -20px -20px -20px;
	background: #808080;
	color: #fff;
}
.mod-acc__title:after,
.mod-acc__close:after {
	display: inline-block;
	content: "";
	position: relative;
	top: -2px;
	width: 20px;
	height: 20px;
	margin-left: 8px;
	background-repeat: no-repeat;
	background-image: url(../img/ico-accordion.png);
	background-size: 40px 30px;
	vertical-align: middle;
}
.mod-acc__title:after { background-position: 0px -10px;}
.mod-acc__title.is-open:after,
.mod-acc__close:after { background-position: -20px -10px;}
.no-bgsizecover .mod-acc__title:after { background-position: 0px 0px;}
.no-bgsizecover .mod-acc__title.is-open:after,
.no-bgsizecover .mod-acc__close:after { background-position: -20px 0px;}
.mod-acc__panel {
	padding: 20px;
	background: #f2f2f2;
}
.mod-acc__title.is-open { background: #808080;}
@media print, (min-width:60.0625em) {
	.mod-acc { margin: 40px 0;}
	.mod-acc__title,
	.mod-acc__close {
		font-size: 20px;
		font-size: 2rem;
	}
	.mod-acc__close {
		margin: 30px -30px -30px;
	}
	.mod-acc__panel {
		padding: 30px;
	}
}

/* tables
   ---------------------------------- */
.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 2em;
	background: #fff;
}
.table.table-auto { width: auto;}

.table th,
.table td {
	padding: 6px 10px;
	text-align: inherit;
	font-weight: inherit;
}
.table thead { line-height: 1.3;}
.table.table-slim th,
.table.table-slim td { padding: 6px;}

.table caption {
	margin-bottom: 5px;
	font-weight: bold;
}
.table caption:before { content: "\25A0";}

@media print, (min-width:60.0625em) {
	.table caption { font-size: 16px; font-size: 1.6rem;}
	.table th,
	.table td { padding: 8px 16px;}
	.table.table-slim th,
	.table.table-slim td { padding: 6px 8px;}
}

/* 縦書きセル */
/* <div class="vertical-rl" style="height:5em;">○○○○</div> */
.vertical-rl {
	line-height: 1;
	letter-spacing: .1em;
	margin: 0 auto;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-ms-text-combine-horizontal: digits 2;
	text-combine-upright: digits 2;
}
.sideways {
	line-height: 1;
	letter-spacing: .1em;
	margin: 0 auto;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-ms-text-combine-horizontal: digits 2;
	text-orientation: sideways;
}


/* ボーダー付きテーブル */
.table-bordered th,
.table-bordered td { border: 1px solid #bbb;}
.table-bordered thead { background: #ddd;}

/* スタイルなしテーブル */
.table-flat { margin-bottom: 0;}
.table-flat th,
.table-flat td,
.table-flat caption {
	padding: 0;
	vertical-align: top;
}

/* dlのようなテーブル */
th.cologne {
	position: relative;
	padding-right: 1.5em;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}
th.cologne:after {
	content: "\205A";
	position: absolute;
	right: .5em;
	top: 0;
}
@media screen and (max-width:40em) {
	.table-block,
	.table-block caption,
	.table-block tbody,
	.table-block tbody tr,
	.table-block tbody td { display: block;}
	.table-block tbody th { display: inline-block;}
	.table-block tbody tr { margin-bottom: 1em;}
	.table-block th,
	.table-block td {
		width: auto;
		padding: 0;
		border: none;
		text-align: inherit;
		vertical-align: top;
	}
}

/* テーブル テーマ共通thead */
.table-theme1 thead tr,
.table-theme2 thead tr,
.table-theme3 thead tr {
	background: #1f7eda;
	color: #fff;
	text-align: center;
}
.table-theme1 thead tr:nth-child(n+2) th,
.table-theme2 thead tr:nth-child(n+2) th,
.table-theme3 thead tr:nth-child(n+2) th { border-top: 1px solid #3c92e5;}
.table-theme1 thead th + th,
.table-theme2 thead th + th,
.table-theme3 thead th + th { border-left: 1px solid #3c92e5;}
.table-theme1 tbody th.highlight,
.table-theme2 tbody th.highlight,
.table-theme3 tbody th.highlight {
	background: #327fc5 !important;
	border-top: 1px solid #3f9be3;
	color: #fff !important;
	text-align: center;
}

/* テーブル テーマ1（行しましま） */
.table-theme1 tbody th { background: #ececec;}
.table-theme1 tbody tr { background: #f2f2f2;}
.table-theme1 tbody tr:nth-child(even) { background: #d4e9f9;}
.table-theme1 tbody tr:nth-child(even) th { background: #c3dff7;}
.table-theme1.gray tbody tr:nth-child(even) { background: #e6e6e6;}
.table-theme1.gray tbody tr:nth-child(even) th { background: #e0e0e0;}
.table-theme1 tbody .border-left { border-left: 1px solid rgba(0,0,0,.1);}

/* テーブル テーマ2（縦横しましま） */
.table-theme2 tbody tr { background: #f2f2f2;}
.table-theme2 tbody tr:nth-child(even) { background: #d4e9f9;}
.table-theme2 tbody th,
.table-theme2 tbody td:nth-of-type(even) { background: #ececec;}
.table-theme2 tbody tr:nth-child(even) th,
.table-theme2 tbody tr:nth-child(even) td:nth-of-type(even) { background: #c3dff7;}

/* テーブル テーマ3（チェッカー）（tbody内にthが入ると崩れる） */
/*.table-theme3 thead th:nth-of-type(even) { background: #2991e2;}*/
.table-theme3 tbody tr { background: #e6e6e6;}
.table-theme3 tbody tr:nth-child(even) { background: #f2f2f2;}
.table-theme3 tbody th:nth-of-type(odd),
.table-theme3 tbody td:nth-of-type(even) { background: #f2f2f2;}
.table-theme3 tbody tr:nth-child(even) th:nth-of-type(odd),
.table-theme3 tbody tr:nth-child(even) td:nth-of-type(even) { background: #e6e6e6;}
.table-theme3 tbody tr.highlight { background: #c3dff5;}
.table-theme3 tbody tr.highlight:nth-child(even) { background: #d5e9f8;}
.table-theme3 tbody tr.highlight th:nth-of-type(odd),
.table-theme3 tbody tr.highlight td:nth-of-type(even) { background: #d5e9f8;}
.table-theme3 tbody tr.highlight tr:nth-child(even) th:nth-of-type(odd),
.table-theme3 tbody tr.highlight tr:nth-child(even) td:nth-of-type(even) { background: #c3dff5;}
/*.table-theme3 th,
.table-theme3 td { border: 1px solid #ccc;}
.table-theme3 tbody th { background: #eee;}
.table-theme3 tbody th.highlight,
.table-theme3 tbody .highlight th { background: #c3dff5;}
.table-theme3 tbody td.highlight,
.table-theme3 tbody .highlight td { background: #d5e9f8;}*/


/* 横スクロール */
@media screen and (max-width:48em) {
	.table-scroller {
		overflow-x: scroll;
		width: 100%;
		margin-bottom: 2em;
		background: #fff;
	}
	.table-scroller::-webkit-scrollbar{ height: 5px;}
	.table-scroller::-webkit-scrollbar-track{ background: #f2f2f2;}
	.table-scroller::-webkit-scrollbar-thumb { background: #bbb;}

	.table-scroller table {
		margin-bottom: 0 !important;
		min-width: 100%;
	}
	.table-scroller th,
	.table-scroller td {
		font-size: 13px;
		font-size: 1.3rem;
		white-space: nowrap;
	}
}


/* グラデーション付きボタン
   ---------------------------------- */
.btn {
	display: block;
	position: relative;
	width: 90%;
	max-width: 500px;
	height: 50px;
	margin: 16px auto;
	background: #015db2;
	border: none;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}
.btn:before {
	display: inline-block;
	content: "";
	height: 100%;
	vertical-align: middle;
}
.btn:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50%;
	background: rgba(255,255,255,.1);
}
.btn > span {
	display: inline-block;
	position: relative;
	z-index: 1;
	vertical-align: middle;
}
.btn:hover { opacity: .8;}

.btn--construction { background: #2991e2;}
.btn--water { background: #f7931e;}
.btn--gray { background: #aaa;}
.btn--mini {
	display: inline-block;
	width: auto;
	max-width: none;
	height: 30px;
	line-height: 30px;
	padding: 0 12px;
	font-size: 14px;
	font-size: 1.4rem;
}
.btn--contact {
	height: 70px;
	margin: 50px auto 0;
	background: #015db2;
	font-size: 20px;
	font-size: 2rem;
}
.btn__arrow:before {
	display: inline-block;
	content: "";
	position: relative;
	top: -1px;
	width: 20px;
	height: 20px;
	margin-left: 5px;
	background-repeat: no-repeat;
	background-image: url(../../common_v2/img/ico-btn.png);
	background-size: 40px 30px;
	background-position: 0 -10px;
	vertical-align: middle;
}
.btn--water .btn__arrow:before { background-position: -20px -10px;}
.no-bgsizecover .btn--water .btn__arrow:before { background-position: -20px 0;}

@media print, (min-width:60.0625em) {
	.btn {
		width: 100%;
		max-width: none;
		font-size: 18px;
		font-size: 1.8rem;
	}
	.btn--contact {
		font-size: 25px;
		font-size: 2.5rem;
	}
	.btn--mini {
		width: auto;
		font-size: 16px;
		font-size: 1.6rem;
	}
}


/* マーカー
   ---------------------------------- */
.marker {
	display: inline-block;
	position: relative;
	margin-bottom: 8px;
}
.marker:before {
	display: block;
	content: "";
	position: absolute;
	left: -2%;
	bottom: -10%;
	width: 104%;
	height: 60%;
	background: #d3eafc;
}
.marker > span {
	position: relative;
	z-index: 1;
}


/* figure
   ---------------------------------- */
.figure {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 1em;
}
.figure--center {
	text-align: center;
}
.figure figcaption {
	margin-top: 5px;
	font-size: 13px;
	font-size: 1.3rem;
	text-align: center;
}
.figure-bordered img {
	border: 1px solid #aaa;
}


/* box
   ---------------------------------- */
.box { padding: 8px 16px;}
.box2 { padding: 16px 20px;}
.box > :last-child,
.box2 > :last-child { margin-bottom: 0;}
@media print, (min-width:60.0625em) {
	.box { padding: 12px 20px;}
	.box2 { padding: 20px 30px;}
}


/* ==========================================================================
   $3-3. Object -- Utility
   ========================================================================== */
/**
 * スタイル調整用ヘルパー（原則編集禁止）
 */

/* Text prepend / append
   ---------------------------------- */
[data-prependtext]:before { content: attr(data-prependtext);}
[data-appendtext]:after { content: attr(data-appendtext);}

/* Text meant only for screen readers
   ---------------------------------- */
.sr {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.sr:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Clearing
   ---------------------------------- */
.clr { clear: both;}
/*.clearfix { *zoom: 1;}*/
.clearfix:before,
.clearfix:after { content: ""; display: table;}
.clearfix:after { clear: both;}

/* Display Utility
   ---------------------------------- */
.block { display: block;}
.ib { display: inline-block !important;}
.inline { display: inline;}
.hidden { display: none!important; visibility: hidden!important;}
.invisible { visibility: hidden!important;}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none!important;}

@media screen and (max-width:35em) {
	.visible-xs { display: block!important;}
	.hidden-xs { display: none!important;}
}
@media screen and (max-width:40em) {
	.visible-sm { display: block!important;}
	.visible-sm.ib { display: inline-block!important;}
	.hidden-sm { display: none!important;}
}
@media print, (min-width:40.0625em) {
	.visible-md { display: block!important;}
	.visible-md.ib { display: inline-block!important;}
	.hidden-md { display: none!important;}
}
@media print, (min-width:60.0625em) {
	.visible-lg { display: block!important;}
	.hidden-lg { display: none!important;}
}

/* Float
   ---------------------------------- */
.u-left { float: left;}
.u-right { float: right;}
.u-center { margin-right: auto; margin-left: auto;}

/* Text Align
   ---------------------------------- */
.u-text-left   { text-align: left!important;}
.u-text-center { text-align: center!important;}
.u-text-right  { text-align: right!important;}

/* Lists
   ---------------------------------- */
/*ul,ol*/.u-flat,
/*ul,ol*/.u-inline { list-style: none; padding-left: 0;}
/*ul,ol*/.u-inline li { display: inline-block; margin-right: .5em;}
/*dl*/.u-flat dt { font-weight: normal;}
/*dl*/.u-flat dd { margin-left: 0;}

/* Text Indents */
.u-indent1,
ul.u-indent1 > li { padding-left: 1em; text-indent: -1em;}
ul.u-indent1 { list-style: none; padding-left: 0; text-indent: 0;}

/* Note List */
.u-list-note,
.u-list-note2 { list-style: none; padding-left: 0; text-indent: 0;}
.u-list-note > li { padding-left: 1em; text-indent: -1em;}
.u-list-note2 > li { padding-left: 2em; text-indent: -2em;}

/* Link List */
.u-list-links { list-style: none; padding-left: 0; text-indent: 0;}
.u-list-links > li { position: relative; padding-left: 12px;}
.u-list-links > li:before { display: block; content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 0; margin-top: -4px; border: 3px solid rgba(0,0,0,0); border-left: 6px solid #015db2;}

/* DL table */
.u-dl-table { display: table;}
.u-dl-table > dt,
.u-dl-table > dd { display: table-cell; vertical-align: top;}
.u-dl-table > dt { font-weight: normal;}

/* Text Styles
   ---------------------------------- */
.u-size-l  { font-size: 22px; font-size: 2.2rem; line-height: 1.3;}
.u-size-m  { font-size: 16px; font-size: 1.6rem; line-height: 1.4;}
.u-size-15 { font-size: 15px; font-size: 1.5rem;}
.u-size-s  { font-size: 12px; font-size: 1.2rem;}
.u-size-h1 { font-size: 24px; font-size: 2.4rem; line-height: 1.3;}
.u-size-h2 { font-size: 20px; font-size: 2rem; line-height: 1.3;}
.u-size-h3 { font-size: 18px; font-size: 1.8rem; line-height: 1.4;}
.u-size-h4 { font-size: 16px; font-size: 1.6rem; line-height: 1.4;}

@media print, (min-width:40.0625em) {
	.u-size-l { font-size: 28px; font-size: 2.8rem; letter-spacing: -.025em;}
	.u-size-m { font-size: 18px; font-size: 1.8rem;}
	.u-size-h1 { font-size: 30px; font-size: 3rem;}
	.u-size-h2 { font-size: 25px; font-size: 2.5rem;}
	.u-size-h3 { font-size: 22px; font-size: 2.2rem;}
	.u-size-h4 { font-size: 18px; font-size: 1.8rem;}
}
.u-normal { font-weight: normal !important;}
.u-bold { font-weight: bold !important;}

/* Block widths
   ---------------------------------- */
.u-width-100 { width: 100%;}
.u-width-80 { width: 80%;}
.u-width-75 { width: 75%;}
.u-width-66 { width: 66%;}
.u-width-60 { width: 60%;}
.u-width-50 { width: 50%;}
.u-width-40 { width: 40%;}
.u-width-33 { width: 33%;}
.u-width-25 { width: 25%;}
.u-width-20 { width: 20%;}
.u-width-10 { width: 10%;}

/* Margins
   ---------------------------------- */
.mt5 { margin-top:    5px !important;}
.mb5 { margin-bottom: 5px !important;}
.mts { margin-top:    10px !important;}
.mrs { margin-right:  10px !important;}
.mbs { margin-bottom: 10px !important;}
.mls { margin-left:   10px !important;}
.mtm { margin-top:    30px !important;}
.mrm { margin-right:  30px !important;}
.mbm { margin-bottom: 30px !important;}
.mlm { margin-left:   30px !important;}
.mtl { margin-top:    50px !important;}
.mrl { margin-right:  50px !important;}
.mbl { margin-bottom: 50px !important;}
.mll { margin-left:   50px !important;}
.m0,.mt0,.mv0 { margin-top:    0 !important;}
.m0,.mr0,.mh0 { margin-right:  0 !important;}
.m0,.mb0,.mv0 { margin-bottom: 0 !important;}
.m0,.ml0,.mh0 { margin-left:   0 !important;}

/* Paddings
   ---------------------------------- */
.pt0 { padding-top:    0 !important;}
.pb0 { padding-bottom: 0 !important;}

/* Responsive
   ---------------------------------- */
.video {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.video iframe {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: 0;
}


/* ==========================================================================
   $Print styles
   ========================================================================== */

@media print {
* { background: transparent; box-shadow: none !important; text-shadow: none !important;}
body { color: #000;}
a,a:visited { text-decoration: underline;}
thead { display: table-header-group;}
tr,img { page-break-inside: avoid;}
img { max-width: 100% !important;}
@page { margin: 0.5cm;}
p,h2,h3 { orphans: 3; widows: 3;}
h2,h3 { page-break-after: avoid;}
}
