@charset "utf-8";
/**
 * Media Print CSS
 * 2017mar01wed
 * Ishinomaki Pref. Pharmaceutical Association
**/
/*-----------------------------------------
Basic structure

headerとfooterを画面いっぱいにする時、
htmlに対してだけ、positionとmin-height指定
-----------------------------------------*/
html {
	position:relative;
	min-height:100%;
}
/*ディスプレイ左右の余白対策*/
* {
	margin:0;
	padding:0;
}
html,
body {
	height:100%;
	margin:0;
}
body {
	line-height:180%;
	font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	color:#333;
}
/*-----------------------------------------
いろいろ
-----------------------------------------*/
/*borderの太さやpaddingの大きさをwidthに含める*/
* { box-sizing: border-box;
		-moz-box-sizing: border-box; }
/*IE7で文字拡大した時にレイアウト崩れが起きないおまじない*/
*{ letter-spacing: 0; }

/*改行//　spanにclassつけると囲んだ箇所が改行
スマホ用なので通常は非表示
-----------------------------------------*/
.br-mob:before {
	display:none;
}
/*-----------------------------------------
image
-----------------------------------------*/
img {
	border-style:none;
	display:block;
	max-width:100%;
	height:auto;
}
a:hover img {
	-moz-opacity:0.5;
	opacity:0.5;
	filter:alpha(opacity=50);
}

/*WordPress記事中画像配置位置指定
------------------------------------------*/
.aligncenter {
    display: block;
    margin: 5px auto;
}
.alignright {
	display: block;
	float: right;
	margin:5px 0px 5px 10px;
}
.alignleft {
	display: block;
	float: left;
	margin:5px 10px 5px 0px;
}

