@charset "utf-8";
/* ------------------------------------------------------- */
/* css reset --------------------------------------------- */
/* ------------------------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/  v2.0 | 20110126 License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, strike, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after, q::before, q::after { content: ""; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
.clear { clear: both; }
.clearfix::after { content: ""; display: block; clear: both; }

/* ------------------------------------------------------- */
/* Layout ------------------------------------------------ */
/* ------------------------------------------------------- */

* { box-sizing: border-box; }
html { font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */ }
body {
	background: #fff;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;/* 16px */
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	line-height: 2.6rem;
}

/* ------------------------------------------------------- */
/* Share ------------------------------------------------- */
/* ------------------------------------------------------- */

/* display */
.dispinline {display: inline;}
.dispinlineb {display: inline-block;}
.dispb {display: block!important;}
.dispnone {display: none;}
.nonePc {display: none;}
.oHidden {overflow: hidden;}

@media only screen and (max-width:768px) {
	.nonePc {display: inline-block;}
	.noneSp {display:none;}
}

/* margin */
.mauto {
	margin-left: auto;
	margin-right: auto;
}
.ml24{margin-left:24px;}
.mb0 {margin-bottom: 0px!important;}
.mb1 {margin-bottom: 1px!important;}
.mb5 {margin-bottom: 5px!important;}
.mb8 {margin-bottom: 8px!important;}
.mb16 {margin-bottom: 16px!important;}
.mb24 {margin-bottom: 24px!important;}
.mb32 {margin-bottom: 32px!important;}

/* width */
.w100 {width: 100%;}
.w50 {width: 50%;}
.w400sp100 { width: 400px; }

@media only screen and (max-width:768px) {
	.w400sp100 { width: 100%; }
}
/* width リスト並び（間にスペースが入る）これプラス.floatLeftMw1、.floatRightMw1をつけてください。
さらに3,4つ並びの場合は真ん中に.ml24も入れてください
tagbox内で2つ並びを使いたい時などに使用。tagbox内以外はul.float2col1 liで事足ると思います*/
.w2col {width: calc((100% - 24px) / 2);}
.w3col {width: calc((100% - 48px) / 3);}
.w4col{width: calc((100% - 72px) / 4);}
/*1つだけ3colを使い、間に24pxとり、あとの残りの幅*/
.w3col2{width: calc(((100% - 72px) / 3) * 2 + 24px);}

/*1つだけ4colを使い、間に24pxとり、あとの残りの幅*/
.w4col3{width: calc(((100% - 72px) / 4) * 3 + 48px);}

@media only screen and (max-width:768px) {
	.w2col, .w3col, .w3col2, .w4col3 {width: 100%;}
}

/* vertical align */
.vaTop {vertical-align: top;}
.vaBottom {vertical-align: bottom;}
.vaMiddle {vertical-align: middle;}
/* indent */
.indent {text-indent: 1.6rem;}
.indent1 {
	margin-left: 1.6rem;
	text-indent: -1.6rem;
}
/* 改ページ */
.bpa {page-break-before: always;}

