@charset 'UTF-8';
/* ---------------------------------------------------------
デフォルトリセット
--------------------------------------------------------- */
body, div {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	line-height: 1;
	list-style-type: none;
	box-sizing: border-box;
}

img {
	vertical-align: bottom;
}

input, textarea {
	font-size: 100%;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, Verdana, Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

li, dt, dd, p {
	line-height: 1.6;
}

/* mozilla向けスクロールバー強制表示
------------------------------------ */
html {
	overflow-y: scroll;
}

/* @font-face規則を使ってメイリオを定義してやるだけでメイリオも斜体
------------------------------------ */
@font-face {
	font-family: Meiryo;
	src: local('Meiryo'), local('メイリオ');
}

:root {
	font: italic 100% Meiryo, sans-serif;
}

/* ---------------------------------------------------------
音声ブラウザ用ナビゲーション
--------------------------------------------------------- */
.naviHidden {
	display: inline;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	border-style: none;
}

/* ---------------------------------------------------------
テキストリンク
--------------------------------------------------------- */
a:link {
	color: #004ea2;
	text-decoration: underline;
	vertical-align: baseline;
}

a:visited {
	color: #004ea2;
	text-decoration: underline;
}

a:hover, a:active {
	color: #004ea2;
	text-decoration: none;
}

/* ---------------------------------------------------------
レイアウトベース
--------------------------------------------------------- */
body {
	color: #333;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 0;
	line-break: strict;
	/* style */;
}

#contentWrap {
	/* setting */
	margin: 20px auto 0;
	padding: 0 15px;
	background: #fff;
}

@media only print, screen and (min-width: 700px) {
	#contentWrap {
		margin-top: 60px;
		padding: 0;
	}
}

#contentWrapNoneSide {
	margin: 20px auto 51px;
	padding: 0 15px;
	background: #fff;
}

@media only print, screen and (min-width: 700px) {
	#contentWrapNoneSide {
		margin: 60px auto 0;
		padding: 0;
	}
}

/* コンテンツ領域
------------------------------------ */

/* ローカルナビあり */
#contentWrap #content {
	/* setting */;
}

@media only print, screen and (min-width: 700px) {
	#contentWrap #content {
		float: right;
		padding-top: 8px;
	}
}

/* ローカルナビ */
#contentWrap #localNaviWrap {
	/* setting */;
}

@media only print, screen and (min-width: 700px) {
	#contentWrap #localNaviWrap {
		float: left;
	}
}

/* ローカルナビなし */
#contentWrapNoneSide #content {
	/* setting */
	margin: 0 auto;
}

/* コンテンツ領域 */
#contentWrap .contentInner {
	margin: 20px 0 0;
}

@media only print, screen and (min-width: 700px) {
	#contentWrap .contentInner {
		margin: 51px 0 0;
	}
}

#contentWrapNoneSide .contentInner {
	margin: 20px 0 0;
}

@media only print, screen and (min-width: 700px) {
	#contentWrapNoneSide .contentInner {
		margin: 51px 0 0;
	}
}

/* ---------------------------------------------------------
ヘッダー
--------------------------------------------------------- */
#headerWrap {
	position: relative;
	z-index: 100;
	margin: 0 auto;
	padding: 0;
	background: #fff;
}

@media only print, screen and (min-width: 700px) {
	#headerWrap {
		min-width: 1100px;
		border-bottom: 1px solid #949494;
	}
}

#header {
	position: relative;
}

@media only print, screen and (min-width: 700px) {
	#header {
		display: flex;
		width: 1100px;
		margin: 0 auto;
	}
}

#header .inner {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	padding: 30px 15px;
	background: #dedede;
}

@media only print, screen and (min-width: 700px) {
	#header .inner {
		display: flex;
		position: relative;
		top: auto;
		left: auto;
		padding: 54px 0 16px;
		background: none;
		text-align: right;
		flex: 1;
		flex-direction: column;
	}
}

#header #spMenu.active + .inner {
	display: block;
}

/* サイトロゴ
------------------------------------ */
#logo {
	border-bottom: 1px solid #dedede;
}

@media only print, screen and (min-width: 700px) {
	#logo {
		width: 237px;
		border-bottom: none;
	}
}

#logo a {
	display: block;
	padding: 7px 8px 10px;
}

@media only print, screen and (min-width: 700px) {
	#logo a {
		padding: 13px 0;
		transition: opacity 0.2s ease-in-out;
	}

	#logo a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
}

#logo img {
	width: 159px;
	height: auto;
	vertical-align: top;
}

@media only print, screen and (min-width: 700px) {
	#logo img {
		width: 100%;
	}
}

/* スマホメニュー
------------------------------------ */
#spMenu {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 0;
	margin: 0;
	padding: 0;
	padding-top: 60px;
	border: 0;
	background: url(../img/spmenu.gif) no-repeat 50% 0;
	background-size: 60px auto;
	line-height: 1.5;
	white-space: nowrap;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
}