/*clearfix
記事内画像配置でfloat使用するため
-------------------------------------------*/
.clearfix {
    overflow: hidden;
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/*-----------------------------------------
text
-----------------------------------------*/
.white { color:#fff; }
.red { color:#990f23; }
.blue { color:#005eb3; }
.green { color:#00660d; }
.bold { font-weight: bolder; }

.big { font-size:120%; }
.regular { font-size:90%; }
.small { font-size:70%; }
.vsmall { font-size:50%; }

/*-----------------------------------------
link　color指定はここではしない個別に指定する
-----------------------------------------*/
a {
	text-decoration:none;
}
a:link {
	text-decoration:none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
a:active {
	text-decoration:none;
}
/*-----------------------------------------
Main frame
-----------------------------------------*/
/*-----------------------------------------
header//index
-----------------------------------------*/
header {
	position:static;
	width:100%;
	height:488px;
	border-bottom:6pt solid #caebf2;
}
header section.logo-area {
	position:absolute;
	z-index:1;
	width:100%;
	height:100px;
}
header section.header-image {
	position:relative;
	z-index:-1;
	width:100%;
	margin:0 auto;
}
		header section.header-image img {
			width:980px;
			margin:0 auto;
		}

	section.subheader-image {
		position:relative;
		width:100%;
		height:300px;
		background:url('images/header_purple.jpg') #fff no-repeat;
	}
		section.subheader-image h1 {
			position:absolute;
			top:30%;
			left:5%;
			font-weight:bolder;
		/*文字のフチドリ-----------------*/
			filter:dropshadow(color=#ffffff,offX= 0,offY=-1)
			dropshadow(color=#ffffff,offX= 1,offY= 0)
			dropshadow(color=#ffffff,offX= 0,offY= 1)
			dropshadow(color=#ffffff,offX=-1,offY= 0);

			-webkit-text-stroke-color: #fff;
			-webkit-text-stroke-width: 1px;

			text-shadow: white 1px 1px 0px, white -1px 1px 0px,
			             white 1px -1px 0px, white -1px -1px 0px;
		}
	section.subheader-image-pc {
		position:relative;
		width:100%;
		height:300px;
		background:url('images/primary-care-header.png') #fff no-repeat;
	}
/*-----------------------------------------
ログアウトボタン
-----------------------------------------*/
.logout-btn  {
	display:none;
}
/*-----------------------------------------
画面いっぱいコンテンツ
-----------------------------------------*/
div#container {
	width:100%;
	min-height:100%;
	margin-bottom:-410px;
}
nav {
	position:relative;
}
/*-----------------------------------------
navigation//index
-----------------------------------------*/
	.main-nav ul {
		display: -webkit-flex; /* Safari */
		display:flex;
		flex-flow: row;
		-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
		align-items: center; /* 縦方向中央揃え */
		-webkit-justify-content: space-between; /* Safari */
		justify-content:         space-between;
		width:100%;
		height:80px;
		list-style:none;
		margin:-88px 0 0 0;
	}
		.main-nav ul li {
			flex:1;
			width:192px;
			text-align:center;
			margin:0 5px;
			color:#333;
		}
			.main-nav ul li:hover {
				flex:1;
				height:80px;
				background:#caebf2;
				border-radius:8px 0 0 0;

				-webkit-transition: all 0.3s;
				-moz-transition: all 0.3s;
				transition: all 0.3s;
			}
			.main-nav ul li a,
			.main-nav ul li a:link,
			.main-nav ul li a:visited,
			.main-nav ul li a:active {
				text-decoration:none;
				color:#333;
			}
/*-----------------------------------------
contents
主にindex
-----------------------------------------*/
/*Contents-harfをflexで並べるための枠*/
	div.Contents-wrap {
		position:relative;
		width:980px;
		margin:16px auto 0 auto;
		padding-bottom:110px;
	}
	section.Contents {
		position:relative;
		display: -webkit-flex; /* Safari */
		display:flex;
		margin-bottom:15px;
	}
		div.Contents-harf {
			flex:1;
			margin:0 15px 0 0;
			padding:0;
		}
		div.Contents-harf:last-child {
			margin:0 0 0 0;
		}
		section.Notice {
			position:relative;
			background:#fff;
		}
		section.Notice ul li a {
			color:#ff3b3f;
		}
		section.Attention {
			position:relative;
			height:auto;
			margin-bottom:15px;
			background:#fff;
		}
		section.Attention:last-child {
			margin-bottom:0;
		}
			section.Notice ul {
				list-style:none;
				margin:1em;
			}
			section.Notice ul li {
				margin:0.5em 0;
				padding:0.5em;
				line-height:1.5;
				border-bottom:1pt dotted #a9a9a9;
			}
		section.Notice h2,
		section.Attention h2 {
			width:100%;
			font-size:120%;
			font-weight:bold;
			padding:0.5em;
			color:#000;
			background: repeating-linear-gradient(45deg, #caebf2, #caebf2 5px, #fff 0, #fff 10px);
		}
		section.Notice div.text,
		section.Attention div.text {
			margin:1em;
		}
/*休日当番薬局
------------------------------------------------------*/
	dl.duty {
		width:100%;
		height:auto;
		margin:1em auto;
	}
		dl.duty dt {
			width:20%;
			line-height:1.5;
			padding:0.5em;
			float:left;
			clear:both;
		}
		dl.duty dd.ph-name {
			width:26%;
			line-height:1.3;
			padding:0.5em 0;
			font-size:110%;
			font-weight:bold;
			float:left;
		}
		dl.duty dd.tel-no {
			line-height:1.5;
			padding:0.5em;
			float:left;
		}
/* indexにあるボタン
------------------------------------------------------*/
	.button-frame {
		width:100%;
		clear:both;
		text-align:right;
	}
		.direction-pdf {
			display: inline-block;
			width:35%;
			padding:0.5em;
			margin:1em 0 1em 0;
			color:#fff;
			font-size:80%;
			text-align:center;
			background:#54b317;
			border-radius:6px;
		}
			.direction-pdf:hover {
				border:1pt solid #54b317;
				color:#54b317;
				font-weight:bold;
				background:#fff;
				text-decoration:none;
			}
				.direction-pdf::before,
				.direction-pdf::after {
					position: absolute;
					z-index: -1;
					display: block;
					content: '';
				}
				.direction-pdf,
				.direction-pdf::before,
				.direction-pdf::after {
					-webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					-webkit-transition: all .3s;
					transition: all .3s;
				}
		.direction-r {
			display: inline-block;
			width:35%;
			padding:0.5em;
			margin:1em 0 1em 0;
			color:#fff;
			font-size:80%;
			text-align:center;
			background:#ff3b3f;
			border-radius:6px;
		}
			.direction-r:hover {
				border:1pt solid #ff3b3f;
				color:#ff3b3f;
				font-weight:bold;
				background:#fff;
				text-decoration:none;
			}
				.direction::before,
				.direction::after {
					position: absolute;
					z-index: -1;
					display: block;
					content: '';
				}
				.direction-r,
				.direction-r::before,
				.direction-r::after {
					-webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					-webkit-transition: all .3s;
					transition: all .3s;
				}
		.direction {
			display: inline-block;
			width:35%;
			padding:0.5em;
			margin:1em 0 1em 65%;
			color:#fff;
			font-size:80%;
			text-align:center;
			background:#ff3b3f;
			border-radius:6px;
		}
			.direction:hover {
				border:1pt solid #ff3b3f;
				color:#ff3b3f;
				font-weight:bold;
				background:#fff;
				text-decoration:none;
			}
				.direction::before,
				.direction::after {
					position: absolute;
					z-index: -1;
					display: block;
					content: '';
				}
				.direction,
				.direction::before,
				.direction::after {
					-webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					-webkit-transition: all .3s;
					transition: all .3s;
				}
		.btn-search {
			display:inline-block;
			width:100%;
			height:80px;
			padding:1em;
			border-radius:6px;
			text-align:center;
			font-size:120%;
			line-height:40px;
			color:#000;
			border:1px solid #cfcfcf;

			/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f6f8f9+0,e5ebee+50,d7dee3+51,f5f7f9+100;White+Gloss */
			background: rgb(246,248,249); /* Old browsers */
			background: -moz-linear-gradient(top,  rgba(246,248,249,1) 0%, rgba(229,235,238,1) 50%, rgba(215,222,227,1) 51%, rgba(245,247,249,1) 100%); /* FF3.6-15 */
			background: -webkit-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* Chrome10-25,Safari5.1-6 */
			background: linear-gradient(to bottom,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9',GradientType=0 ); /* IE6-9 */
		}
			.btn-search:hover {
				border:1pt solid #3d6973;
				color:#3d6973;
				font-weight:bold;
				background:#fff;
				text-decoration:none;
			}
				.btn-search::before,
				.btn-search::after {
					position: absolute;
					z-index: -1;
					display: block;
					content: '';
				}
				.btn-search,
				.btn-search::before,
				.btn-search::after {
					-webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					-webkit-transition: all .3s;
					transition: all .3s;
				}
	div.support-area {
		display: -webkit-flex; /* Safari */
		display:flex;
		-webkit-flex-direction: row; /* Safari */
		flex-direction:         row;
		-webkit-flex-wrap: wrap; /* Safari */
		flex-wrap:         wrap;
	}
		div.btn-fusen {
			flex:auto;

			width:47.8%;
			padding:1em;
			margin:0 10px 10px 0;
			background:#ededed;
			border-left:18pt solid #caebf2;

			box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.6);
			-webkit-box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.6);
			-moz-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.6);
		}
			div.btn-fusen:nth-child(2n) {
				margin:0 0 10px 0;
			}
			div.btn-fusen:nth-child(4n+2) {
				border-left:18pt solid #cfffb3;
			}
			div.btn-fusen:nth-child(4n+3) {
				border-left:18pt solid #ffe5af;
			}
			div.btn-fusen:nth-child(4n+4) {
				border-left:18pt solid #ffb3b3;
			}
		div.btn-fusen a:hover {
			font-weight:bold;
		}
		div.btn-fusen a,
		div.btn-fusen a:link,
		div.btn-fusen a:visited,
		div.btn-fusen a:active {
			text-decoration:none;
			color:#333;
		}
/*-----------------------------------------
footer
-----------------------------------------*/
	#footer,
	.push {
		height:430px;
	}
	section.foot-bn-area {
		width:100%;
		height:100px;
		padding:20px 0;
		background:#9eb4b9;
	}
		section.foot-bn-area ul {
			height:60px;
			list-style:none;

			display: -webkit-flex; /* Safari */
			display:flex;
			flex-flow: row; /*左から右へ*/
			-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
			align-items: center; /* 縦方向中央揃え */
			-webkit-justify-content: center; /* Safari */
			justify-content:         center; /*コンテンツは左寄せ*/
		}
			section.foot-bn-area ul li {
				width:168px;
				margin-left:15px;
			}
	footer {
		width:100%;
		height:330px;
		background:#e2eaec;
	}

		.foot-frame {
			width:980px;
			margin:0 auto;
			padding:2em 0 1em 0;

			display: -webkit-flex; /* Safari */
			display:flex;
			flex-flow: row;
			-webkit-align-items: flex-start;
			align-items: flex-start;
			/* -webkit-align-self: auto | flex-start | flex-end | center | baseline | stretch; Safari */
			align-self: auto;
			/* -webkit-justify-content: space-between; */
			justify-content:         space-between;
		}
		.foot-box:last-child {
			-webkit-align-self: flex-end;
			align-self: flex-end;
		}
			.foot-box img {
				margin-bottom:-1em;
			}

		nav.foot-nav {
			font-size:90%;
		}
		nav.foot-nav ul {
			list-style:none;
			clear:both;
			margin:0;
			padding:0;
		}
		nav.foot-nav ul li {
			display:block;
			margin:0.3em 0;
			padding:0.3em;
		}
			nav.foot-nav ul li a,
			nav.foot-nav ul li a:link,
			nav.foot-nav ul li a:visited,
			nav.foot-nav ul li a:active {
				text-decoration:none;
				color:#000;
			}
			nav.foot-nav ul li a:hover {
				padding:0.3em;
				background:#9eb4b9;
			}
/*-----------------------------------------
上へ戻るボタン
-----------------------------------------*/
	#page-top { display:none; }
	#page-top a { display:none; }
	#page-top a:hover { display:none; }

/*//////////////////////////////////////////

subページstyle

//////////////////////////////////////////*/
/*-----------------------------------------
header//sub
-----------------------------------------*/
header.sub {
	width:100%;
	height:108px;
	border-bottom:6pt solid #caebf2;
}
	header.sub section.logo-area {
		width:30%;
		height:100px;
	}

/*-----------------------------------------
navigation//sub
-----------------------------------------*/
	section.sub-nav-area nav.sub-nav  {
		width:100%;
		height:100px;
		padding-left:30%;
	}
		nav.sub-nav ul {
			width:100%;
			height:80px;
			list-style:none;
			margin:0 0 0 0;

			display: -webkit-flex; /* Safari */
			display:flex;
			flex-flow: row; /*左から右へ*/
			-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
			align-items: center; /* 縦方向中央揃え */
			-webkit-justify-content: flex-start; /* Safari */
			justify-content:         flex-start; /*コンテンツは左寄せ*/
		}
			nav.sub-nav ul li {
				text-align:center;
				margin:0;
				line-height:1.5;
				padding:0 1em;
			}
				nav.sub-nav ul li:hover {
					line-height:1.5;
					background:#caebf2;
				}
				nav.sub-nav ul li a,
				nav.sub-nav ul li a:link,
				nav.sub-nav ul li a:visited,
				nav.sub-nav ul li a:hover,
				nav.sub-nav ul li a:active {
					text-decoration:none;
					color:#000;
				}
/*-----------------------------------------
breadcrumb//sub
-----------------------------------------*/
.breadcrumb {
	width:100%;
	height:50px;
	background:#e2eaec;
}
	.breadcrumb ol {
		list-style:none;
		display: -webkit-flex; /* Safari */
		display:flex;
		flex-flow: row; /*左から右へ*/
		-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
		align-items: center; /* 縦方向中央揃え */
		-webkit-justify-content: flex-start; /* Safari */
		justify-content:         flex-start; /*コンテンツは左寄せ*/
	}
		.breadcrumb ol li {
			height:50px;
			line-height:50px;
			padding-left:1em;
		}
		.breadcrumb ol li::after {
			content: '\00bb';
			margin:1em;
		}
		.breadcrumb ol li:last-of-type::after {
			display: none;
		}
/*-----------------------------------------
contents//sub
-----------------------------------------*/
	div.Contents-wrap-sub {
		position:relative;
		width:980px;
		margin:16px auto 0 auto;
	}
		div.Contents-wrap-sub h2.subheading {
			width:100%;
			font-size:120%;
			font-weight:bold;
			padding:0.5em;
			color:#000;
			background: repeating-linear-gradient(45deg, #caebf2, #caebf2 5px, #fff 0, #fff 10px);
		}
	div.Contents-wrap-sub h3 {
		width:100%;
		font-size:110%;
		font-weight:normal;
		color:#000;

		position:relative;
		margin:0 1em 0 0;
		padding:0.2em 1em 0.5em 3em;
		background:#f2f8f9;
		z-index:1;
	}
	div.Contents-wrap-sub h3:before {
		content:" ";
		position:absolute;
		top:0;
		left:0;
		width:40px;
		height:40px;
		border-right:#fff solid 2px;
		background:#83e0f4;
	    background-image: -webkit-gradient(linear, left top, left bottom,
				from(			 rgba(255, 255, 255, 0.0)),
				color-stop(0.20, rgba(255, 255, 255, 0.0)),
				color-stop(0.20, rgba(255, 255, 255, 0.1)),
				color-stop(0.40, rgba(255, 255, 255, 0.1)),
				color-stop(0.40, rgba(255, 255, 255, 0.3)),
				color-stop(0.60, rgba(255, 255, 255, 0.3)),
				color-stop(0.60, rgba(255, 255, 255, 0.5)),
				color-stop(0.80, rgba(255, 255, 255, 0.5)),
				color-stop(0.80, rgba(255, 255, 255, 0.6)),
				to(				 rgba(255, 255, 255, 0.6))
				);
		background-image: -webkit-linear-gradient(top,
				transparent 20%,
				rgba(255, 255, 255, 0.1) 20%,
				rgba(255, 255, 255, 0.1) 40%,
				rgba(255, 255, 255, 0.3) 40%,
				rgba(255, 255, 255, 0.3) 60%,
				rgba(255, 255, 255, 0.5) 60%,
				rgba(255, 255, 255, 0.5) 80%,
				rgba(255, 255, 255, 0.6) 80%,
				rgba(255, 255, 255, 0.6) 100%
				);
		background-image: -moz-linear-gradient(top,
				transparent 20%,
				rgba(255, 255, 255, 0.1) 20%,
				rgba(255, 255, 255, 0.1) 40%,
				rgba(255, 255, 255, 0.3) 40%,
				rgba(255, 255, 255, 0.3) 60%,
				rgba(255, 255, 255, 0.5) 60%,
				rgba(255, 255, 255, 0.5) 80%,
				rgba(255, 255, 255, 0.6) 80%,
				rgba(255, 255, 255, 0.6) 100%
				);
		background-image: -o-linear-gradient(top,
				transparent 20%,
				rgba(255, 255, 255, 0.1) 20%,
				rgba(255, 255, 255, 0.1) 40%,
				rgba(255, 255, 255, 0.3) 40%,
				rgba(255, 255, 255, 0.3) 60%,
				rgba(255, 255, 255, 0.5) 60%,
				rgba(255, 255, 255, 0.5) 80%,
				rgba(255, 255, 255, 0.6) 80%,
				rgba(255, 255, 255, 0.6) 100%
				);
		background-image: linear-gradient(to bottom,
				transparent 20%,
				rgba(255, 255, 255, 0.1) 20%,
				rgba(255, 255, 255, 0.1) 40%,
				rgba(255, 255, 255, 0.3) 40%,
				rgba(255, 255, 255, 0.3) 60%,
				rgba(255, 255, 255, 0.5) 60%,
				rgba(255, 255, 255, 0.5) 80%,
				rgba(255, 255, 255, 0.6) 80%,
				rgba(255, 255, 255, 0.6) 100%
				);
				z-index:-1;
	}
	div.Contents-wrap-sub h3::after{
	content:" ";
	position:absolute;
	top:0;
	left:0;
	width:40px;
	height:40px;
    background-image: -webkit-gradient(linear, left top, right top,
			from(			 rgba(255, 255, 255, 0.0)),
			color-stop(0.20, rgba(255, 255, 255, 0.0)),
			color-stop(0.20, rgba(255, 255, 255, 0.1)),
			color-stop(0.40, rgba(255, 255, 255, 0.1)),
			color-stop(0.40, rgba(255, 255, 255, 0.3)),
			color-stop(0.60, rgba(255, 255, 255, 0.3)),
			color-stop(0.60, rgba(255, 255, 255, 0.5)),
			color-stop(0.80, rgba(255, 255, 255, 0.5)),
			color-stop(0.80, rgba(255, 255, 255, 0.6)),
			to(				 rgba(255, 255, 255, 0.6))
			);
	background-image: -webkit-linear-gradient(left,
			transparent 20%,
			rgba(255, 255, 255, 0.1) 20%,
			rgba(255, 255, 255, 0.1) 40%,
			rgba(255, 255, 255, 0.3) 40%,
			rgba(255, 255, 255, 0.3) 60%,
			rgba(255, 255, 255, 0.5) 60%,
			rgba(255, 255, 255, 0.5) 80%,
			rgba(255, 255, 255, 0.6) 80%,
			rgba(255, 255, 255, 0.6) 100%
			);
	background-image: -moz-linear-gradient(left,
			transparent 20%,
			rgba(255, 255, 255, 0.1) 20%,
			rgba(255, 255, 255, 0.1) 40%,
			rgba(255, 255, 255, 0.3) 40%,
			rgba(255, 255, 255, 0.3) 60%,
			rgba(255, 255, 255, 0.5) 60%,
			rgba(255, 255, 255, 0.5) 80%,
			rgba(255, 255, 255, 0.6) 80%,
			rgba(255, 255, 255, 0.6) 100%
			);
	background-image: -o-linear-gradient(left,
			transparent 20%,
			rgba(255, 255, 255, 0.1) 20%,
			rgba(255, 255, 255, 0.1) 40%,
			rgba(255, 255, 255, 0.3) 40%,
			rgba(255, 255, 255, 0.3) 60%,
			rgba(255, 255, 255, 0.5) 60%,
			rgba(255, 255, 255, 0.5) 80%,
			rgba(255, 255, 255, 0.6) 80%,
			rgba(255, 255, 255, 0.6) 100%
			);
	background-image: linear-gradient(to right,
			transparent 20%,
			rgba(255, 255, 255, 0.1) 20%,
			rgba(255, 255, 255, 0.1) 40%,
			rgba(255, 255, 255, 0.3) 40%,
			rgba(255, 255, 255, 0.3) 60%,
			rgba(255, 255, 255, 0.5) 60%,
			rgba(255, 255, 255, 0.5) 80%,
			rgba(255, 255, 255, 0.6) 80%,
			rgba(255, 255, 255, 0.6) 100%
			);
			z-index:-1;
}
/*--------------------------------------------*/
section.Contents-sub {
	margin:1em 0;
	padding:1em 0;
}
	.text-box {
		position:relative;
		width:90%;
		height:100%;
		padding:1em;
		margin:0 auto 2em auto;
		background:#fff;
		border-top:1pt solid #e2eaec;
		border-left:1pt solid #e2eaec;
	}
	.text-box::after {
		z-index: -1;
		position: absolute;
		content: "";
		bottom: 15px;
		right: 10px;
		left: auto;
		width: 50%;
		top: 80%;
		max-width:300px;

		background: #777;
		-webkit-box-shadow: 0 15px 10px #777;
		-moz-box-shadow: 0 15px 10px #777;
		box-shadow: 0 15px 10px #777;
		/* -webkit-filter:blur(0); */

		-webkit-transform: rotate(3deg);
		-moz-transform: rotate(3deg);
		-o-transform: rotate(3deg);
		-ms-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	.date-box {
		width:100%;
		padding:0.2em;
		text-align:right;
		border-bottom:1pt solid #e2eaec;
	}
	.text-box article {
		width:100%;
		padding:2em 1em;
	}
	.ss-txt {
		width:100%;
		padding:2em 1em;
	}
	.ss-txt p{
		text-indent: 1em;
		text-align: justify;
		/* text-justify: inter-ideograph; */
	}
		.ss-txt div.name-h {
			width:100%;
			text-align:right;
		}
/*-----------------------------------------
入会案内//sub
-----------------------------------------*/
.enrollment-box {
	width:90%;
	border-collapse:collapse;
	margin:1em auto;
	border:1pt solid #a9a9a9;
}
	.enrollment-box th {
		padding:0.5em;
		border:1pt solid #a9a9a9;
		background:#fff3de;
	}
	.enrollment-box td {
		padding:0.5em;
		border:1pt solid #a9a9a9;
	}
	.enrollment-box td.price {
		text-align:right;
		padding:0.5em;
		border:1pt solid #a9a9a9;
	}
.enrollment-list {
	width:90%;
	margin:1em auto;
}
/*-----------------------------------------
pager//single
-----------------------------------------*/
ul.Back-Next {
	width:100%;
	height:50px;
	padding:1em;
	margin:1em 0;
	list-style:none;
	background:#e2eaec;

	display: -webkit-flex; /* Safari */
	display:flex;
	flex-flow: row; /*左から右へ*/
	-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	align-items: center; /* 縦方向中央揃え */
	-webkit-justify-content: center; /* Safari */
	justify-content:         center; /**/
}
	ul.Back-Next li {
		flex:1;
		margin:0 0.1em;
		text-align:center;
	}
		ul.Back-Next li a,
		ul.Back-Next li a:link,
		ul.Back-Next li a:visited,
		ul.Back-Next li a:active {
			text-decoration:none;
			color:#000;
		}
		ul.Back-Next li a:hover {
			display:block;
			background:#b9d2d6;
		}
/*-----------------------------------------
pager//archive
-----------------------------------------*/

/************************************
** レスポンシブページネーション
************************************/
.pagination{
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
}

.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration:none;
  border: 1px solid #ddd;
  border-left-width: 0;
  min-width:36px;
  min-height:36px;
  color: #333;
}

.pagination li:not([class*="current"]) a:hover {
  background-color: #eee;
}

.pagination li:first-of-type a {
  border-left-width: 1px;
}

.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.pagination li.first a::before { content: "\f100"; }
.pagination li.last a::after { content: "\f101"; }

.pagination li.previous a::before { content: "\f104"; }
.pagination li.next a::after { content: "\f105"; }

.pagination li.current a {
 background-color: #ddd;
 cursor: default;
 pointer-events: none;
}

.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
/*-----------------------------------------
地区毎保険薬局一覧 taxonomy
-----------------------------------------*/
table.member-list {
	width:100%;
	margin:1em auto;
	padding:0;
	border-collapse: collapse;
}
	table.member-list tr th {
		padding:1em;
		border-bottom:1pt dotted #ccc;
		line-height:1em;
		text-align:left;
		width:15%;
	}
	table.member-list tr td {
		width:35%;
		padding:1em;
		border-bottom:1pt dotted #ccc;
		line-height:1em;
	}
	table.member-list tr:first-child {
		border-top:1pt dotted #ccc;
	}
	table.member-list tr th {
		background:#f2f8f9;
	}
	table.member-list tr td.title-td {
		background:#caebf2;
		font-weight:bold;
	}

table.member-list-cat {
	width:100%;
	margin:1em auto;
	padding:0;
	border-collapse: collapse;
	border:1pt solid #ccc;
}
	table.member-list-cat tr th {
		padding:1em;
		border:1pt solid #ccc;
		line-height:1em;
		background:#f2f8f9;
	}

	table.member-list-cat tr td {
		padding:1em;
		border:1pt solid #ccc;
		line-height:1em;
	}

/*-----------------------------------------
固定ページ
石巻薬剤師会について（about）
-----------------------------------------*/
.page-txt {
	width:100%;
	padding:0em 1em;
	line-height:1.7;
}
	.page-txt p{
		text-indent: 1em;
		text-align: justify;
		/* text-justify: inter-ideograph; */
	}
	.page-txt div.name-h {
		width:100%;
		text-align:right;
		margin-bottom:1em;
	}
	.page-heading {
		width:100%;
		margin:1em 0;
		padding:0.5em 0;
		text-align:center;
		line-height:1.3;
		font-weight:bold;
		font-size:135%;
		color:#4dbcb9;

		border:2pt solid #4dbcb9;
		background:#f1f7f7;
	}
	.page-heading02 {
		width:100%;
		margin:1em 0 0.5em;
		padding:0 0 0 0.5em;
		text-align:left;
		line-height:1.3;
		font-weight:bold;
		font-size:125%;
		color:#000;

		border-left:8pt solid #4dbcb9;
	}
/*-----------------------------------------
固定ページ
募集要項（job-offer）
-----------------------------------------*/
.job-offer-heading {
		width:100%;
		margin:1em 0 0.5em;
		padding:0.5em 0;
		text-align:center;
		line-height:1.3;
		font-weight:bold;
		font-size:125%;
		color:#4dbcb9;

		border-top:1pt solid #4dbcb9;
		border-right:8pt solid #4dbcb9;
		border-bottom:1pt solid #4dbcb9;
		border-left:8pt solid #4dbcb9;
		background:#f1f7f7;
}
table.job-offer {
	width:100%;
	margin:1em auto;
	padding:0;
	border-collapse: collapse;
	border-top:1pt dotted #333;
}
table.job-offer p {
	text-indent: 0;
	text-align: left;
	text-justify: auto;
}
	table.job-offer tr th {
		padding:1em;
		border-bottom:1pt dotted #333;
		text-align:left;
	}
	table.job-offer tr td {
		padding:1em;
		border-bottom:1pt dotted #333;
	}
	table.job-offer tr:nth-child(2n) {
		background:#f1f7f7;
	}
/*-----------------------------------------
固定ページ
かかりつけ薬剤師（primary-care）
-----------------------------------------*/
.pc-heading {
	width:100%;
	padding:0.1em;
	text-align:center;
	color:#ffff00;
	font-size:130%;
	font-weight:bold;
	background:#000099;
	border-radius:3em;
}
.pc-heading02 {
	width:100%;
	padding:0.1em;
	text-align:center;
	color:#fff;
	font-size:130%;
	font-weight:bold;
	background:#00cc99;
	border-radius:3em;
}
	.pc-frame {
		width:98%;
		height:100%;
		margin:1em;

		display: -webkit-flex; /* Safari */
		display:flex;
		flex-flow: row; /*左から右へ*/
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-justify-content: space-between; /* Safari */
		justify-content:         space-between;
	}
	.pc-frame p {
		text-indent: 0;
		text-align: left;
		text-justify: auto;
	}
		.pc-box-decide {
			width:33%;
			padding:0.5em;
			border:4pt solid #0066ff;
			border-radius:10px;
		}
			h6.pc-box-heading-decide {
				text-align:center;
				font-size:150%;
				font-weight:bold;
				color:#0066ff;
			}
		.pc-box-lookfor {
			width:33%;
			padding:0.5em;
			border:4pt solid #f7931e;
			border-radius:10px;
		}
			h6.pc-box-heading-lookfor {
				text-align:center;
				font-size:150%;
				font-weight:bold;
				color:#f7931e;
			}
		.pc-box-utilize {
			width:33%;
			padding:0.5em;
			border:4pt solid #8c6239;
			border-radius:10px;
		}
			h6.pc-box-heading-utilize {
				text-align:center;
				font-size:150%;
				font-weight:bold;
				color:#8c6239;
			}
		.pc-subheading {
			font-weight:bold;
			color:#ff0066;
			line-height:1.5;
		}
ul.pc-list {
	list-style-type:disc;
	width:95%;
	margin:1em auto;
	padding:0.5em;
	color:#0066ff;
	font-weight:bold;
	border:4pt solid #00cc99;
	border-radius:10px;
}
	ul.pc-list li {
		width:95%;
		margin:0.3em 1.5% 0.3em 3.5%;
	}
.pc-mission-heading {
	width:100%;
	padding:0.1em;
	border-radius:3em;
	font-weight:bold;
	text-align:center;
	font-size:130%;
	color:#fff;
	background:#ff66cc;
}
.pc-mission-discription {
	width:100%;
	text-align:right;
	font-size:90%;
}
/*-----------------------------------------
固定ページ
会営薬局紹介（intoroduction）
-----------------------------------------*/
.intoroduction-schedule-frame {
	width:95%;
	height:100%;
	margin:1em auto;
	padding:1em;
	background:#fffde4;
	box-shadow: 5px 5px 5px rgba(153,153,153,0.4);
}
	.intoroduction-schedule-frame p {
		text-indent: 0;
		text-align: left;
		text-justify: auto;
	}
	.intoroduction-schedule-heading {
		width:100%;
		height:100%;
		text-align:center;
		margin:0.5em 0;
	}
	.cube-txt {
		font-size:150%;
		font-weight:bold;
		padding:0.3em 0.3em 0.3em 0.3em;
		margin:0.1em 0.1em 0.5em 0.1em;
		color:#00cc99;
		border:1pt solid #00cc99;
		background:#ffff33;
	}
	.intoroduction-schedule-title {
		display:block;
		width:100%;
		text-align:center;
		font-size:150%;
		font-weight:bold;
		color:#00cc99;
		padding:0.5em;
		margin:0;
	}
	table.intoroduction-schedule-list {
		width:95%;
		border-collapse: collapse;
		margin:0 auto 1em auto;
	}
		table.intoroduction-schedule-list tr th {
			text-align:center;
		}
		table.intoroduction-schedule-list tr th,
		table.intoroduction-schedule-list tr td {
			padding:0.5em;
			border-bottom:1pt dotted #333;
		}
	.intoroduction-schedule-pinkbox {
		width:100%;
		padding:1em;
		margin:0;
		background:#f0d8d9;
		border:1pt solid #fff;

		text-indent: 1em;
		text-align: justify;
		/* text-justify: inter-ideograph; */
	}
/*GoogleMaps
-------------------------------------------*/
.map-frame {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.map-frame iframe,
.map-frame object,
.map-frame embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 95%;
	height: 95%;
}
/*-----------------------------------------
固定ページ
お問合せ（inquiry）
-----------------------------------------*/
input[type="text"] {
	border:0;
	padding:10px;
	font-size:130%;
	font-family:Arial, sans-serif;
	color:#aaa;
	border:solid 1px #ccc;
	margin:0 0 20px;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
input[type="email"] {
	border:0;
	padding:10px;
	font-size:130%;
	font-family:Arial, sans-serif;
	color:#aaa;
	border:solid 1px #ccc;
	margin:0 0 20px;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
textarea {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
input[type="submit"] {
	border:solid 1px #ccc;
	padding:15px 30px;
	margin:0 0 20px;
	font-family:Arial, sans-serif;
	font-size:120%;
	text-transform:uppercase;
	font-weight:bold;
	color:#333;
	cursor:pointer;

	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
	input[type="submit"]:hover {
		border:solid 1px #ccc;
		padding:15px 30px;
		margin:0 0 20px;
		font-family:Arial, sans-serif;
		font-size:120%;
		text-transform:uppercase;
		font-weight:bold;
		color:#333;
		background:#fefefe;
		cursor:pointer;

		-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
		-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);

		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