/*改行*/
.wordBreakTable {
	width: 100%;
	table-layout: fixed;
}
.wordBreakTable td {
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.wordBreakSpot {
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* font ---------------------------------------------------*/
/* font style */
strong, .bold {font-weight: bold;}
.nbold {font-weight: normal;}
.underLine {text-decoration: underline;}
/* font size */
.small1 {font-size: 1.4rem;}
.small2 {font-size: 1.2rem;}
.big1 {font-size: 1.8rem;}
.big2 {font-size: 2.0rem;}
.big3 {
	font-size: 3.0rem;
	line-height: 4.3rem;
}
@media only screen and (max-width:768px) {
	.big3 {
		font-size: 2.6rem;
		line-height: 3.6rem;
	}
}
/* text align */
.txtRight {text-align: right;}
.txtCenter {text-align: center;}
.txtLeft {text-align: left;}

/* font color */
.fcRed {color: #FF0004;}
.fcBlue {color: #06C;}
.fcWhite {color: #FFF;}
/* font family */
.fontFamily1 {
	font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/*fontstyle*/
.fontStyle1 {
	font-weight: bold;
	color: #191786;
	font-size: 1.7rem;
}

/* image -------------------------------------------------*/
/*イメージのはみ出し防止*/
img {
	max-width: 100%;
	height:auto;
}
/* image align */
img.imgCenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
img.imgLeft {
	padding: 0px 16px 10px 0px;
	float: left;
}
img.imgRight {
	padding: 0px 0px 10px 16px;
	float: right;
}
/* image align 幅600以下でフロート解除 */
img.imgLeftN1 {
	padding: 0 16px 10px 0;
	float: left;
}
img.imgRightN1 {
	padding: 0 0 10px 16px;
	float: right;
}

@media only screen and (max-width:768px) {
/*画像そのものの幅にする*/
img.imgwAuto, .imgwAuto img {width: auto;}
img.imgLeftN1, img.imgRightN1 {
	padding: 0;
	float: none;
	display: block;
	margin: 0 auto 10px;
}
}
/* link ---------------------------------------------------*/
a {
	text-decoration: underline;
	color: #333;
}
a:hover {color: #86711b;}
/*blank用ポイント付*/
.externalLink::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f35d";
	margin-left: 4px;
}
/* ボタン用 */
.buttonLink1, .buttonLink2 {
	overflow: hidden;
	margin: 0 0 20px 0;
	padding: 0;
}
.buttonLink1 a, .buttonLink2 a {
	display: block;
	position: relative;
	color: #fff;
	text-decoration: none;
	padding: 10px 10px 10px 50px;
}
.buttonLink1 a {background: #191786;}
.buttonLink2 a {background: #86711b;}
.buttonLink1 a:hover {background: #00003b;}
.buttonLink2 a:hover {background: #3b3000;}
.buttonLink1 a::before, .buttonLink2 a::before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 19px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;
	background: #fff;
}
.buttonLink1 a::after, .buttonLink2 a::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 25px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;
}
.buttonLink1 a::after {border-left: 5px solid #191786;}
.buttonLink2 a::after {border-left: 5px solid #86711b;}

.buttonLink3 a {
	cursor: pointer;
	display: block;
	border: 1px solid #ccc;
	padding:12px;
	text-align: center;
	background: #ffffe1;
	position: relative;
	text-decoration: none;
}
.buttonLink3 a:hover {color: #000;}
.buttonLink3 a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-left: 8px;
	margin-top: -12px;
	position: absolute;
	right: 8px;
	top: 50%;		
}
/*もっとみる*/
.listMore1 {text-align: right;}
.listMore1 a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
}
.listMore2 {text-align: right;}
.listMore2 a {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 8px 16px;
	text-decoration: none;
}
.listMore2 a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	margin-left: 8px;
	font-size: 2.0rem;
}
@media only screen and (max-width:768px) {
	.listMore1 {
		text-align: center;
		border: 1px solid #ccc;
	}
	.listMore1 a {
		display: block;
		padding: 16px;
		background: #fff;
		position: relative;
	}
	.listMore1 a::after {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f105";
		position: absolute;
		right: 8px;
		top: 50%;
		margin-top: -10px;
	}	
}
/*電話用リンク1*/
.phoneLink1 {
	text-decoration: none;
	cursor: default;
	color: #000;
}
.phoneLink1:hover {color: #000;}
@media only screen and (max-width:768px) {
	.phoneLink1 {
		cursor: pointer;
		display: block;
		border: 1px solid #ccc;
		padding:12px;
		text-align: center;
		background: #ffffe1;
		position: relative;
	}
	.phoneLink1:hover {color: #000;}
	.phoneLink1::after {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f0da";
		margin-left: 8px;
		margin-top: -12px;
		position: absolute;
		right: 8px;
		top: 50%;		
	}
}
/*閉じるボタン印刷で非表示*/
.closeBtn1 {
	text-align: center;
	padding: 16px 0 0 0;
}
.closeBtn1 a {
	text-decoration: none;
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #ccc;
}
.closeBtn1 a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00d";
	margin-right: 8px;
}
/* float ----------------------------------------------*/
.floatLeft {float: left;}
.floatRight {float: right;}
/* 幅639以下でフロート解除 */
.floatLeftMw1 {float: left;}
.floatRightMw1 {float: right;}

/* 2つ並びのボックス */
.floatLeft2col1,
.floatRight2col1 {
	width: calc((100% - 24px) / 2);
	margin-bottom: 8px;
}
.floatLeft2col1 {
	float: left;
	clear: left;
	margin-right: 12px;
}
.floatRight2col1 {
	float:right;
	margin-left: 12px;
}

@media only screen and (max-width:768px) {
.floatLeftMw1 {float: none;}
.floatRightMw1 {float: none;}

/* 二つ並びのボックス */
.floatLeft2col1,
.floatRight2col1 {
	width: 100%;
	float: none;
}
.floatLeft2col1 {margin-right: 0;}
.floatRight2col1 {margin-left: 0;}
}
/* box -----------------------------------------------*/
.box1 {
	padding: 16px;
	margin-bottom: 16px;
	border: 2px solid #dedede;
}
.box2 {
	background-color: #f6f6f6;
	padding: 16px;
	margin-bottom: 16px;
}
.box3 {
	background: #faf6e6;
	padding: 16px;
	margin-bottom: 16px;
}

@media only screen and (max-width:768px) {
	.box1 {padding: 10px;}
	.box2 {padding: 10px;}
	.box3 {padding: 10px;}
}
/*スクロール付き*/
@media only screen and (max-width:768px) {
	.scrollBox1 {
		margin: 0 auto 32px;
		overflow-x: scroll;
		white-space: nowrap;
		padding: 8px 0;
		width: 100%;
		box-sizing: border-box;
	}
	.scrollBox1::-webkit-scrollbar {height: 5px;}
	.scrollBox1::-webkit-scrollbar-thumb {background-color: rgba( 0, 0, 0, 0.5);}
}

/*container 幅固定用box*/
/*
.contentsBox1：スマートフォンで幅100%＋左右余白なし
.contentsBox2：スマートフォンで幅100%＋左右余白あり
*/
.contentsBox1,
.contentsBox2 {
	max-width: 1120px;
	min-width: 1000px;
	margin:0 auto;
}

@media only screen and (max-width:768px) {
.contentsBox1,
.contentsBox2 {
	width:100%;
	min-width: 100px;
}
.contentsBox2{padding:0 15px;}
}
/* list ----------------------------------------------*/
ul.ul1, ol.ol1, ul.float2col1, ul.float3col1, ul.float4col1 {
	margin-bottom: 24px;
}
ul.ul1 li {
	list-style-type: disc;
	margin: 0 0 8px 20px;
}
ol.ol1 li {
	list-style-type: decimal;
	margin: 0 0 8px 32px;
}
ul.ul1 li ul li, ol.ol1 li ul li {
	list-style-type: circle;
}
/* 2つ並びのリスト 768px以下で1列に */
ul.float2col1 li {
	width: calc((100% - 24px) / 2);
	float: left;
	margin-bottom: 8px;
}
ul.float2col1 li:nth-child(odd) {
	clear: left;
	margin-right: 12px;
}
ul.float2col1 li:nth-child(even) {
	margin-left: 12px;
}

@media only screen and (max-width:768px) {
/* 二つ並びのリスト 768px以下で1列に */
ul.float2col1 li {
	width: 100%;
	float: none;
}
ul.float2col1 li:nth-child(odd) {margin-right: 0;}
ul.float2col1 li:nth-child(even) {margin-left: 0;}
}
/* 3つ並びのリスト 768px以下で1列に */
ul.float3col1 li {
	width: calc((100% - 48px) / 3);
	float: left;
	margin: 0 23px 16px 0;
}
ul.float3col1 li:nth-child(3n) {margin-right: 0;}
ul.float3col1 li:nth-child(3n+1) {clear: left;}

@media only screen and (max-width:768px) {
/* 3つ並びのリスト 768px以下で1列に */
ul.float3col1 li {
	width: 100%;
	float: none;
	margin: 0 0 8px 0;
}
}
/* 4つ並びのリスト 768px以下で1列に */
ul.float4col1 li {
	width: calc((100% - 48px) / 4);
	float: left;
	margin: 0 16px 16px 0;
}
ul.float4col1 li:nth-child(4n) {margin: 0 0 16px 0;}
ul.float4col1 li:nth-child(4n+1) {clear: left;}

@media only screen and (max-width:768px) {
/* 4つ並びのリスト 768px以下で1列に */
ul.float4col1 li {
	width: 100%;
	float: none;
	margin: 0 0 8px 0;
}
}
/* 横並びリストの画像はPCでも自動で幅最大100%に設定 */
ul.float2col1 img, ul.float3col1 img, ul.float4col1 img {
	max-width: 100%;
	height: auto;
}
/*ol数字カスタマイズ1*/
.ol2 {
	counter-reset: ol2;
	list-style: none;
	overflow: hidden;
	padding: 0;
	margin-bottom: 8px;
}
.ol2 li {
	margin-bottom: 16px;
	padding: 16px 16px 16px 50px;
	position: relative;
	background: #f1f1fa;
}
.ol2 li:before {
	content: counter(ol2);
	counter-increment: ol2;
	background-color: #191786;
	color: #fff;
	display: block;
	position: absolute;
	left: 10px;
	top: 14px;
	line-height: 30px;
	text-align: center;
	height: 30px;
	width: 30px;
	border-radius: 50%;
}
@media only screen and (max-width:768px) {
	.ol2box1 {
		margin-left: -34px;
	}
}

/*横並びリンクボタンリスト*/
.ulLink1 li a {
	display: block;
	border: 1px solid #ccc;
	padding: 16px 16px  16px 8px;
	position: relative;
	text-decoration: none;
}
.ulLink1 li a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-left: 8px;
	margin-top: -12px;
	position: absolute;
	right: 8px;
	top: 50%;
}
/* dl ----------------------------------------------*/
dl.dl1 {margin-bottom: 16px;}
.dl1 dt {
	font-weight: bold;
	background: #f6f6f6;
	border-left: 3px solid #ccc;
	margin-bottom: 10px;
	padding: 8px;
}
.dl1 dd {margin-bottom: 16px;}
.dl1 dd:last-child {margin-bottom: 0;}
/* pagetitle navi ----------------------------------------------*/
.pageInfo {
	margin: 0 auto 24px;
	background: url(../images/contents/pagetitleBg.png) bottom right no-repeat #00003b;
	padding: 12px 0;
}
.breadcrumbs,
.pageInfo h1 {
	max-width: 1120px;
	min-width: 1000px;
	margin: 0 auto;
}
.breadcrumbs {
	font-size: 1.3rem;
	margin: 0 auto 8px;
	color: #fff;
}
.breadcrumbs li {display: inline-block;}
.breadcrumbs li::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	padding: 0 2px 0 8px;
	color: #ccc;
}
.breadcrumbs li:last-child::after {
	content: "";
	padding: 0;
}
.breadcrumbs a {color: #e8e8e8;}
.pageInfo h1 {
	font-size: 2.6rem;
	line-height: 3.6rem;
	font-weight: bold;
	margin: 0 auto;
	color: #fff;
	padding: 8px 0;
}

@media only screen and (max-width:768px) {
	.pageInfo {
		margin: 0 auto 16px;
		background: url(../images/contents/pagetitleBg.png) bottom right no-repeat #00003b;
		background-size: 200px 117px;
		padding:0 8px;
	}
	.breadcrumbs,
	.pageInfo h1 {
		width: 100%;
		min-width: 100px;
		margin: 0 auto;
	}
	.breadcrumbs {
		width:auto;
		margin: 0 auto 4px;
		overflow-x: scroll;
		white-space: nowrap;
		padding: 8px 0 4px 0;
	}
	.breadcrumbs::-webkit-scrollbar {height: 5px;}
	.breadcrumbs::-webkit-scrollbar-track {
	}
	.breadcrumbs::-webkit-scrollbar-thumb {background-color: rgba( 255, 255, 255, 0.5);}
	.pageInfo h1 {
		font-size: 2.1rem;
		line-height: 2.9rem;
		font-weight:normal;
		padding:0 0 8px 0;
	}
}
/* midashi ----------------------------------------------*/
.midashi1 {
	font-size: 2.2rem;
	line-height: 3.2rem;
	font-weight: bold;
	margin-bottom: 24px;
	padding: 20px 16px 15px 16px;
	color: #00003b;
	background: linear-gradient(to right, #ffffff 0%,#f1f1f1 50%,#ffffff 100%);
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	text-align: center;
}
.midashi1::before {top: 0px;}
.midashi1::after {bottom: 0px;}
.midashi2 {
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 24px;
	border-left: 4px solid #191786;
	padding: 8px 0 6px 8px;
	color: #00003b;
}
.midashi3 {
	font-size: 1.9rem;
	font-weight: bold;
	margin-bottom: 24px;
	color: #191786;
	position: relative;
	padding-bottom:8px;
	border-bottom: 3px solid #dedede;
}
.midashi3::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 30%;
  height: 3px;
  background-color: #8d8de4;
}
.midashi4 {
	font-size: 1.7rem;
	font-weight: bold;
	margin-bottom: 24px;
	color: #86711b;
}
.midashi4::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: "\f24d";
	color: #b1a059;
	margin-right: 8px;
}
.midashi5 {
	background: #b32626;
	margin-bottom: 10px;
	padding: 10px 10px 6px 10px;
	color: #FFF;
}
.midashi6 {
	background: #86711b;
	margin-bottom: 10px;
	padding: 10px 10px 6px 10px;
	color: #FFF;
}
.midashi7 {
	background: #888;
	margin-bottom: 10px;
	padding: 10px 10px 6px 10px;
	color:#fff;
}
@media only screen and (max-width:768px) {
	.midashi1 {
		font-size: 2.0rem;
		line-height: 2.8rem;
		padding: 14px 0px 10px 0px;
	}
	.midashi1::before {top: 0px;}
	.midashi1::after {bottom: 0px;}
	.midashi2 {font-size: 1.9rem;}
	.midashi3 {
		font-size: 1.8rem;
		padding-bottom:4px;
		border-bottom: 2px solid #dedede;
	}
	.midashi3::after {
		bottom: -2px;
		height: 2px;
		width: 40%;
	}
	.midashi4 {font-size: 1.7rem;}
}

/* table ----------------------------------------------*/
.table1, .table1 td, .table1 th, .td1 {
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
}
table caption {margin-bottom: 8px;}
.table1 {
	border-collapse: collapse;
	margin-bottom: 24px;
}
.table1 th, .table1 td, .td1 {padding: 8px;}
.table1 th {background-color: #f6f6f6; vertical-align: middle;}
.tdw {background: #fff;}
.td1 {background: #faf6e6;}
.td2 {background: #e7f5fe;}
.thw100p th {width: 100px;}
.thw110p100sp th {width: 110px;}
.thw150p th {width: 150px;}
.thw150p100sp th {width: 150px;}

@media only screen and (max-width:768px) {
/*639px以下で段組み解除*/
	.tableMw1 th, .tableMw1 td {
		display: block;
		border: none;
		width: 100%;
	}
	.thw150p100sp th,
	.thw110p100sp th{width: 100%;}
}

/* ------------------------------------------------------- */
/* Move Top ---------------------------------------------- */
/* ------------------------------------------------------- */

/* ページ上部に戻る スクロールで自動表示 */
#pageTop {
	width: 45px;
	height: 40px;
	display: none;
	position: fixed;
	right: 16px;
	bottom: 30px;
}
#pageTop div {
	margin: 0;
	padding: 9px 0 4px;
	text-align: center;
	background: #191786;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#pageTop div span {display: none;}
#pageTop div:hover {background: #00003b;}
#movePageTop {
	color: #fff;
	text-decoration: none;
	display: block;
	cursor: pointer;
}
#movePageTop::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f062";
	color: #fff;
	font-size: 3.0rem;
}
@media only screen and (max-width:768px) {
	#pageTop {
		right: 5px;
		bottom: 109px;
	}
}

/* ------------------------------------------------------- */
/* コンテンツ内でタグをデフォで使う為の設定(cmsの投稿者用等) */
/* ボックスに.tagBoxを付ける事　*/
/* h1サイトタイトル h2ページタイトルのため、h3からスタート*/
/* ------------------------------------------------------- */
.tagBox {
}
/*ul ol*/
.tagBox ul, .tagBox ol {
	margin-bottom: 15px;
	overflow: hidden;
}
.tagBox ul li {
	list-style-type: disc;
	margin: 0 0 8px 20px;
}
.tagBox ol li {
	list-style-type: decimal;
	margin: 0 0 8px 30px;
}
.tagBox ul li ul, .tagBox ol li ul {margin-bottom: 0;}
.tagBox ul li ul li, .tagBox ol li ul li {list-style-type: circle;}
/*table*/
.tagBox table, .tagBox table td, .tagBox table th {
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
}
.tagBox table {margin-bottom: 24px;}
.tagBox table th, .tagBox table td {padding: 8px;}
.tagBox table th {background-color: #f6f6f6;}
/*見出しh関連*/
.tagBox h2 {
	font-size: 2.2rem;
	line-height: 3.2rem;
	font-weight: bold;
	margin-bottom: 24px;
	padding: 20px 16px 15px 16px;
	color: #00003b;
	background: linear-gradient(to right, #ffffff 0%,#f5f5f5 50%,#ffffff 100%);
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	text-align: center;
}
.tagBox h2::before {top: 0px;}
.tagBox h2::after {bottom: 0px;}
.tagBox h3 {
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 24px;
	border-left: 4px solid #191786;
	padding: 8px 0 6px 8px;
	color: #00003b;
}
.tagBox h4 {
	font-size: 1.9rem;
	font-weight: bold;
	margin-bottom: 24px;
	color: #191786;
	position: relative;
	padding-bottom:8px;
	border-bottom: 3px solid #dedede;
}
.tagBox h4::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 30%;
  height: 3px;
  background-color: #8d8de4;
}
.tagBox h5 {
	font-size: 1.7rem;
	font-weight: bold;
	margin-bottom: 24px;
	color: #86711b;
}
.tagBox h5::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: "\f24d";
	color: #b1a059;
	margin-right: 8px;
}

@media only screen and (max-width:768px) {
	.tagBox h2 {
		font-size: 2.0rem;
		line-height: 2.8rem;
		padding: 14px 0px 10px 0px;
	}
	.tagBox h2::before {top: 0px;}
	.tagBox h2::after {bottom: 0px;}
	.tagBox h3 {font-size: 1.9rem;}
	.tagBox h4 {
		font-size: 1.8rem;
		padding-bottom:4px;
		border-bottom: 2px solid #dedede;
	}
	.tagBox h4::after {
		bottom: -2px;
		height: 2px;
		width: 40%;
	}
	.tagBox h5 {font-size: 1.7rem;}
}
/*block*/
.tagBox blockquote {
	background: #FAFAFA;
	border: 1px solid #CCC;
	margin-bottom: 15px;
	padding: 15px;
}
/*
mtだとemが斜体と表示されるのでそのためのスタイル
※本来のem意味は強調であって視覚的に斜体にするならiタグが望ましい
*/
.tagBox em{font-style:italic;}

@media only screen and (max-width:768px) {
.tagBox h3 {font-size: 1.9rem;}
.tagBox h3, .tagBox h4, .tagBox h5, .tagBox h6 {
	margin-bottom: 15px;
}
}
/* ------------------------------------------------------- */
/* layout ------------------------------------------------ */
/* ------------------------------------------------------- */
/* base サイトレイアウトの基本設定 ----------------------- */
#top {width: 100%;}
#wrapper {
	width: 100%;
	min-width: 1000px;
	margin: 150px 0 40px 0;
	overflow: hidden;
}
#container {
	max-width: 1120px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 0;
	clear: both;
}
#container.cwtMax {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
}
#main {
	width: calc(100% - 286px);
	float: left;
}
#container.cwtMax #main {
	width: 100%;
	float: none;
}
#side {
	width: 262px;
	float: right;
}
#footer {
	width: 100%;
	min-width: 1000px;
}