#spMenu.active {
	background-position: 50% 100%;
}

@media only print, screen and (min-width: 700px) {
	#spMenu {
		display: none;
	}
}

/* ヘッダーリンク
------------------------------------ */
#utilityMenu {
	margin: 0;
	font-size: 84.61538%;
}

@media only print, screen and (min-width: 700px) {
	#utilityMenu {
		font-size: 92.30769%;
	}
}

#utilityMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media only print, screen and (min-width: 700px) {
	#utilityMenu ul {
		text-align: right;
	}
}

#utilityMenu li {
	margin: 17px 0 0;
	padding: 0 0 0 15px;
	background: url(../img/icons/ico_link.png) no-repeat 0 50%;
	background-size: 12px auto;
	list-style: none;
}

@media only print, screen and (min-width: 700px) {
	#utilityMenu li {
		display: inline-block;
		margin: 0 0 0 25px;
		padding: 0 0 0 18px;
		background-position: 0 0.25em;
		background-size: 13px auto;
	}
}

#utilityMenu li:before {
	display: none;
}

#utilityMenu a {
	display: block;
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

@media only print, screen and (min-width: 700px) {
	#utilityMenu a:hover {
		color: #004eaa;
	}
}

/* ソーシャルリンク
------------------------------------ */
#social {
	margin: 17px 0 0;
}

@media only print, screen and (min-width: 700px) {
	#social {
		position: absolute;
		top: 20px;
		right: -6px;
		margin: 0;
	}
}

#social ul {
	margin: 0;
	padding: 0;
	letter-spacing: -0.4em;
	list-style: none;
}

#social ul > * {
	letter-spacing: normal;
}

@media only print, screen and (min-width: 700px) {
	#social ul {
		margin: 0 0 0 -25px;
		font-size: 82%;
		text-align: right;
	}
}

#social li {
	display: inline-block;
	margin: 0 12px 0 0;
	padding: 0;
	list-style: none;
}

@media only print, screen and (min-width: 700px) {
	#social li {
		margin: 0 6px 0 0;
	}
}

#social li:before {
	display: none;
}

#social a {
	display: block;
}

@media only print, screen and (min-width: 700px) {
	#social a {
		transition: opacity 0.2s ease-in-out;
	}

	#social a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
}

#social img {
	width: 30px;
	height: auto;
}

@media only print, screen and (min-width: 700px) {
	#social img {
		width: 23px;
	}
}

/* 文字サイズ変更
------------------------------------ */
#fontResizeBlock {
	display: none;
	font-size: 0;
}

@media only print, screen and (min-width: 700px) {
	#fontResizeBlock {
		display: block;
		position: absolute;
		top: 20px;
		right: 324px;
	}
}

#fontResizeBlock dl {
	display: flex;
	margin: 0;
	align-items: center;
}

#fontResizeBlock dt {
	margin: 0 0 0 1px;
}

#fontResizeBlock dd {
	margin: 0 0 0 7px;
	padding: 0;
	background: no-repeat 50% 50%;
}

#fontResizeBlock dd:nth-of-type(1) {
	margin: 0 0 0 11px;
	background-image: url(../img/fontsize_01_cr.gif);
}

#fontResizeBlock dd:nth-of-type(2) {
	background-image: url(../img/fontsize_02_cr.gif);
}

#fontResizeBlock dd:nth-of-type(3) {
	background-image: url(../img/fontsize_03_cr.gif);
}

#fontResizeBlock dd img {
	cursor: pointer;
}

@media only print, screen and (min-width: 700px) {
	#fontResizeBlock dd img {
		transition: opacity 0.2s ease-in-out;
	}

	#fontResizeBlock dd img:hover {
		text-decoration: none;
		opacity: 0;
	}
}

/* 検索ボックス
------------------------------------ */
@media only print, screen and (min-width: 700px) {
	#searchBlock {
		position: absolute;
		top: 20px;
		right: 101px;
	}
}

#searchBlock #searchFrm div {
	display: flex;
}

@media only print, screen and (min-width: 700px) {
	#searchBlock #searchFrm div {
		display: block;
	}
}

#searchBlock input#searchInput {
	height: 22px;
	padding: 2px 5px;
	border: none;
	border-radius: 1px;
	font-size: 92.30769%;
	vertical-align: middle;
	flex: 1;
}

@media only print, screen and (min-width: 700px) {
	#searchBlock input#searchInput {
		width: 143px;
		height: 23px;
		padding: 1px 5px;
		border-radius: 2px;
		background: #efefef;
		font-size: 100%;
	}
}

#searchBlock input#searchBtn {
	width: 42px;
	height: 22px;
	margin: 0 0 0 6px;
	border: 0;
	border-radius: 1px;
	background: #004eaa;
	background-size: contain;
	color: #fff;
	font-size: 92.30769%;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
}