@media only screen and (max-width:768px) {
	#wrapper {
		min-width: 100px;
		margin: 0 0 32px 0;
	}
	#container {
		min-width: 100px;
		width: 100%;
		padding: 0 10px 0 10px;
		margin: 0 auto;
	}
	#container.cwtMax {
		padding: 15px 0 0 0;
	}
	#main {
		width: 100%;
		float: none;
		margin: 0 0 32px 0;
	}
	#side {
		width: 100%;
		float: none;
	}
	#footer {
		min-width: 100px;
		width: 100%;
	}
}
/* ------------------------------------------------------- */
/* header ------------------------------------------------ */
/* ------------------------------------------------------- */
#header {
	height: 150px;
	width: 100%;
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.9)
}
.headerInner {
	max-width: 1120px;
	min-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	padding: 9px 0 16px 0;
	position: relative;
}
.headerTitle {
	width: 470px;
	float: left;
}
.logo {
	width: 205px;
	height: 55px;
	margin: 0 0 10px;
	position: absolute;
	top: 20px;
}
.logo a {
	display: block;
	width: 205px;
	height: 55px;
	background: url(../images/base/logo.png);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.logoTxt {
	font-size: 1.3rem;
	position: absolute;
	top: 40px;
	left: 215px;
}
.headerInfo1 {
	width: calc(100% - 475px);
	float: right;
}
.headerInfo1 div:nth-of-type(1) {
	font-size: 2.2rem;
	text-align: right;
	margin-bottom: 8px;
}
.headerInfo1 div:nth-of-type(1) a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f098";
	margin-right: 4px;
}
.headerInfo1 div:nth-of-type(1) a {
	text-decoration: none;
	color:#222;
	cursor: default;
}
.headerInfo1 li {
	font-size: 1.5rem;
	width: calc((100% - 12px) / 4);
	float: left;
	margin-right: 4px;
}
.headerInfo1 li:last-of-type {
	margin-right: 0;
}
.headerInfo1 li a {
	display: block;
	background: #86711b;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding: 7px 2px;
}
.headerInfo1 li a:hover {background: #3b3000;}
.headerInfo1 li:nth-of-type(1) a{background: #b32626;}
.headerInfo1 li:nth-of-type(1) a:hover {background: #900000;}
.headerInfo1 li:nth-of-type(1) a::before,
.headerInfo1 li:nth-of-type(2) a::before,
.headerInfo1 li:nth-of-type(3) a::before,
.headerInfo1 li:nth-of-type(4) a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.8rem;
	margin-right: 4px;
}
.headerInfo1 li:nth-of-type(1) a::before {content: "\f05a";}
.headerInfo1 li:nth-of-type(2) a::before {content: "\f073";font-weight: 400;}
.headerInfo1 li:nth-of-type(3) a::before {content: "\f023";}
.headerInfo1 li:nth-of-type(4) a::before {content: "\f0e0";}

@media only screen and (max-width:768px) {
	#header {
		height: 76px;
		width: 100%;
		position: static;
		z-index: 2;
		border-bottom: 1px solid #ccc;
	}
	.headerInner {
		width: 100%;
		min-width: 100px;
		padding:0;
		position: static;
	}
	.headerTitle {
		width: 100%;
		float: none;
		padding:  2px 0 2px 4px;
	}
	.logo {
		width: 150px;
		height: 40px;
		margin: 0 0 2px;
		top:28px;
	}
	.logo a {
		width: 150px;
		height: 40px;
		background: url(../images/base/logoSp.png);
		background-size: 150px 40px;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
	.logoTxt {position: static;}
	.headerInfo1 {
		width: 100%;
		float: none;
		position: fixed;
		bottom: 0;
		background: rgba(245,245,245,0.9);
		height: 100px;
		padding: 5px;
		border-top: 1px solid #ccc;
		z-index: 1;
	}
	.headerInfo1 div:nth-of-type(1) {
		text-align: center;
		margin-bottom: 0;
		position: fixed;
		bottom: 5px;
		left: 5px;
		width:calc(100% - 10px);
	}
	.headerInfo1 div:nth-of-type(1) a {
		cursor: pointer;
		display: block;
		padding: 9px;
		background: #fff;
		color: #ff6600;
	}
	.headerInfo1 div:nth-of-type(1) a::after {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f0da";
		margin-left: 4px;
	}
	.headerInfo1 li {
		font-size: 1.5rem;
		width: calc((100% - 2px) / 2);
		margin-right: 0;
	}
	.headerInfo1 li:nth-of-type(1) {
		margin-right: 2px;
	}
	.headerInfo1 li:nth-of-type(2),
	.headerInfo1 li:nth-of-type(4){
		display: none;
	}
	.headerInfo1 li a {padding: 8px 2px;}
}
/* ------------------------------------------------------- */
/* global menu ------------------------------------------- */
/* ------------------------------------------------------- */
#globalmenu {
	width: 100%;
	background: #191786;
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.2);
}
.globalmenuInner {
	max-width: 1120px;
	min-width: 1000px;
	margin: 0 auto;
}
.globalmenuInner ul {
	margin: 0 auto;
}
.globalmenuInner ul li {
	position: relative;
	width: calc(100% / 5);
	float: left;
}
.globalmenuInner ul li a {
	text-decoration: none;
	width: 100%;
	height: 50px;
	display: block;
	text-align: center;
	padding-top: 14px;
	color: #fff;
	font-size: 1.8rem;
}
.globalmenuInner ul li:hover {background: #00003b;}
.globalmenuInner ul ul {
	position: absolute;
	display: block;
	display: none;
	top: 50px;
	padding: 0;
	border-left: none;
	margin: 0 auto;
	float: none;
	width: 100%;
	box-shadow: 0 0 5px 0 rgba(180,180,180,0.6);
}
.globalmenuInner ul ul li {
	display: block;
	float: none;
	border-top: 1px solid #fff;
	height: auto;
	border-right: none;
	width: 100%;
}
.gmsub a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	position: absolute;
	right: 5px;
}
.gmsubNone a::after {
	content: "";
	position: static;
	right: 0;
}
.globalmenuInner ul ul li a {
	height: auto;
	display: block;
	background: #eaeaea;
	padding: 12px 4px;
	color: #000;
	font-size: 1.6rem;
}
.globalmenuInner ul ul li a:hover {
	background-color: #dadaf8;
}
.globalmenuInner ul ul ul {
	width: 200px;
	top: 0;
	left: 200px;
	position: absolute;
	display: none;
}
.globalmenuInner ul ul ul li {
	border-top: none;
	border-bottom: 1px solid #fff;
}
.globalmenuInner ul ul ul a {background-color: #d9e8ae;}
.globalmenuInner ul ul ul a:hover {background-color: #eff6db;}
#drawernav {display: none;}

@media only screen and (max-width:768px) {
	#globalmenu {
		position: static;
		display: none;
	}
	/*スマートフォン用メニュー*/
	#page {
		padding-top: 50px;
		position: relative;
		z-index: 10;
		left: 0;
		background: #fff;
		-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
		-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
	}
	#drawernav {
		display: block;
		overflow-y: scroll;
		position: fixed;
		top: 0;
		right: -280px;
		width: 280px;
		height: 100%;
		background: #454545;
		color: #fff;
		padding-top: 50px;
		-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
		-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
		z-index: 2;
	}
	#drawernav ul {
		list-style: none;
		padding: 0;
	}
	#drawernav ul li {border-bottom: 1px solid #828282;}
	#drawernav ul li a:before {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f105";
		padding: 0 5px 0 0;
	}
	#drawernav ul li a.gmc:before {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f107";
	}
	#drawernav ul li ul {
		margin: 0 0 0 20px;
		display: none;
	}
	#drawernav ul li ul li:last-child {border-bottom: none;}
	#drawernav ul li a, #drawernav ul li span {
		color: #fff;
		display: block;
		padding: 10px;
		text-decoration: none;
	}
	#drawernav ul li a:hover {
		color: #fff;
		background: #333;
	}
	#drawernav h4 {padding: 0 15px;}
	#humberger {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 3;
		cursor: pointer;
		box-sizing: border-box;
		display: none;
		display: block;
		width: 60px;
		border-radius: 3px;
		padding: 5px 2px;
		margin: 7px 2px 0 0;
		text-align: center;
		font-size: 1.2rem;
		color: #fff;
		background: #535353;
	}
	.drawer-opened #humberger {
		position: fixed;
		background: #f7f2dd;
		color: #333;
	}
	.icon-bar {
		height: 2px;
		background: #333;
		display: block;
		margin-bottom: 6px;
		-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
		-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
	}
	.humbergerMenu:before {content: "メニュー";}
	.drawer-opened .humbergerMenu:before {content: "閉じる";}
	.fixed-content {
		right: inherit;
		width: 100%;
		z-index: 2;
		-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);

		-moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
		-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
	}
	#overlay {
		z-index: -1;
		opacity: 0;
		background: #000;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		position: fixed;
		-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
		-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		-o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
		transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
	}
	/**
	* ドロワー開放時のスタイル
	**/

	body.drawer-opened #page {
		left: -280px;
		-webkit-box-shadow: 1px 0 2px #000;
		box-shadow: 1px 0 2px #000;
	}
	body.drawer-opened .fixed-content {left: -280px;}
	body.drawer-opened #drawernav {right: 0;}
	#gmenu {display: none;}
	#humberger {display: block;}
	body.drawer-opened #humberger .icon-bar {background: #fff;}
	body.drawer-opened #overlay {
		z-index: 3;
		opacity: 0.3;
		left: -280px;
	}
	/*drawer の開閉*/
	#drawernav ul li.remove_href ul { display: none; }
	#drawernav ul li.remove_href > a:after {
		font-family: "Font Awesome 5 Free";
		font-weight: 400;
		content: "\f0fe";
		padding: 0 5px 0 0;
		position: absolute;
		font-size: 2.0rem;
		right: 0;
	}
	#drawernav ul li.remove_href > a.active:after {content: "\f146";}
	
	.spMenuBox1 {
		padding: 15px;
	}
	.spMenuBox1 a {
		display: block;
		background: #86711b;
		color: #fff;
		text-decoration: none;
		text-align: center;
		padding: 7px 2px;
	}
	.spMenuBox1 div:nth-of-type(1) a{background: #b32626; margin-bottom: 8px;}
	.spMenuBox1 div:nth-of-type(1) a::before,
	.spMenuBox1 div:nth-of-type(2) a::before {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		font-size: 1.8rem;
		margin-right: 4px;
	}
	.spMenuBox1 div:nth-of-type(1) a::before {content: "\f05a";}
	.spMenuBox1 div:nth-of-type(2) a::before {content: "\f073";font-weight: 400;}
}
/* ------------------------------------------------------- */
/* footer ------------------------------------------------ */
/* ------------------------------------------------------- */
#footer {background: #424095;}
.footerInner {
	max-width: 1120px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 30px 0;
	color: #fff;
	font-size: 1.5rem;
}
.footerInner a {color:#fff;}
.footerInfo,
.footerMenu {
	width: calc((100% - 24px) / 2);
}
.footerInfo {float: left;}
.footerOrg {
	font-weight: bold;
	display: block;
	font-size: 1.8rem;
	margin-bottom: 4px;
}
.footerInfo address ul li a {
	text-decoration: none;
	cursor: default;
}
a.footerMap {
	display: inline-block;
	background: #fff;
	border-radius: 30px;
	color: #000;
	text-decoration: none;
	font-size: 1.1rem;
	line-height: 1rem;
	padding: 5px 8px;
	margin-left: 4px;
}
a.footerMap::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	font-size: 1.4rem;
	margin-left: 4px;
}
.footerMenu {float: right;}
.footerMenu li {
	display: inline-block;
	font-size: 1.5rem;
	margin-right: 8px;
	margin-bottom: 8px;
}
.footerMenu li::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	font-size: 1.2rem;
	margin-right: 4px;
}
.footerMenu li:last-child::after {content: "";}
.footerMenu li a {text-decoration: none;}
.footerMenu li a:hover {text-decoration: underline;}
#copyright {background: #191786;}
.copyrightInner {
	max-width: 1120px;
	min-width: 1000px;
	margin: 0 auto;
	text-align: right;
	font-size: 1.2rem;
	color: #fff;
	padding: 3px 0;
}

@media only screen and (max-width:768px) {
	#footer {margin-bottom: 100px;}
	.footerInner {
		width: 100%;
		min-width: 100px;
		padding: 15px;
	}
	.footerInfo,
	.footerMenu {
		width: 100%;
		float: none;
	}
	.footerMenu {display: none;}
	.footerOrg {
		font-size: 1.65rem;
		margin-bottom: 4px;
	}
	.footerInfo address ul {padding: 18px 0 0;}
	.copyrightInner {
		width: 100%;
		min-width: 100px;
		text-align: center;
		font-size: 1.1rem;
		padding: 3px;
	}
}
@media only screen and (max-width:320px) {
	.copyrightInner {
		text-align: left;
		padding: 3px 7px;
	}
}
/* ------------------------------------------------------- */
/* side -------------------------------------------------- */
/* ------------------------------------------------------- */
.sideMenu1 {
}
.sideMidashi1 {
	background: #191786;
	color: #fff;
	text-align: center;
	font-size: 1.7rem;
	padding: 8px 2px 6px 2px;
	margin: 0 0 8px 0;
}
.sideMidashi2 {
	background: #ccc;
	color: #000;
	text-align: center;
	font-size: 1.2rem;
	padding: 6px 2px 2px 2px;
}
.user ul {
	background: #FAFAFA;
	border: 1px solid #ccc;
	padding: 6px 2px 4px 2px;
	text-align: center;
	font-size: 1.4rem;
}
.user ul {
	margin-bottom: 8px;
}
.sideMenu1 ul {
	border-bottom: 1px dotted #ccc;
	padding-bottom: 4px;
}
.sideMenu1 ul li {
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-bottom: 1px dotted #ccc;
	border-left: 4px solid #ccc;
}
.sideMenu1 ul li:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.sideMenu1 ul li ul {
	padding: 8px 0 0 8px;
	margin-bottom: 2px;
	border-bottom: none;
}
.sideMenu1 ul li ul li {
	border-left: none;
}
.sideMenu1 ul li a {
	display: block;
	background: #f8f4e1;
	padding: 10px 15px 10px 10px;
	text-decoration: none;
	position: relative;
}
.sideMenu1 ul li a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	position: absolute;
	right: 2px;
	top: 50%;
	margin-top: -11px;
	color: #7a7a7a;
}
.sideMenu1 ul li ul li a {background: #f5f5f5;}
@media only screen and (max-width:768px) {
	.sideMenu1 > .sideMidashi1 {position: relative;}
	.sideMenu1 > .sideMidashi1::after {
		font-family: "Font Awesome 5 Free";
		font-weight: 400;
		content: "\f0fe";
		position: absolute;
		right: 4px;
		top: 50%;
		margin-top: -11px;
	}
	.sideMenu1 > .sideMidashi1.active::after {content: "\f146";}
	.sideMenu1 ul {display: none;}
	.sideMenu1 ul li ul {display: block;}
}

/* ------------------------------------------------------- */
/* contents ---------------------------------------------- */
/* ------------------------------------------------------- */
#main p {margin:0 0 24px 0;}

/* ------------------------------------------------------- */
/* 404 403 ファイル -------------------------------------- */
/* ------------------------------------------------------- */
body.body404 {background:none;}
body.body404 h1.logo {margin:0px auto 40px auto;}
.sysFileBox1 {
	width: 700px;
	margin: 0 auto;
	padding: 40px;
	text-align:center;
}
.sfb1Midashi1 {
	text-align: center;
	font-size: 2.5rem;
	color: #000;
	margin: 0 0 24px 0;
}
.sysFileBox1 p {margin: 0 0 24px 0;}
a.sfb1Btn{
	background-color:#f5f5f5;
	display:block;	
	box-shadow:inset -1px -1px 0px 0px #b8b8b8;
	text-align:center;
	width:450px;
	margin:0px auto;
	padding:16px 0px;
	text-decoration:none;
	border-radius:9px;
	color:#000;
}
a.sfb1Btn:hover{
	background-color:#EFEFEF;
	box-shadow:inset 1px 1px 0px 0px #b8b8b8;
}

@media only screen and (max-width:768px) {
	.sysFileBox1 {
		width: 100%;
		padding: 24px 15px;
	}
	a.sfb1Btn{max-width:100%;}
}
/* ------------------------------------------------------- */
/* page -------------------------------------------------- */
/* ------------------------------------------------------- */
/* index ------------------------------------------------- */
.indexMidashi1 {
	text-align: center;
	font-size: 3.3rem;
	line-height: 4.0rem;
	margin-bottom: 32px;
}
.indexMidashi1 span::before,
.indexMidashi1 span::after {
	content: "―";
	padding: 0 16px;
	color: #aaaaaa;
}
@media only screen and (max-width:768px) {
	.indexMidashi1 {
		font-size: 2.6rem;
		line-height: 3.2rem;
		margin-bottom: 24px;
	}
	.indexMidashi1 span::before,
	.indexMidashi1 span::after {
		padding: 0 8px;
		font-size: 2.0rem;
	}
}
/*mainimage*/
.indexMainimage img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
/*topics*/
.indexTopics {
	max-width: 1120px;
	min-width: 1000px;
	padding: 32px 0;
	margin: 0 auto;
}
.indexTopics h2 {
	width: 143px;
	float: left;
	border-left: 4px solid #c0ae65;
	color: #86711b;
	font-size: 3.2rem;
	text-align: center;
	padding: 16px 0 12px 14px;
}
.indexTopics ul {
	width: calc(100% - 190px);
	float: right;
}
.indexTopics ul li {
	list-style: disc;
	margin-bottom: 6px;
}
.indexTopics ul li:last-of-type {margin-bottom: 0;}
@media only screen and (max-width:768px) {
	.indexTopics {
		width: 100%;
		min-width: 100px;
		padding: 0 15px 16px;
		margin: 0 auto;
	}
	.indexTopics h2 {
		width: 100%;
		float: none;
		font-size: 2.6rem;
		text-align: left;
		padding: 4px 0 2px 16px;
		margin: 0 0 16px 0;
	}
	.indexTopics ul {
		width: 100%;
		float: none;
		padding-left: 16px;
	}
	.indexTopics ul li {
		list-style: disc;
		margin-bottom: 6px;
	}
	.indexTopics ul li:last-of-type {
		margin-bottom: 0;
	}
}
/*indexMenu*/
.indexMenu {
	background: #191786;
	margin-bottom: 40px;
}
.indexMenu ul {
	max-width: 1120px;
	min-width: 1000px;
	padding: 60px 0 50px;
	margin: 0 auto;
	display: flex;
}
.indexMenu ul li {
	width: calc((100% - 48px) / 3);
	margin-right: 24px;
	background: #fff;
	padding: 16px;
	text-align: center;
	border-top: 3px solid #c0ae65;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.5);
}
.indexMenu ul li:last-of-type {margin-right: 0;}
.indexMenu ul li dt {
	color: #3b3000;
	font-size: 2.4rem;
	padding: 60px 0 24px 0;
	position: relative;
}
.indexMenu ul li dt::after {
	display: block;
	content: "";
	width: 160px;
	height: 100px;
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -80px;
}
.indexMenu ul li:nth-of-type(1) dt::after {background: url(../images/contents/index/indexMenuIcon1.png) top center no-repeat;}
.indexMenu ul li:nth-of-type(2) dt::after {background: url(../images/contents/index/indexMenuIcon2.png) top center no-repeat;}
.indexMenu ul li:nth-of-type(3) dt::after {background: url(../images/contents/index/indexMenuIcon3.png) top center no-repeat;}
.indexMenu ul li dd {margin-bottom: 2px;}
.indexMenu ul li dd a {
	display: block;
	background: #faf7e8;
	padding: 16px 30px 16px 16px;
	text-decoration: none;
	position: relative;
}
.indexMenu ul li dd a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -10px;
	color: #7a7a7a;
}
.indexMenu ul li dd a:hover {background: #f6f1d6;}
@media only screen and (max-width:768px) {
	.indexMenu {
		padding: 0 10px;
		margin-bottom: 32px;
	}
	.indexMenu ul {
		width: 100%;
		min-width: 100px;
		padding: 40px 0;
		display: block;
	}
	.indexMenu ul li {
		width: 100%;
		margin-right: 0;
		padding: 16px 16px 40px 16px;
		box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
	}
	.indexMenu ul li:last-of-type {padding-bottom: 16px;}
	.indexMenu ul li dt {
		font-size: 2.3rem;
		padding: 25px 0 8px 0;
		position: relative;
	}
	.indexMenu ul li dt::after {
		width: 120px;
		height: 70px;
		margin-left: -60px;
	}
	.indexMenu ul li:nth-of-type(1) dt::after,
	.indexMenu ul li:nth-of-type(2) dt::after,
	.indexMenu ul li:nth-of-type(3) dt::after {
		background-size: 120px 120px;
	}
}
@media only screen and (max-width:320px) {
	.indexMenu ul li dd a {font-size: 1.5rem;}
}
/*indexActivity*/
.indexActivity {margin-bottom: 40px;}
.indexActivity.activityList1 #al1Default,
.indexActivity.activityList1 #tab-box1 {
	margin-bottom: 24px;
}
@media only screen and (max-width:768px) {
	.indexActivity {margin-bottom: 32px;}
	.indexActivity.activityList1 #al1Default,
	.indexActivity.activityList1 #tab-box1 {
		margin-bottom: 16px;
	}
}
/*indexNews*/
.indexNews {
	background: #f6f6f6;
	padding: 40px 0;
	margin-bottom: 40px;
}
.indexNews.newsList1 ul {margin-bottom: 24px;}
@media only screen and (max-width:768px) {
	.indexNews {
		background: #f6f6f6;
		padding: 32px 0;
		margin-bottom: 32px;
	}
	.indexNews.newsList1 ul {margin-bottom: 16px;}
}
/*indexLibrary*/
.indexLibrary {margin-bottom: 40px;}
.indexLibrary.libraryList1 ul {margin-bottom: 24px;}
@media only screen and (max-width:768px) {
	.indexActivity {margin-bottom: 32px;}
	.indexLibrary.libraryList1 ul {margin-bottom: 16px;}
}