@media only print, screen and (min-width: 700px) {
	#searchBlock input#searchBtn {
		width: 43px;
		height: 23px;
		margin: 0 0 0 7px;
		border-radius: 2px;
	}
}

@media only print, screen and (min-width: 700px) and (min-width: 700px) {
	#searchBlock input#searchBtn {
		transition: opacity 0.2s ease-in-out;
	}

	#searchBlock input#searchBtn:hover {
		text-decoration: none;
		opacity: 0.7;
	}
}

/* ヘッダー関連リンク
------------------------------------ */

/* ---------------------------------------------------------
フッター
--------------------------------------------------------- */
#footer {
	/* setting */
	margin: 0 auto;
	background: #eee;
}

@media only print, screen and (min-width: 700px) {
	#footer {
		min-width: 1100px;
		margin-top: 100px;
	}
}

#footerInner {
	padding: 28px 56px;
}

@media only print, screen and (min-width: 700px) {
	#footerInner {
		display: flex;
		margin: 0 auto;
		padding: 19px 0;
		align-content: center;
	}
}

/* フッタロゴ
------------------------------------ */
@media only print, screen and (min-width: 700px) {
	#footerLogo {
		display: flex;
		width: 475px;
		align-items: center;
	}
}

#footerLogo dt {
	margin-bottom: 13px;
	padding-bottom: 15px;
	border-bottom: 1px solid #1d3b5c;
	text-align: center;
}

@media only print, screen and (min-width: 700px) {
	#footerLogo dt {
		position: relative;
		width: 191px;
		margin: 0 41px 0 0;
		padding: 0;
		border-bottom: none;
	}

	#footerLogo dt:after {
		content: '';
		position: absolute;
		top: 50%;
		right: -20px;
		width: 1px;
		height: 50px;
		margin-top: -25px;
		background: #1d3b5c;
	}
}

#footerLogo a {
	display: block;
}

@media only print, screen and (min-width: 700px) {
	#footerLogo a {
		transition: opacity 0.2s ease-in-out;
	}

	#footerLogo a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
}

#footerLogo img {
	width: 159px;
	height: auto;
}

@media only print, screen and (min-width: 700px) {
	#footerLogo img {
		width: 100%;
	}
}

#footerLogo dd {
	font-size: 76.92308%;
	line-height: 1.5;
}

@media only print, screen and (min-width: 700px) {
	#footerLogo dd {
		font-size: 92.30769%;
		line-height: 1.67;
		flex: 1;
	}
}

/* フッタメニュー
------------------------------------ */
#footerLink {
	margin: 27px 0 0;
	font-size: 76.92308%;
}

@media only print, screen and (min-width: 700px) {
	#footerLink {
		display: flex;
		margin: 0;
		font-size: 92.30769%;
		text-align: right;
		flex: 1;
		flex-direction: column;
		justify-content: center;
	}
}

#footerLink ul {
	margin: 0;
	padding: 0;
}

#footerLink li {
	margin: 10px 0 0;
	padding: 0 0 0 15px;
	/* style */
	background: url(../img/icons/ico_link.png) no-repeat 0 50%;
	background-size: 12px auto;
	list-style: none;
}

@media only print, screen and (min-width: 700px) {
	#footerLink li {
		display: inline-block;
		margin: 0 0 0 25px;
		padding: 0 0 0 18px;
		background-position: 0 0.25em;
		background-size: 13px auto;
	}
}

#footerLink li:before {
	display: none;
}

#footerLink a {
	display: block;
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

@media only print, screen and (min-width: 700px) {
	#footerLink a:hover {
		color: #004eaa;
	}
}

/* コピーライト
------------------------------------ */
#footerCopyright {
	padding: 8px 0;
	background: #004ea2;
	color: #fff;
	font-size: 69.23077%;
	text-align: center;
}

@media only print, screen and (min-width: 700px) {
	#footerCopyright {
		font-size: 92.30769%;
		text-align: right;
	}
}

#footerCopyrightInner {
	margin: 0;
	padding: 0;
}

@media only print, screen and (min-width: 700px) {
	#footerCopyrightInner {
		margin: 0 auto;
	}
}

/* ---------------------------------------------------------
フッター関連リンク
--------------------------------------------------------- */

/* ---------------------------------------------------------
ClearFix
--------------------------------------------------------- */
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

/* 固定
------------------------------------ */
#header:after, #footer:after, #contentWrap:after, #contentWrapNoneSide:after {
	content: '';
	display: block;
	clear: both;
}

/* ---------------------------------------------------------
pc/sp表示分岐
--------------------------------------------------------- */
.spHidden {
	display: none;
}

@media only print, screen and (min-width: 700px) {
	.spHidden {
		display: block;
	}
}

.pcHidden {
	display: block;
}

@media only print, screen and (min-width: 700px) {
	.pcHidden {
		display: none;
	}
}