/* 活動案内リスト1&2 ---------------------------------------- */
.new1 {
	display: inline-block;
	background: #ff0000;
	color: #fff;
	font-size: 1.2rem;
	padding: 6px;
	line-height: 1.0rem;
	margin: 0 4px;
}
/*カテゴリーカラー*/
.al1bc1,
.al2bc1{
	background: #191786;
}
.al1bc2,
.al2bc2{
	background: #a48813;
}
.al1bc3,
.al2bc3{
	background: #b32626;
}
.al1bc4,
.al2bc4{
	background: #79940c;
}
/*タブ*/
.al1tabCategory {
	overflow: hidden;
	margin-bottom: 16px;
	border-bottom: 2px solid #dfdfdf;
}
.al1tabCategory li {
	width: calc((100% - 6px) / 4);
	float: left;
	margin-right: 2px;
	display: table;
	cursor: pointer;
}
.al1tabCategory li:nth-child(4n) {
	margin-right: 0;
}
.al1tabCategory li span {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	padding: 5px 2px;
	text-align: center;
}
.al1tabCategory li span::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-right: 8px;
}
/*リスト*/
#al1Default {display: block;}
#tab-box1 {display: none;}
.al1ist,
.al2ist{
	overflow: hidden;
}
.al1ist {display: none;}
.al1ist.active {display: block;}
.al1ist li,
.al2ist li{
	overflow: hidden;
}
.al1ist li {
	border-bottom: 1px solid #ececec;
	padding: 0 0 8px 0;
	margin: 0 0 8px 0;
}
.al2ist li {
	padding: 16px;
	margin: 0 0 16px 0;
	border: 1px solid #e2e2e2;
	border-left: 3px solid #666;
}
.al1ist li:last-child,
.al2ist li:last-child{
	margin: 0;
}
.al1Category,
.al2Category{
	color: #fff;
	float: left;
	padding: 5px;
	font-size: 1.4rem;
	text-align: center;
	margin: 0 5px 0 0;
	width: 100px;
}
.al1Date,
.al2Date{
	float: left;
	margin: 0 5px 0 0;
	padding: 5px;
}
.al1Date{
	width: 150px;
	font-size: 1.3rem;
	color: #666;
}
.al2Date{
	width: 400px;
	font-size: 1.5rem;
}
.al2Date::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: "\f073";
	margin-right: 4px;
	font-size: 1.6rem;
}
.al1Title {
	width: calc(100% - 270px);
	float: right;
	margin: 0;
	padding: 5px;
}
.al2Title {
	clear: both;
	padding: 16px 0 0 0;
	font-size: 1.8rem;
	line-height: 3.0rem;
}

/*行事一覧追加アイコン用*/
.al2Type, .al2TypeC {
	float: left;
	padding:4px 5px;
	font-size: 1.5rem;
	text-align: center;
	margin: 0 5px 0 0;
	width: 60px;
	/*border:1px solid #ccc;*/
	border:1px solid #ffc6c6;
	background: #ffdada;
}
.al2TypeC { background: #fff; border: 1px solid #ccc; }

@media only screen and (max-width:768px) {
	.activityList1 {position: static;}
	/*タブ*/
	.al1tabCategory {
		overflow: hidden;
		margin-bottom: 16px;
	}
	.al1tabCategory li {
		width: 24.5%;
		width: calc((100% - 6px) / 4);
	}
	.al1tabCategory li span {
		font-size: 1.4rem;
		line-height: 1.6rem;
		padding: 8px 0;
	}
	.al1tabCategory li span::before {
		content: "";
		display: none;
	}
	.al1tabCategory li span::after {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f0dd";
		display: block;
	}
	/*リスト*/
	.al1ist,
	.al2ist{
		margin: 0 0 8px 0;
	}
	.al2ist li {
		padding: 8px;
		margin: 0 0 8px 0;
	}
	.al1Category,
	.al2Category{
		color: #fff;
		float: left;
		width: 80px;
		padding: 1px;
		font-size: 1.3rem;
		text-align: center;
		margin: 0 5px 0 0;
	}
	.al2Category,
	.al2Type,
	.al2TypeC {
		margin-bottom: 10px;
	}
	.al1Date {
		width:calc(100% - 110px);
		float: left;
		margin: 0 5px 0 0;
		color: #666;
		padding: 2px;
		font-size: 1.3rem;
	}
	.al2Date {
		width: 100%;
		float: none;
		clear: both;
		padding: 2px 8px 1px 8px;
		background: #f5f5f5;
		margin-bottom: 10px;
	} 
	.al1Title {
		float: none;
		clear: left;
		margin: 0;
		width: 100%;
		color: #666;
		padding: 5px 0 0 0;
	}
	.al2Title {
		clear: both;
		padding: 0;
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.al2Type, .al2TypeC {
		width: 80px;
		padding: 0 5px;
		font-size: 1.3rem;
	}
}

/* 共通リスト日付＋タイトル ------------------------------ */
.newsList1 ul {overflow: hidden;}
.newsList1 li {
	overflow: hidden;
	border-bottom: 1px solid #ececec;
	padding: 0 0 8px 0;
	margin: 0 0 8px 0;
}
.newsList1 li:last-child {margin: 0;}
.nl1Date {
	width: 150px;
	float: left;
	margin: 0 5px 0 0;
	color: #666;
	padding: 5px;
	font-size: 1.3rem;
}
.nl1Title {
	float: right;
	margin: 0;
	width: calc(100% - 170px);
	padding: 5px;
}
@media only screen and (max-width:768px) {
	.newsList1 li {
		overflow: hidden;
		border-bottom: 1px solid #ececec;
		padding: 0 0 8px 0;
		margin: 0 0 8px 0;
	}
	.nl1Date {
		width:100%;
		float:none;
		margin: 0 0 8px 0;
		padding: 0;
	}
	.nl1Title {
		width:100%;
		float:none;
		padding: 0;
	}
}

/* 書庫リスト -------------------------------------------- */
/*カテゴリーカラー*/
.ll1bc1 {background: #ffde00;}
.ll1bc2 {background: #a9e4e9;}
.libraryList1 {overflow: hidden;}
.libraryList1 li {
	overflow: hidden;
	border-bottom: 1px solid #ececec;
	padding: 0 0 8px 0;
	margin: 0 0 8px 0;
}
.libraryList1 li:last-child {margin: 0;}
.ll1Category {
	float: left;
	width: 100px;
	padding: 5px;
	font-size: 1.4rem;
	text-align: center;
	margin: 0 5px 0 0;
}
.ll1Title {
	width: calc(100% - 120px);
	float: right;
	margin: 0;	
	padding: 5px;
}
@media only screen and (max-width:768px) {
	.ll1Category {
		float: none;
		width: 100px;
		padding:0;
		margin: 0 0 8px 0;
	}
	.ll1Title {
		float: none;
		width: 100%;
		margin: 0;	
		padding: 0;
	}
}

/* バナーリスト1 -------------------------------------------- */
.bnrList1 {overflow: hidden;}
.bnrList1 li {
	width: calc((100% - 48px) / 3);
	float: left;
	margin-right: 24px;
}
.bnrList1 li:nth-of-type(3n) {margin-right: 0;}
.bnrList1 li img {
	display: block;
	margin: 0 auto;
}
@media only screen and (max-width:768px) {
	.bnrList1 {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	.bnrList1 li {
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 4px;
	}
}

/* 会員名簿一覧 ---------------------------------------- */
ul.memberList1.float2col1 li table {
	width: 100%;
	table-layout: fixed;
}
ul.memberList1.float2col1 li table td {
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.memberList1 li th {
	width: 110px;
	font-size: 1.4rem;
	text-align: center;
	vertical-align: middle;
}

@media only screen and (max-width:768px) {
	.memberList1 li th {
		width: 90px;
		text-align: left;
	}
}

/* 行事詳細 ---------------------------------------- */
.activityForm h2 {
	text-align: center;
	margin-bottom: 24px;
}
.activityForm h2 span {
	display: block;
}
.activityForm h2 span:nth-of-type(1) {
	margin: 0 0 16px 0;
}
.activityForm h2 span:nth-of-type(2) {
	font-size: 3.0rem;
	position: relative;
}
.activityForm h2 span:nth-of-type(2)::after {
	content: "";
	display: block;
	width: 120px;
	height: 2px;
	border-bottom: 4px dotted #999;
	position: absolute;
	bottom: -12px;
	left: 50%;
	margin-left: -60px;
}
.activityForm tr:nth-of-type(6) td textarea {
	height: 150px;
}
.activityLink1 {
	text-align: right;
	margin-bottom: 30px;
}
.activityLink1 .printBtn1,
.activityLink1 .listMore2 {
	display: inline-block;
}
@media only screen and (max-width:768px) {
	.activityForm h2 span:nth-of-type(2) {
		font-size: 2.5rem;
	}
	.activityLink1 .printBtn1,
	.activityLink1 .listMore2 {
		display: block;
		text-align: center;
	}
	.activityLink1 .printBtn1 {
		margin-bottom: 8px;
	}
	.activityLink1 .printBtn1 a,
	.activityLink1 .listMore2 a {
		width: 250px;
		margin:0 auto;
		padding: 12px 12px 12px 8px;
		position: relative;
	}
	.activityLink1 .printBtn1 a::after,
	.activityLink1 .listMore2 a::after {
		position: absolute;
		right: 4px;
		top: 50%;
		margin-top: -11px;
	}
}

/* 東京代協の概要 ---------------------------------------- */
.outlineTable1 {
	table-layout: fixed;
}
.outlineTable1 th {
	text-align: left;
}
.outlineTable1 td {
	text-align: right;
}
.outlineTable1 tr:nth-of-type(1) th,
.outlineTable1 tr:nth-of-type(1) td,
.outlineTable1 tr:nth-of-type(2) th{
	text-align: center;
}
.outlineTable1 tr:nth-of-type(1) span {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin: 0 auto;
	white-space: nowrap;
	width: 1em;
	line-height: 1em;
}
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(1) {
	width: 28%!important;
}
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(2),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(3),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(4),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(5),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(6),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(7),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(8),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(9),
.outlineTable1 tr:nth-of-type(1) th:nth-of-type(10),
.outlineTable1 td{	
		width: 8%!important;
	}
@media only screen and (max-width:768px) {
	.outlineTable1 {
		 font-size: 1.0rem;
		line-height: 1.6rem;
	}
	.outlineTable1 th,
	.outlineTable1 td {
		padding: 1px 2px;
	}

}
/* 訃報一覧 -------------------------------------------- */
.okuyamiList1 th {
	width: 110px;
}
/* 訃報詳細 -------------------------------------------- */
.okuyamiDetailBox1 {
	overflow: hidden;
}
.okuyamiDetailBox1 div:nth-of-type(1) {
	width: 300px;
	float: right;
}
.okuyamiDetailBox1 div:nth-of-type(2){
	width:calc(100% - 324px);
	float: left;
}
@media only screen and (max-width:768px) {
	.okuyamiDetailBox1 div:nth-of-type(1),
	.okuyamiDetailBox1 div:nth-of-type(2){
		width: 100%;
		float: none;
	}
	.okuyamiDetailBox1 div:nth-of-type(1) img {
		display: block;
		max-width: 280px;
		margin: 0 auto 24px;
	}
}
/* ページ送り -------------------------------------------- */
.pagenate1 {
	text-align: center;
	padding: 40px 0 0 0;
}
.pagenate1 div,
.pagenate1 ul,
.pagenate1 ul li{
	display: inline-block;
}
.pagenate1 a {
	display: block;
	padding:8px 16px;
	border: 1px solid #ccc;
	text-decoration: none;
}
.pagenate1 div.pagenate1back a::before,
.pagenate1 div.pagenate1next a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.pagenate1 div.pagenate1back a::before {content: "\f104"; margin-right: 6px;}
.pagenate1 div.pagenate1next a::after {content: "\f105"; margin-left: 6px;}

@media only screen and (max-width:768px) {
	.pagenate1 {padding: 24px 0 0 0;}
	.pagenate1 a {
		display: block;
		padding:8px 12px;
	}
	.pagenate1 div a span {display: none;}
	.pagenate1 div.pagenate1back a::before,
	.pagenate1 div.pagenate1next a::after {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
	}
	.pagenate1 div.pagenate1back a::before {content: "\f104"; margin-right:0;}
	.pagenate1 div.pagenate1next a::after {content: "\f105"; margin-left:0;}
}

/* フォーム ---------------------------------------------- */
.formSet1 textarea,
.formSet1 input[type="text"] {
	padding: 6px;
}
.formSet1 textarea {
	width: 100%;
}
.formSet1 select {
	padding: 4px;
}
.formBtnSet1 {
	text-align: center;
}
.formBtnSet1 li {
	display: inline-block;
	padding: 0 4px;
}
.formBtnSet1 input {
	padding: 10px 24px;
	cursor: pointer;
	font-size: 1.7rem;
	width: 150px;
	border: 1px solid #ccc;
	background: #f5f5f5;
}
.formBtnSet1 input[type="submit"] {
	background: #b21924;
	color: #fff;
	border: none;
}

@media only screen and (max-width:768px) {
	.formBtnSet1 input {
		border-radius: 0;
		-webkit-box-sizing: content-box;
		-webkit-appearance: none;
		appearance: none;
		border: none;
		box-sizing: border-box;
		cursor: pointer;
	}
	.formBtnSet1 input::-webkit-search-decoration {
		display: none;
	}
	.formBtnSet1 input:focus {
		outline-offset: -2px;
	}
	.formSet1 input[type="text"] {
		width: 100%;
	}
	.formBtnSet1 li {
		padding: 0 1px;
	}
	.formSet1 input[type="submit"],
	.formSet1 input[type="reset"],
	.formSet1 input[type="button"] {
		padding: 10px;
		font-size: 1.6rem;
		width: auto;
		border: 1px solid #ccc;
		background: #f5f5f5;
	}
	.formSet1 input[type="submit"] {
		background: #b21924;
		color: #fff;
		border: none;
		padding: 10px 32px;
	}
	.formPostalCode1 input {
		width: 100px!important;
	}
	.formPref1,
	.formMb8 select {
		margin-bottom: 8px;
	}
	.formSet1w1 {
		width: 100px!important;
	}
}

/* Myページ -------------------------------------------- */

#loginForm {
	background: #FAFAFA;
	border: 1px solid #CCC;
	width: 300px;
	padding: 15px;
}
#loginForm label {
	width: 85px;
	float: left;
	display: block;
}
#loginForm input[type=text], #loginForm input[type=password] {
	width: 170px;
	float: right;
}
#loginForm div {
	margin-bottom: 10px;
}
#loginForm h3 {
	border-bottom: 1px solid#CCC;
	margin-bottom: 15px;
	text-align: center;
}
#loginForm span {
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	display: block;
}

/* アーカイブ -------------------------------------------- */

.archive a {
	text-decoration: none;
	display: block;
}
.archive a:hover { color: black; }
.archive td:hover {
	background: #eee;
}

/* SNSボタン -------------------------------------------- */
.snsBtn1 li {
	display: inline-block;
	margin-bottom: 8px;
}
.fb_iframe_widget > span {
  vertical-align: baseline !important;
}

/* 調整 -------------------------------------------------- */

.fa-file-pdf::before { margin-left: 5px; }

/* ------------------------------------------------------- */
/* プリント用 -------------------------------------------- */
/* ------------------------------------------------------- */
/*印刷ボタン*/
.printBtn1 a {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 8px 16px;
	text-decoration: none;
}
.printBtn1 a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f02f";
	margin-right: 8px;
	font-size: 2.0rem;
}
.printBtn1 a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	margin-left: 8px;
	font-size: 2.0rem;
}
/*印刷専用ページ*/
.printHeader,
.printContents,
.printFooter {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.printHeader {
	margin: 8px auto 16px;
	padding: 0;
	overflow: hidden;
}
.printHeader .headerTitle {
	width: 470px;
	float: none;
}
.printHeader .logo {
	width: 205px;
	height: 55px;
	margin: 0 16px 0 0;
	position: static;
	float: left;
}
.printHeader .logo a {
	display: block;
	width: 204px;
	height: 55px;
}
.printHeader .logo a img {
	display: block;
	width: 204px;
	height: 55px;
}
.printHeader .logoTxt {
	font-size: 1.3rem;
	position: static;
	padding: 20px 0 0 0;
}
.printContents {
	margin-bottom: 32px;
}
.printContents a,
.printContents a:hover{
	color: #000;
}
.printContents h1 {
	text-align: center;
	font-weight: bold;
	font-size: 1.9rem;
	padding: 16px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 0 0 16px 0;
}
.printContents h2 {
	font-weight: bold;
	font-size: 1.8rem;
	margin: 0 0 8px 0;
}
.printContents h2::before {
	content: "●";
}
.printContents table,
.printContents th,
.printContents td{
	border: 1px solid #000;
}
.printContents th {
	background: none;
}
.printFooter {
	text-align: center;
	font-size: 1.2rem;
}
@media only screen and (max-width:768px) {
	.printHeader,
	.printContents,
	.printFooter {
		width: 100%;
		padding: 0 15px;
	}
	.printHeader {
		margin: 8px auto;
		padding: 0;
		overflow: hidden;
	}
	.printHeader .headerTitle {
		width: 100%;
	}
	.printHeader .logo {
		width: 150px;
		height: 40px;
		margin: 0 auto 8px;
		float: none;
	}
	.printHeader .logo a,
	.printHeader .logo a img{
		display: block;
		width: 150px;
		height: 40px;
	}
	.printHeader .logoTxt {
		text-align: center;
		padding: 0;
	}
	.printContents {
		margin-bottom: 16px;
	}
	.printContents h1 {
		font-size: 1.8rem;
		padding: 12px 0;
		margin: 0 0 12px 0;
	}
	.printContents h2 {
		font-size: 1.7rem;
	}
	.printContents h2::before {
		content: "●";
	}
	.printContents th,
	.printContents td{
		border:none;
	}
	.printContents th {
		border-bottom: 1px dotted #000;
		font-weight: bold;
	}
	.printFooter {
		text-align: center;
		font-size: 1.2rem;
	}
}
/*プリント用media*/
@media print {	
	#humberger, #pageTop, #pageTop div, #movePageTop, #pageTop p {
		display: none;
	}
	#container {padding: 0;}
	#header {position: static;}
	#container {padding: 0;}
	#wrapper {
		min-width: 1000px;
		width: 100%;
		margin: 0 0 40px 0;
		padding: 0;
		overflow: hidden;
	}
	/* 2つ並びのリスト 768px以下で1列に */
	ul.float2col1 li:nth-child(odd) {
		clear: left;
		margin-right: 11px;
	}
	ul.float2col1 li:nth-child(even) {
		margin-left: 11px;
	}
	/* 2つ並びのボックス */
	.floatLeft2col1 {
		margin-right: 11px;
	}
	.closeBtn1 {
		display: none;
	}
}
