/*
Theme Name: Watakei
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

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, small, strike, strong, sub, sup, 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%;
	vertical-align: baseline;
}
body {
	line-height: 1;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
a{
	color: #007F68;
}
a:hover{
	cursor: pointer;
	filter: alpha(opacity=60); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=60 )";/* IE8 */
	opacity: 0.6;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:0.6;/* Mozilla(FF,NS) */
	-khtml-opacity: 0.6;/* Safari 1.x */
}
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;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}

#content{
	overflow: hidden;
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #007F68;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #007F68;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
	width: 1px;
}
.main-navigation .assistive-text:focus,
.site .screen-reader-text:hover,
.site .screen-reader-text:active,
.site .screen-reader-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	height: auto;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	background-color: #fff;
	padding-top: 88px;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #007F68;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #007F68;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #007F68;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #007F68;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #007F68;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.entry-content .more-link {
	white-space: nowrap;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #007F68;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #007F68;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #007F68;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #007F68;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}




/* リセット */
/*
OZ RESET CSS
Author: ONZE
Author URI: http://on-ze.com
Version: 1.1
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

* {
border:0;
margin:0;
outline:0;
padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
font:inherit;
font-family:inherit;
font-size:100%;
font-style:inherit;
font-weight:inherit;
text-decoration:none;
vertical-align:baseline;
}

html {font-size:62.5%; width:100%; height:100%;}

body {
font-size:10px;
font-size:1.0rem;
line-height:1;
position:relative;
	-webkit-text-size-adjust:100%;
	-moz-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	-o-text-size-adjust:100%;
	text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	width:100%;
	height:100%;
}

article, aside, dialog, figure, footer, header, main, menu, nav, section {display:block;}
audio, canvas, video {display:inline-block;}

br,
hr {display:block;}

ol,
ul {list-style:none;}

blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}

input,
select {vertical-align:middle;}

table {border-collapse:collapse; border-spacing:0; empty-cells:show;}


.view-sp{
	display: none;
}
@media screen and (max-width: 768px){
	.view-pc{
		display: none;
	}
	.view-sp{
		display: block;
	}
}

/* ヘッダー =============================================================== */
.head{
	background: url(image/head--bg.png) repeat-x;
	background-color:#fff;/* new */
    top: 0px;
    left: 0px;
    z-index: 9999;
	box-shadow:0 3px 3px rgba(0,0,0,0.2);
}
/* ヘッダー > 領域 */
.head-area{
display: flex;
    width: 980px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
/* ヘッダー > ロゴ */
.head-logo{
	display: table-cell;
	width: 280px;
	vertical-align: middle;
}
/* ヘッダー > グロナビ */
.head-navi{
	display: flex;
	width: 750px;
	vertical-align: top;
	justify-content: flex-end;
	flex-wrap: nowrap;
}
@media screen and (max-width: 768px){
	.head{
		background: none;
	}
	.head-area{
		background-color: #fff;/* new */
		position: relative;
		width: 100%;
		height: 44px;
	}
	.head-logo{
		width: 100%;
	}
	.head-navi{
		width: 50%;
	}
	.head-logo img{
		width: 110px;
		height: auto;
		padding-left: 10px;
	}
	#slide_btn{
		positon: absolute;
	}
	#slide_btn img{
		width: 44px;
	}
	.sphead-grnv-btn {
		background:transparent url(image/sp--glnv-menuicon.png) no-repeat 0 0;
		background-size: 88px 44px;
		display: block;
		width:44px;
		height: 44px;
		position: absolute;
		top:0;
		right:0;
		cursor: pointer;
		z-index: 200;
	}
	.peke {
		background-position: -44px 0;
	}
	.drawr {
		display: none;
		background-color: #007F68;
		position: absolute;
		top: 44px;
		right:0;
		width:260px;
		padding: 0 0 20px 0;
		z-index: 999;
	}
	.drawr li{
		border-bottom: 1px solid #80BFB4;
	}
	.drawr a,
	.drawr p{
		font-size: 15px;
		font-weight: bold;
		color: #FFFFFF;
		text-decoration: none;
		padding-left: 20px;
	}
	.spdr-menu{
		padding: 15px 0;
	}
	.spdr-menu.sub{
		background: #FFFFFF;
	}
	.spdr-menu.sub a{
		color: #007F68;
	}
}
.head-navi > ul{
	text-align: right;
	letter-spacing: -.4em;
	padding-top: 6px;
}
.head-navi > ul > li{
	display: inline-block;
	height: 82px;
	letter-spacing: normal;
	vertical-align: bottom;
	border-left: 1px solid #DCDCDC;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.head-navi > ul > li a{
	display: table-cell;
	height: 82px;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	color: #1C3644;
/*	font-family: "a-otf-midashi-go-mb31-pr6n",sans-serif;*/
	font-size: 16px;
	font-weight: bold;
	letter-spacing: -.1em;
}
.head-navi > ul > li a:hover{
	background: #EBEBEB;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.head-navi > ul > li.head-navi-seminar a,
.head-navi > ul > li.head-navi-service a,
.head-navi > ul > li.head-navi-sdgs > a{
	width: 132px;
}
.head-navi > ul > li.head-navi-contact a{
	width: 100px;
}
.head-navi > ul > li.head-navi-company a,
.head-navi > ul > li.head-navi-recruit a{
	width: 100px;
}
.head-navi > ul > li.head-navi-contact a{
	background: #007F68;
	color: #FFFFFF;
}
.head-navi > ul > li.head-navi-contact a:hover{
	background: #1C3644;
}


/* ドロップメニュー */
.drop{
	position: absolute;
	width: 100%;
	padding: 35px 0 33px 0;
	background: #1C3644;
	z-index: 900;
}
.drop-block{
	display: table;
	width: /* 936px */980px;
	margin: 0 auto;
}
.drop-item{
	display: table-cell;
	width: 225px;
	padding-left: 25px;
	border-left: 1px solid #495E69;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	vertical-align: top;
}
.drop-item.drop-first{
	width: 240px;
	padding-left: 40px;
	border: none;
}
.drop-parts-img{
	display: table-cell;
	width: 228px;
	padding-left: 40px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	vertical-align: top;
}
.drop-parts-link{
	display: table-cell;
	width: 687px;
	vertical-align: top;
}
.drop-parts-link .drop-inner{
	margin-top: -8px;
}
/* ドロップメニュー > 写真 */
.drop-img img{
	display: block;
}
/* ドロップメニュー > タイトル */
.drop-ttl{
	padding: 10px 0 15px 0;
}
.drop-ttl,
.drop-ttl a{
	font-size: 16px;
	line-height: 125%;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}
/* ドロップメニュー > リンク */
.drop-links{
	display: table-cell;
	width: 915px;
	vertical-align: top;
}
.drop-link{
	background: url(image/drop--eyecatch.png) no-repeat;
	background-position: left center;
	padding-left: 10px;
}
.drop-link a{
	font-size: 14px;
	line-height: 214%;
	color: #FFFFFF;
	text-decoration: none;
}
/* ドロップメニュー > 閉じる */
.drop-close{
	display: table-cell;
	width: 65px;
	text-align: right;
	vertical-align: top;
}
/* ドロップメニュー > 非表示 */
.head-navi li a.close-drop,
.drop{
	display: none;
}
.drop-contact{
	background: none;
	padding: 0;
}
.drop-contact-menu{
	width: 980px;
	margin: 0 auto;
}
.drop-contact-menu > ul{
	width: 100px;
	margin-left: auto;
	margin-right: 0;
}
.drop-contact-menu > ul li a{
	display: block;
	line-height: 40px;
	font-size: 14px;
	background: url(image/drop--eyecatch.png) #007F68 no-repeat;
	background-position: 24px center;
	text-align: center;
	background: ;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	color: #FFFFFF;
}
.drop-contact-menu > ul li a:hover{
	background: #1C3644;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
/* ドロップメニュー > アクティブメニュー */
.head-navi li a.open-drop.active{
	background: #EBEBEB!important;
}
/* ドロップメニュー：カテゴリタイトル */
.drop-hd{
	width: 818px;
	margin: 0 0 15px 40px;
	padding-bottom: 5px;
	border-bottom: 4px solid #007F68;
}
.drop-hd a{
	color: #FFFFFF;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
}


/* グローバルナビ */
.grnv{
	display: table-cell;
	width: 700px;
	vertical-align: top;
}
.grnv-main{
	text-align: right;
	letter-spacing: -.4em;
	padding-top: 6px;
}
.grnv-main-list{
	display: inline-block;
	height: 82px;
	letter-spacing: normal;
	vertical-align: bottom;
	border-left: 1px solid #DCDCDC;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.grnv-main-list > a{
	display: table-cell;
	height: 82px;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	color: #1C3644;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: -.1em;
}
.grnv > ul > li > a:hover{
	background: #EBEBEB;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.grnv > ul > li.head-navi-seminar > a,
.grnv > ul > li.head-navi-service > a,
.grnv > ul > li.head-navi-sdgs > a{
	width: 132px;
}
.grnv > ul > li.head-navi-contact > a{
	width: 100px;
}
.grnv > ul > li.head-navi-company > a,
.grnv > ul > li.head-navi-recruit > a{
	width: 100px;
}
.grnv > ul > li.head-navi-contact > a{
	background: #007F68;
	color: #FFFFFF;
}
.grnv > ul > li.head-navi-contact > a:hover{
	background: #1C3644;
}

.grnv-main-list .drops > li,
.grnv-main-list .drops-block{
	overflow: hidden;
	height: 0;
	transition: .5s
}



.grnv-main-list:hover .drops > li{
	height: 40px;
	border-top: 1px dotted #898989;
}
.head-navi-service:hover .drops-block,
.head-navi-recruit:hover .drops-block{
	height: 344px;
}
.head-navi-company:hover .drops-block{
	height: 200px;
}


.head{
	/*position: relative;*/
	position: fixed;/* new */
	width:100%;
}
.head-navi-contact{
	/*position: relative;*/
}
.drops-block{
	left: 0;
	width: 100%;
	background: #1C3644;
	position: absolute;
	z-index: 999;
	text-align: left;
}
.drop-block{
	margin: 35px auto 33px auto;
}
.head-navi-contact .drops{
	position: absolute;
	width: 100%;
	z-index: 999;
}
.head-navi-contact .drops > li{
	line-height: 40px;
	font-size: 14px;
	background: url(image/drop--eyecatch.png) no-repeat;
	background-position: 24px center;
	text-align: center;
	background: #1C3644;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
}
.head-navi-contact .drops > li a{
	display: block;
	color: #FFFFFF;
}


/* フッター =============================================================== */
.foot{
	padding-top: 29px;
	background: #1C3644;
}
@media screen and (max-width: 768px){
	.foot{
		padding-top: 0;
		background: #1E1E1E;
	}
	.spfoot-navi{
		display: table;
		width: 100%;
		height: 44px;
	}
	.spfoot-navi-left{
		display: table-cell;
		width: 59%;
		vertical-align: middle;
	}
	.spfoot-navi-left p{
		padding-left: 5px;
	}
	.spfoot-navi-left p,
	.spfoot-navi-left a{
		color: #FFFFFF;
		font-size: 10px;
		line-height: 18px;
	}
	.spfoot-navi-cnt{
		display: table-cell;
		width: 27%;
		vertical-align: middle;
	}
	.spfoot-navi-cnt > ul{
		letter-spacing: -.4em;
		text-align: right;
		height: 44px!important;
	}
	.spfoot-navi-cnt > ul > li{
		display: inline-block;
		text-align: center;
	}
	.spfoot-navi-cnt > ul > li img{
		display: block;
		height: 41px;
		margin: 0 20px 0 0;
		vertical-align: bottom;
	}
	.spfoot-navi-rit{
		display: table-cell;
		width: 14%;
		vertical-align: middle;
	}
	.spfoot-navi-rit img{
		display: block;
		width: 44px;
		margin-left: auto;
		margin-right: 0;
	}
}
/* フッター > サイトマップ */
.foot-sitemap{
	display: table;
	width: 905px;
	margin: 0 auto;
	padding-bottom: 40px;
}
/* フッター > サイトマップ > 左 */
.foot-sitemap-lft{
	display: table-cell;
	width: 743px;
}
/* フッター > サイトマップ > 右 */
.foot-sitemap-rit{
	display: table-cell;
	width: 162px;
	padding-left: 15px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}

/* フッター > サイトマップ > タイトル */
.foot-ttl p{
	display: inline-block;
	padding: 0 18px;
	margin-bottom: 20px;
	background: #1E1E1E;
	font-size: 14px;
	line-height: 28px;
	color: #FFFFFF;
}
/* フッター > サイトマップ > 製品・サービスブロック */
.foot-block{
	width: 100%;
	letter-spacing: -.4em;
}
.foot-block > li{
	display: inline-block;
	width: 184px;
	padding-left: 35px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	border-right: 1px solid #495E69;
	letter-spacing: normal;
}
.foot-block > li.foot-block-first{
	width: 165px;
	padding-left: 0;
}
.foot-site-link > li a{
	color: #FFFFFF;
	text-decoration: none;
}

/* フッター > サイトマップ > サービスタイトル */
.foot-site-ttl{
	padding-bottom: 10px;
	font-size: 16px;
	line-height: 125%;
	color: #FFFFFF;
	font-weight: bold;
}
/* フッター > サイトマップ > サービスページ */
.foot-site-page{
	font-size: 14px;
	line-height: 214%;
	color: #FFFFFF;
	background: url(image/foot--eyecatch.png) no-repeat;
	background-position: left center;
	padding-left: 10px;
}

/* フッター > 最下部ナビ */
.foot-navi{
	background: #1E1E1E;
}
/* フッター > 最下部ナビ > 表示領域 */
.foot-navi-area{
	display: table;
	width: 980px;
	margin: 0 auto;
}
/* フッター > 最下部ナビ > 左側 */
.foot-navi-lft{
	display: table-cell;
	width: 50%;
	height: 74px;
	vertical-align: middle;
}
/* フッター > 最下部ナビ > リンク */
.foot-link{
	letter-spacing: -.4em;
}
.foot-link > li{
	display: inline-block;
	letter-spacing: normal;
	color: #FFFFFF;
}
.foot-link > li a{
	color: #FFFFFF;
	font-size: 12px;
	line-height: 250%;
	text-decoration: none;
}
/* フッター > 最下部ナビ > コピーライト */
.foot-copy{
	font-size: 11px;
	line-height: 160%;
	color: #FFFFFF;
}
/* フッター > 最下部ナビ > 右側 */
.foot-navi-rit{
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}
/* フッター > 最下部ナビ > SNS */
.foot-sns{
	letter-spacing: -.4em;
	text-align: right;
}
.foot-sns > li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: middle;
	padding-left: 15px;
}
.foot-sns > li.foot-pagetop{
	padding-left: 32px;
}
.foot-sns > li.foot-pagetop img,
.foot-sns > li.foot-pagetop a{
	display: block;
}
.foot-sns > li.foot-pagetop a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
	background: #007F68;
}


/* 共通要素 =============================================================== */
.site-content{
	margin: 0;
}
.entry-content li, .comment-content li, .mu_register li{
	margin: 0;
}
/* トップページ =============================================================== */
/* ページタイトル非表示 */
.home .entry-header{
	display: none;
}
/* トップページ > メインスライダー */
/* new */
#bigbanner{
	display:block;
	position:fixed;
	bottom:10%;
	right:2.5%;
	width:220px;
	height:120px;
	z-index:9999;
	border:3px solid #fff;
	border-radius:10px;
	box-shadow:4px 4px 10px rgba(0,0,0,0.4);
	overflow:hidden;
}
#bigbanner img{
	width:100%;
	height:auto;
}
#bigbanner2{
	display:block;
	position:fixed;
	bottom:calc(10% + 150px);
	right:2.5%;
	width:400px;
	height:240px;
	z-index:9999;
	border:3px solid #ccc;
	border-radius:10px;
	box-shadow:4px 4px 10px rgba(0,0,0,0.4);
	overflow:hidden;
	background-color:#fff;
  background-image: url("../twentytwelve/image/bigbanner2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.slideshow {
	width: 100%;
	height: 80vh;
	overflow: hidden;
	position:relative;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.slideshow-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background: no-repeat 50% 50%;
	background-size: cover;
	animation-name: kenburns;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 20s;
	opacity: 1;
	transform: scale(1.2);
	overflow: hidden;
}
.slideshow-image:nth-child(1) {
	animation-name: kenburns-1;
	z-index: 4;
}
.slideshow-image:nth-child(2) {
	animation-name: kenburns-2;
	z-index: 3;
}
.slideshow-image:nth-child(3) {
	animation-name: kenburns-3;
}
@keyframes kenburns-1 {
  0% {
    opacity: 1;
            transform: scale(1.1) ;
  }
  0.5% {
    opacity: 1;
  }
  32.5% {
    opacity: 1;
  }
  33.5% {
    opacity: 0;
            transform: scale(1);
  }
  100% {
    opacity: 0;
            transform: scale(1.1);
  }
  99.5% {
    opacity: 0;
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kenburns-2 {
  32.5% {
    opacity: 1;
            transform: scale(1.1);
  }
  33.5% {
    opacity: 1;
  }
  65.5% {
    opacity: 1;
  }
  66.5% {
    opacity: 0;
            transform: scale(1);
  }
  100% {
    opacity: 0;
            transform: scale(1.1);
  }
}
@keyframes kenburns-3 {
  65.5% {
    opacity: 1;
            transform: scale(1.1);
  }
  66.5% {
    opacity: 1;
  }
  99.5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
            transform: scale(1);
  }
}
#catch {
	text-align: left;
	position: absolute;
	width: 980px;
	height: 65vh;
	top: calc(88px + 15vh);
	left: 50%;
	margin-left:-490px;
	display: flex;
	justify-content:flex-start;
	will-change: opacity;
	transition: opacity 3.0s ease;
	align-items: center;
	z-index: 300;
	opacity: 0.0;
}
#catch.run {
  opacity: 1.0;
}
#catch.run h1 {
  letter-spacing: 0.1rem;
}
#catch h1 {
	text-align: left;
	color: #000;
	font-weight:bold;
	font-size: 9.6rem;
	font-weight: bold;
	letter-spacing: -3.0rem;
	will-change: letter-spacing;
	transition: letter-spacing 3.0s ease;
	position: relative;
	margin-bottom: -1rem;
}
#catch h1 em{
	color: #007F68;
}
#catch p {
	letter-spacing: 0.1rem;
	text-align: left;
	color:#000;
	font-weight:bold;
	font-size: 2.8rem;
	line-height:1.4em;
}
@media screen and (max-width: 768px){
#bigbanner{
	display:none;
}
.slideshow {
	height: 40vh;
}
#catch {
	width:90%;
	height: 40vh;
	top:44px;
	left: 0%;
    margin-left: 10%;
}
#catch br{
	display:none;
}
#catch h1 {
	font-size: 4.8rem;
}
#catch p {
	width:80%;
	margin:0;
	font-size: 1.6rem;
}
	
.site {
    padding-top: 44px;
}
}

.wideslider {
    width: 100%;
    height: 530px;
    text-align: left;
    position: relative;
    overflow: hidden;
	display:none;/* new */
}

.wideslider a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.wideslider a.css-hover:hover{
	filter: alpha(opacity=60); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=60 )";/* IE8 */
	opacity: 0.6;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:0.6;/* Mozilla(FF,NS) */
	-khtml-opacity: 0.6;/* Safari 1.x */
}
 
.wideslider ul,
.wideslider ul li {
    float: left;
    display: inline;
    overflow: hidden;
}
 
.wideslider_base {
    top: 0;
    position: absolute;
}
.wideslider_wrap {
    top: 0;
    position: absolute;
    overflow: hidden;
 
}
.slider_prev,
.slider_next {
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    cursor: pointer;
}
.slider_prev {background: #000 url(image/prev.png) no-repeat right center; background-size: 70px 70px;}
.slider_next {background: #000 url(image/next.png) no-repeat left center; background-size:  70px 70px;}
 
.pagination {
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    text-align: center;
    position: absolute;
    z-index: 200;
}
 
.pagination a {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    overflow: hidden;
    background: #333;
}
.pagination a.active {
    filter:alpha(opacity=100)!important;
    -moz-opacity: 1!important;
    opacity: 1!important;
}
 
/* =======================================
    ClearFixElements
======================================= */
.wideslider ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}
 
.wideslider ul {
    display: inline-block;
    overflow: hidden;
}
/* トップページ > サービスメニュー */
.servcmenu-area{
	position: relative;
	width: 980px;
	margin: 0 auto;
}
.servcmenu{
	position: absolute;
	display: table;
	width: 980px;
	top: -75px;
	z-index: 300;
}
.servcmenu > li{
	display: table-cell;
	width: 248px;
	vertical-align: top;
}
.servcmenu > li.menu04{
	width: 235px;
}
.servcmenu > li a{
	position: relative;
	display: block;
}
.servcmenu > li a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.servcmenu > li img{
	display: block;
}
.servcmenu > li img.servcmenu-active{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}
.servcmenu > li img.servcmenu-hover{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 768px){
	.servcmenu-area.view-pc,
	.servctab-area.view-pc{
		display: block;
	}
	.sp-tpsv-menu.view-sp{
		display: none;
	}
}
@media screen and (max-width: 480px){
	.servcmenu-area.view-pc,
	.servctab-area.view-pc{
		display: none;
	}
	.sp-tpsv-menu.view-sp{
		display: block;
	}
	.sp-tpsv-menu a{
		display: block;
	}
	.sp-tpsv-menu > li > div > a > img{
		display: block;
		width: 100%;
	}
	.sp-tpsv-menu-icon{
		letter-spacing: -.4em;;
		background: #007F68;
	}
	.sp-tpsv-menu-icon > li{
		display: inline-block;
		width: 33.33%;
		vertical-align: top;
		letter-spacing: normal;
		background: #007F68;
		border: 1px solid #FFFFFF;
		-webkit-box-sizing: border-box; /* Safari */  
		-moz-box-sizing: border-box; /* Firefox */  
		-ms-box-sizing: border-box; /* Internet Explorer 8 */  
		box-sizing: border-box; /* Opera */
	}
	.sp-tpsv-menu-icon > li img{
		width: 100%;
		display: block;
	}
}

/* トップページ > サービスメニュー > 初期状態 */
.servcmenu > li a.menu01 img.servcmenu-active{
	display: block;
}
/* トップページ > サービスタブ */
.servctab{
	display: table;
	width: 980px;
	margin: 0 auto;
	padding-top: 98px;
}
.servctab-text{
	display: table-cell;
	width: 614px;
	padding: 26px;
	vertical-align: middle;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.servctab-text .servctab-ttl{
	margin: 0;
	padding-bottom: 10px;
	font-size: 20px;
	line-height: 110%;
	font-weight: bold;
}
.servctab-text .servctab-info{
	margin: 0;
	font-size: 14px;
	line-height: 150%;
}
.servctab-icons{
	display: table-cell;
	width: 366px;
}
.servctab-icons ul{
	letter-spacing: -.4em;
}
.servctab-icons ul > li{
	display: inline-block;
	width: 33.3%;
	height: 97px;
}
.servctab-icons ul > li a{
	display: block;
	width: 109px;
	height: 90px;
	background: #007F68;
}
.servctab-icons ul > li a:hover{
	background: #1C3644;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.servctab-icons ul > li a img{
	display: block;
}
@media screen and (max-width: 768px){
	.servcmenu-area.view-pc,
	.servctab-area.view-pc{
		display: block;
	}
	.sp-tpsv-menu.view-sp{
		display: none;
	}
	.recruit .sp-tpsv-menu.view-sp{
		display: block;
	}
	.servcmenu,
	.servcmenu-area{
		width: 100%;
	}
	.servcmenu > li{
		width: 25%;
	}
	.servcmenu > li img{
		max-width: 100%;
	}
	.servctab{
		width: 100%;
		padding-top: 50px;
	}
	.servctab-text{
		display: block;
		width: 100%;
	}
	.servctab-icons{
		display: block;
		width: 95%;
		margin: 0 auto;
	}
	.servctab-icons ul > li{
		width: 16.666%;
	}
	.servctab-icons ul > li a{
		width: 90%;
		height: auto;
		padding-bottom: 5px;
	}
	.servctab-icons ul > li img{
		max-width: 100%;
	}
}
@media screen and (max-width: 640px){
	.servcmenu-area.view-pc,
	.servctab-area.view-pc{
		display: none;
	}
	.sp-tpsv-menu.view-sp{
		display: block;
	}
}
/* トップページ > サービスタブ > 非表示 */
.servctab{
	display: none;
}
/* トップページ > サービスタブ > 初期状態 */
.servctab.menu01{
	display: block;
}

/* トップページ > 渡敬について */
.about{
	width: 100%;
	margin: 30px auto 0 auto;
	background: url(image/top--about-bg.jpg);
	background-size: cover;
}
.about-ttl{
	text-align: center;
}
@media screen and (max-width: 768px){
	.about{
		background: none;
	}
	.about-ttl img{
		width: 100%;
	}
	.spabout-minittl{
		padding-top: 20px;
		text-align: center;
		font-size: 20px;
		font-weight: bold;
		line-height: 26px;
	}
	.spabout-photo{
		width: 88%;
		margin: 0 auto;
		padding-top: 20px;
	}
	.spabout-photo img{
		width: 100%;
	}
	.spabout-caption{
		width: 88%;
		margin: 0 auto;
		padding-top: 10px;
		font-size: 16px;
		line-height: 22px;
	}
	.spabout-caption a{
		padding-left: 20px;
		font-weight: bold;
	}
}
.about-slider{
	padding: 35px 0;
	background: url(image/top--about-sl-bg.png);
}
.about-slider-inner{
	width: 980px;
	margin: 0 auto;
}
.about-sl-ttl{
	width: 308px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.about-sl-img{
	margin: 10px 0;
}
.about-sl-lead{
	width: 308px;
	font-size: 14px;
	line-height: 142%;
}
.about-sl-lead a{
	padding-left: 20px;
	color: #007F68;
	font-weight: bold;
}

/* トップページ > 導入事例 */
.jirei{
	width: 100%;
	margin: 0 auto;
	padding-bottom: 32px;
	background: url(image/top--jirei-bg.jpg);
	background-size: cover;
}
.jirei-ttl{
	text-align: center;
}
.jirei-lead{
	text-align: center;
	font-size: 14px;
	line-height: 142%;
	color: #FFFFFF;
	font-weight: bold;
}
.jirei-menu{
	width: 100%;
	margin-top: 30px;
	height: 31px;
	letter-spacing: -.4em;
	text-align: center;
	background: url(image/top--jirei-menu-bg.png) repeat-x;
}
.jirei-menu > li{
	display: inline-block;
	letter-spacing: normal;
	color: #777777;
	padding: 0 5px;
	font-size: 18px;
	line-height: 18px;
	vertical-align: top;
}
.jirei-menu-active{
	display: none;
}
/* トップページ > 事例メニュー > 初期 */
.jirei-link01 img{
	display: none;
}
.jirei-link01 .jirei-menu-active{
	display: block;
}
/* トップページ > 事例 > スライダー */
.jirei-slider{
	width: 980px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.jirei{
		margin-top: 30px;
	}
	.jirei-slider{
		width: 87%;
		margin: 0 auto;
	}
	.slide-inner{
		width: 100%!important;
	}
	.caption-wrap{
		position: static!important;
		padding-top: 5px;
		background: none!important;
	}
	.jirei-ttl img{
		max-width: 100%;
	}
}
.jirei-sl-img{
	margin: 10px 0;
}
.jirei-sl-lead{
	width: 238px;
	font-size: 14px;
	line-height: 147%;
	color: #FFFFFF;
}

/* トップページ > ニュース */
.news-ttl{
	text-align: center;
}
.news-menu{
	background: #F3F3F3;
	text-align: center;
	letter-spacing: -.4em;
}
.news-menu > li{
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	color: #BABABA;
	padding: 0 5px;
	line-height: 32px;
	letter-spacing: normal;
}
.news-menu > li a{
	color: #BABABA;
}
.news-menu > li a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.news-menu > li a.news01:hover{
	color: #454545;
}
.news-menu > li a.news02:hover{
	color: #C2B23E;
}
.news-menu > li a.news03:hover{
	color: #4E923E;
}
.news-menu > li a.news04:hover{
	color: #D5660C;
}
.news-menu > li a.news05:hover{
	color: #2A3E73;
}
.news-list{
	width: 928px;
	margin: 10px auto 0 auto;;
}
.news-list > li{
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #DCDCDC;
	letter-spacing: -.4em;
}
.news-list > li .news-date{
	display: inline-block;
	width: 128px;
	vertical-align: middle;
	text-align: center;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: normal;
}
.news-icon{
	display: inline-block;
	width: 105px;
	vertical-align: middle;
	text-align: center;
	font-size: 12px;
	line-height: 26px;
	color: #FFFFFF;
	font-weight: bold;
	letter-spacing: normal;
}
.news-icon img{
	display: block;
}
.news-icon .news-genre02{
	display: block;
	width: 100%;
	background: #C2B23E;
}
.news-icon .news-genre03{
	display: block;
	width: 100%;
	background: #4E923E;
}
.news-icon .news-genre04{
	display: block;
	width: 100%;
	background: #D5660C;
}
.news-icon .news-genre05{
	display: block;
	width: 100%;
	background: #2A3E73;
}

.news-lead{
	display: inline-block;
	width: 695px;
	vertical-align: middle;
	font-size: 14px;
	line-height: 140%;
	padding: 0 10px 0 20px;
	letter-spacing: normal;
}
@media screen and (max-width: 768px){
	.news{
		position: relative;
	}
	.news-list{
		width: 95%;
		margin: -20px auto 0 auto;
	}
	.news-date{
		width: 30%;
	}
	.news-icon{
		width: 70%;
	}
	.news-lead{
		display: block;
		width: 100%;
		padding-top: 10px;
	}
	.sptop-news-menu{
		position: absolute;
		top: 100px;
		right: 0;
		padding: 10px;
		background: #007F68;
		color: #FFFFFF;
		font-size: 14px;
		font-weight: bold;
	}
	.sptop-news-menu ul{
		display: none;
	}
	.sptop-news-menu ul li{
		border-bottom: 1px dotted #FFF;
	}
	.sptop-news-menu ul a{
		color: #FFFFFF;
		font-size: 14px;
		font-weight: bold;
	}
	.news-icon{
		padding: 5px 0 0 20px;
	}
}
.news-lead a{
	display: block;
	font-weight: bold;
	padding-bottom: 5px;
}
.news-view{
	width: 928px;
	margin: 0 auto;
	text-align: right;
	padding-top: 5px;
}
.news-view a{
	color: #007F68;
	font-size: 12px;
	font-weight: bold;
}
@media screen and (max-width: 768px){
	.news-view{
		width: 92%;
		margin: 0 auto;
	}
}
/* トップページ > バナー */
.bana{
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 60px 0;
}
.bana ul{
	display: table;
	width: 100%;
}
.bana ul li{
	display: table-cell;
	padding: 0 10px;
}
@media screen and (max-width: 768px){
	.bana{
		width: 92%;
		margin: 0 auto;
	}
}

/* トップページ > サブスライダー */
/*
 * jQuery FlexSlider v2.6.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url('fonts/flexslider-icon.eot');
  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider,
.flexslider1 {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li,
.flexslider1 .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img ,
.flexslider1 .slides img {
	width: 100%;
	display: block;
}
.flexslider .slides:after,
.flexslider1 .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides,
html[xmlns] .flexslider1 .slides {
  display: block;
}
* html .flexslider .slides,
* html .flexslider1 .slides {
  height: 1%;
}
.no-js .flexslider .slides,
.no-js .flexslider1 .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider,
.flexslider1 {
  margin: 0!important;
  position: relative;
}
.flexslider .slides,
.flexslider1 .slides {
  zoom: 1;
}
.flexslider .slides img,
.flexslider1 .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 241px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.about-slider .flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 51px;
  height: 51px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
}
.jirei-slider .flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 51px;
  height: 51px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
}
.slide-inner .flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 51px;
  height: 51px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  opacity: 1!important;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '';
}
.flex-direction-nav .flex-prev {
  background: url(image/flex-prev.png) no-repeat;
  left: -90px!important;
}
.flex-direction-nav .flex-next {
  background: url(image/flex-next.png) no-repeat;
  right: -90px!important;
  text-align: right;
}

.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/


/* 下層ページ =============================================================== */
/* COMPANY 渡敬について 
 =============================================================== */
/* 代表挨拶・経営理念・コーポレートビジョン -------------------- */
.page-hd{
	width: 100%;
	height: 248px;
	margin: 0 auto;
}
.page-hd-toparea{
	width: 100%;
	background: url(image/page--hdtop-bg.png);
}
.ctct-page-hd{
	width: 100%;
	height: 132px;
	background: url(image/contact--headbg.jpg);
	background-size: cover;
}
/* ページ別上部背景 */
.page-hd.message_vision{
	background: url(image/company--message_vision-ttlbg.jpg) no-repeat;
	background-size: cover;
}
.page-hd.history{
	background: url(image/company--history-ttlbg.jpg) no-repeat;
	background-size: cover;
}
.page-hd.profile_organization{
	background: url(image/company--profile_organization-ttlbg.jpg) no-repeat;
	background-size: cover;
}
.page-hd.office{
	background: url(image/company--office-ttlbg.jpg) no-repeat;
	background-size: cover;
}
.page-hd.cs_activities{
	background: url(image/company--cs_activities-ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：オフィスソリューション */
.page-hd.office_solution,
.page-hd.office_solution_top,
.page-hd.copy,
.page-hd.hard_software,
.page-hd.furniture,
.page-hd.network,
.page-hd.mail_order{
	background: url(image/office_solution--ttlbg.jpg) no-repeat;
	background-size: cover;
}
.page-hd.introduction_example,
.page-hd.introduction_example2,
.page-hd.introduction_example3,
.page-hd.introduction_example4{
	background: url(image/office_solution--introduction_example-ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：文具館・サプライセンター */
.page-hd.highest_quality,
.page-hd.stationery1,
.page-hd.stationery,
.page-hd.stationery_top{
	background: url(image/stationery--ttlbg.jpg) no-repeat;
	background-size: cover;
}
.page-hd.products{
	background: url(image/stationery--products-ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：お客様サポート */
.page-hd.system,
.page-hd.device,
.page-hd.customer_support,
.page-hd.customer_support_top{
	background: url(image/customer_support--ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：建設・システムソリューション */
.page-hd.system,
.page-hd.it_solution,
.page-hd.surveying_equipment,
.page-hd.construction_system_solution,
.page-hd.construction_system_solution_top{
	background: url(image/construction_system_solution--ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：サービスの強み */
.page-hd.strength{
	background: url(image/strength1--ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：サポート */
.page-hd.support,
.page-hd.support-stationary{
	background: url(image/support--ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：お知らせ */
.page-hd.news{
	background: url(image/news--ttlbg.jpg) no-repeat;
	background-size: cover;
}
/* ページ別上部背景：お知らせ */
.page-hd.seminar{
	background: url(image/seminar--ttlbg.jpg) no-repeat;
	background-size: cover;
}



.page-hd-top{	/* ページ上部帯 */
	display: table;
	width: 980px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.page-hd-top{
		width: 100%;
	}
}
.page-img{	/* アイキャッチ画像 */
	display: table-cell;
	padding: 9px 20px 9px 26px;
}
.page-img img{
	display: block;
}
.page-name{	/* カテゴリ名 */
	display: table-cell;
	width: 794px;
	vertical-align: middle;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
	color: #FFFFFF;
}
.page-navi{	/* カテゴリ内ナビゲーション */
	width: 100%;
	height: 32px;
	background: #007F68;
	letter-spacing: -.4em;
	text-align: center;
}
.page-navi > li{
	display: inline-block;
	letter-spacing: normal;
}
.page-navi > li a{
	display: block;
	padding: 0 45px;
	border-right: 1px solid #4DA596;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 32px;
	font-weight: bold;
}
.page-navi > li.page-navi-last a{
	border: none;
}
.page-navi > li a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
	background: #1C3644;
}
@media screen and (max-width: 768px){
	.page-navi{
		height: auto;
	}
	.page-navi > li a{
		padding: 0 5px;
		font-size: 13px;
	}
}
/* ページ別ナビゲーションアクティブ表示 */
.page-hd.message_vision .page-navi > li.message_vision a,
.page-hd.history .page-navi > li.history a,
.page-hd.profile_organization .page-navi > li.profile_organization a,
.page-hd.office .page-navi > li.office a,
.page-hd.cs_activities .page-navi > li.cs_activities a{
	background: #1C3644;
}
/* ページ別ナビゲーションアクティブ表示 -- オフィスソリューション */
.page-hd.copy .page-navi > li.service a,
.page-hd.hard_software .page-navi > li.service a,
.page-hd.furniture .page-navi > li.service a,
.page-hd.network .page-navi > li.service a,
.page-hd.mail_order .page-navi > li.service a,
.page-hd.office_solution .page-navi > li.service a{
	background: #1C3644;
}
/* ページ別ナビゲーションアクティブ表示 -- 文具館・サプライセンター */
.page-hd.stetionery1 .page-navi > li.service a,
.page-hd.support .page-navi > li.support a,
.page-hd.highest_quality .page-navi > li.service a,
.page-hd.products .page-navi > li.profile_organization a{
	background: #1C3644;
}
/* ページ別ナビゲーションアクティブ表示 -- お客様サポート */
.page-hd.system .page-navi > li.service a,
.page-hd.device .page-navi > li.service a{
	background: #1C3644;
}
/* ページ別ナビゲーションアクティブ表示 -- 建設・システムソリューション */
.page-hd.system .page-navi > li.service a,
.page-hd.surveying_equipment .page-navi > li.service a,
.page-hd.it_solution .page-navi > li.service a{
	background: #1C3644;
}
/* ページ別ナビゲーションアクティブ表示 -- おしらせ */
.page-hd.news .page-navi > li.news a{
	background: #1C3644;
}
/* ページ別ナビゲーションアクティブ表示 -- おしらせ */
.page-hd.strength .page-navi > li.strength a{
	background: #1C3644;
}
.page-hd.introduction_example .page-navi > li.profile_organization a{
	background: #1C3644;
}

.page-ttl{
	height: 132px;
	padding: 46px 0;
	text-align: center;
}
@media screen and (max-width: 768px){
	.page-ttl img{
		max-width: 100%;
	}
}

.page-bread{	/* ぱんくず */
	width: 980px;
	margin: 0 auto;
	border-bottom: 1px solid #DCDCDC;
}
@media screen and (max-width: 768px){
	.page-bread{
		width: 92%;
	}
}
.page-bread p{
	font-size: 13px;
	line-height: 15px;
	color: #555555;
}
.page-bread p h4{
	display: inline-block!important;
}
.page-bread p a{
	color: #555555;
}
.mesv01{	/* 代表挨拶ブロック */
	width: 980px;
	margin: 0 auto;
	padding-top: 45px;
}
.mesv-detail01{	/* ./詳細ブロック */
	display: table;
	width: 930px;
	margin: 0 auto;
	padding-top: 40px;
}
.mesv-detail01{	/* ././テキストブロック */
	display: table-cell;
	width: 610px;
	vertical-align: bottom;
}
.mesv-detail01-catch{	/* ./././見出し */
	font-size: 20px;
	line-height: 26px;
	font-weight: bold;
}
.mesv-detail01-lead{	/* ./././リード */
	padding-top: 25px;
	font-size: 14px;
	line-height: 24px;
}
.mesv-img01{
	display: table-cell;
	width: 320px;
	vertical-align: bottom;
	text-align: right;
}
@media screen and (max-width: 768px){
	.mesv01{
		width: 100%;
	}
	.mesv-detail01,
	.mesv-img01{
		display: block;
		width: 100%;
	}
	.mesv-img01 img{
		display: block;
		margin: 5px auto;
	}
}
.mesv-ttl{	/* 大タイトル */
	text-align: center;
}
@media screen and (max-width: 768px){
	.mesv-ttl img{
		width: 100%;
	}
}
.mesv02{	/* 経営理念ブロック */
	width: 100%;
	margin: 57px auto 0 auto;
	background: url(image/message_vision--bg02.jpg) no-repeat;
	background-size: cover;
}
.mesv-ttl02{/* ./タイトル */
	padding-top: 70px;
	text-align: center;
}
.mesv-img02{	/* ./画像 */
	padding-top: 25px;
	text-align: center;
}
.mesv-ttl03{	/* ./タイトル */
	padding-top: 50px;
	text-align: center;
}
.mesv-lead02{	/* リード */
	width: 695px;
	padding: 28px 0 96px 0;
	margin: 0 auto;
	font-size: 14px;
	line-height: 26px;
	color: #FFFFFF;
}
@media screen and (max-width: 768px){
	.mesv-img02 img{
		width: 100%;
	}
	.mesv-lead02{
		width: 92%;
	}
}
/* 渡敬の歴史 -------------------- */
.hstr01{
	width: 566px;
	margin: 0 auto;
	padding: 60px 0 30px 0;
	text-align: center;
}
@media screen and (max-width: 768px){
	.hstr01{
		width: 92%;
	}
}
.hstr-catch01{
	font-size: 20px;
	line-height: 22px;
	font-weight: bold;
}
.hstr-lead01{
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
}
@media screen and (max-width: 768px){
	.hstr-lead01 br{
		display: none;
	}
}
.hstr02{
	width: 100%;
	margin: 0 auto;
	background: url(image/hstr--bg02.png);
	background-position: center top;
}
.hstr-ttl02{
	padding-top: 20px;
	text-align: center;	
}
.hstr-table{
	width: 1028px;
	margin: 20px auto;
	background: url(image/hstr--bg.png)repeat-y;
	background-position: center 10px;
}

@media screen and (max-width: 768px){
	.hstr-table{
		width: 100%;
		backgound-size: cover;
	}
	.hstr-table-img img{
		width: 100%;
	}
}
.hstr-table-tr{
	display: table;
	width: 750px;
	margin: 0 auto;
}
.hstr-table-img img{
	display: block;
	margin: 0 auto;
}
.hstr-table-ph,
.hstr-table-txt{
	display: table-cell;
	width: 50%;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.hstr-table-tr,
	.hstr-table-ph,
	.hstr-table-txt{
		display: block;
		width: 100%;
	}
	.hstr-table-img{
		margin-top: 20px;
	}
}
.hstr-table-ph.lft{
	padding: 0 40px 20px 0;
	text-align: right;
}
.hstr-table-ph.rit{
	padding: 0 0 20px -0;
}
.hstr-table-txt.lft p{
	padding: 5px 40px 0 0;
	font-size: 14px;
	line-height: 20px;
}
.hstr-table-txt.rit p{
	padding: 5px 30px 0 5px;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (max-width: 768px){
	.hstr-table-ph.lft,
	.hstr-table-ph.rit,
	.hstr-table-txt.lft p,
	.hstr-table-txt.rit p,
	.hstr-table-txt.lft,
	.hstr-table-txt.rit{
		text-align: center;
		padding: 5px 0 0 0;
	}
}
.data10{
	background: url(image/hstr--date10.png) no-repeat;
	background-position: center center;
}
.data12{
	height: 47px;
	background: url(image/hstr--date12.png) no-repeat;
	background-position: center center;
}
@media screen and (max-width: 768px){
	.data10{
		padding-bottom: 80px;
		background-position: auto bottom;
	}
	.data12{
		padding-bottom: 80px;
		background-position: auto bottom;
	}
}
/* 会社概要・組織図 -------------------- */
.prof-ttl{
	padding-top: 45px;
	text-align: center;
}
@media screen and (max-width: 768px){
	.prof-ttl img{
		width: 100%;
	}
}
.prof01-tbl{
	width: 930px;
	margin: 35px auto 0 auto;
	border-top: 1px solid #DCDCDC;
}
.prof01-tbl > li{
	display: table;
	width: 930px;
}
@media screen and (max-width: 768px){
	.prof01-tbl,
	.prof01-tbl > li{
		width: 100%;
	}
}
.prof01-tbl > li div{
	display: table-cell;
	padding: 22px 0 20px 0;
	vertical-align: top;
	border-bottom: 1px solid #DCDCDC;
}
.prof01-tbl > li .th{
	width: 185px;
	background: #F3F3F3;
}

.prof01-tbl > li .th p{
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	padding-left: 45px;
}
.prof01-tbl > li .td{
	width: 745px;
}
.prof01-tbl > li .td p{
	font-size: 14px;
	line-height: 18px;
	padding: 0 30px;
}
.prof-img02{
	padding: 40px 0 80px 0;
	text-align: center;
}
@media screen and (max-width: 768px){
	.prof01-tbl > li .th{
		width: 30%;
	}
	.prof01-tbl > li .td{
		width: 70%;
	}
	.prof01-tbl > li .td p,
	.prof01-tbl > li .th p{
		padding: 5px;
	}
	.prof-img02 img{
		width: 100%;
	}
}
/* 県内主要拠点・関連会社 -------------------- */
.offc01{
	width: 660px;
	margin: 0 auto;
	padding: 60px 0 20px 0;
	text-align: center;
}
@media screen and (max-width: 768px){
	.offc01{
		width: 100%;
	}
	.offc-img01 img{
		width: 90%;
	}
}
.offc-catch01{
	font-size: 20px;
	line-height: 22px;
	font-weight: bold;
}
.offc-lead01{
	font-size: 14px;
	line-height: 20px;
	padding-top: 10px;
}
.offc-ttl02{
	text-align: center;
}
@media screen and (max-width: 768px){
	.offc02{
		width: 100%;
	}
	.offc-ttl02 img{
		width: 100%;
	}
	.pageinner-lead br{
		display: none;
	}
}
.offc-tbl02{
	width: 930px;
	margin: 0 auto;
}
.offc-tbl02 > li{
	display: table;
	width: 100%;
	border-bottom: 1px solid #DCDCDC;
	padding: 23px 0;
}
.offc-tbl-img{
	display: table-cell;
	width: 255px;
	vertical-align: top;
	text-align: center;
}
.offc-tbl-name{
	display: table-cell;
	width: 223px;
	padding-left: 20px;
	vertical-align: top;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
}
.offc-tbl-addr{
	display: table-cell;
	width: 248px;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
}
.offc-tbl-btn{
	display: table-cell;
	width: 204px;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.offc-tbl02{
		width: 100%;
	}
	.offc-tbl02 > li{
		display: block;
		width: 92%;
		margin: 0 auto;
	}
	.offc-tbl-img,
	.offc-tbl-name,
	.offc-tbl-addr,
	.offc-tbl-btn{
		display: table;
		width: 100%;
		text-align: center;
		padding: 5px 0;
	}
	.offc-tbl-name br{
		display: none;
	}
}
.offc-ttl02{
	padding-top: 85px;
}
.offc03{
	padding-bottom: 105px;
}
/* CS活動：信頼の絆造り -------------------- */
.csac01{
	width: 566px;
	margin: 0 auto;
	padding: 60px 0 30px 0;
	text-align: center;
}
@media screen and (max-width: 768px){
	.csac01{
		width: 92%;
	}
	.csac-lead01 br{
		display: none;
	}
}
.csac-catch01{
	font-size: 20px;
	line-height: 22px;
	font-weight: bold;
}
.csac-lead01{
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
}
.csac02{
	padding-bottom: 243px;
}
.csac-list{
	width: 900px;
	margin: 0 auto;
	padding-top: 30px;
}
.csac-list > li{
	display: table;
	width: 100%;
	padding-top: 35px;
}
.csac-img{
	display: table-cell;
	width: 330px;
	vertical-align: top;
}
.csac-txt{
	display: table-cell;
	width: 570px;
	vertical-align: top;
}
.csac-date{
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
}
.csac-name{
	font-size: 20px;
	line-height: 22px;
	border-bottom: 1px solid #DCDCDC;
	padding: 10px 0;
	font-weight: bold;
}
.csac-detail{
	font-size: 14px;
	line-height: 22px;
	padding: 10px 0;
}
/* office_solution オフィスソリューション
 =============================================================== */
/* 大タイトル */
.ofsl-ttl{
	text-align: center;
}
@media screen and (max-width: 768px){
	.ofsl-ttl img{
		width: 100%;
	}
}
/* キャッチ */
.ofsl-catch{
	padding-top: 40px;
	text-align: center;
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
}
/* リード */
.ofsl-lead{
	width: 570px;
	margin: 0 auto;
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (max-width: 768px){
	.ofsl-lead{
		width: 98%;
	}
	.ofsl-lead br{
		display: none;
	}
}

/* サービストップ --------------------------------------------- */
/* サービスリスト */
.ofsl-servicelist{
	padding-top: 20px;
}
.ofsl-servicelist > li{
	display: table;
	width: 930px;
	margin: 10px auto 0 auto;
	padding: 10px;
	border: 1px solid #E6E6E6;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.ofsl-servicelist-img{
	display: table-cell;
	width: 328px;
	vertical-align: top;
}
.ofsl-servicelist-img img{
	display: block;
}
.ofsl-servicelist-txt{
	display: table-cell;
	width: 582px;
	padding-top: 27px;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.ofsl-servicelist > li{
		width: 95%;
	}
	.ofsl-servicelist-img{
		width: 30%;
	}
	.ofsl-servicelist-txt{
		width: 70%;
	}
	.ofsl-servicelist-img img{
		width: 90%;
	}
}
@media screen and (max-width: 480px){
	.ofsl-servicelist > li,
	.ofsl-servicelist-img,
	.ofsl-servicelist-txt{
		width: 100%;
		display: block;
	}
	.ofsl-servicelist-img img{
		width: 100%;
		margin: 0 auto;
	}
}
.ofsl-servicelist-ttl{
	padding-bottom: 5px;
	font-size: 20px;
	line-height: 22px;
	font-weight: bold;
	font-size: bold;
	color: #007F68;
	border-bottom: 1px solid #DCDCDC;
}
.ofsl-servicelist-ttl a{
	color: #007F68;
}
.ofsl-servicelist-lead{
	padding-top: 8px;
	font-size: 14px;
	line-height: 20px;
}
.ofsl-servicelist-link{
	display: block;
	padding-top: 10px;
	text-align: right;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
}
.ofsl-jirei{
	width: 100%;
	margin-top: 80px;
	padding-bottom: 32px;
	background: #F3F3F3;
}
.slide-inner{
	width: 980px;
	margin: 0 auto;
}
.ofsl-jirei .jirei-sl-lead{
	color: #5A5A5A;
}
.slide-jirei-top{
	margin-top: 20px;
}
.slide-inner.slide-jirei-top .metaslider .caption{
	color: #FFFFFF;
}
@media screen and (max-width: 768px){
	.ofsl-jirei .slide-inner{
		width: 92%!important;
		margin: 0 auto;
	}
	.idex02 .slide-inner{
		width: 92%!important;
		margin: 0 auto;
	}
}
/* サービスの特徴 --------------------------------------------- */
.ofsl-srvc-head-area{
	display: table;
	width: 980px;
	margin: 0 auto;
	padding-top: 49px;
}

/* 左メニュー */
.ofsl-srvc-list{
	display: table-cell;
	width: 305px;
	vertical-align: top;
}
.ofsl-srvc-list > ul{
	width: 250px;
}
.ofsl-srvc-list > ul li{
	padding: 1px 0;
	border-bottom: 1px solid #DCDCDC;
}
.ofsl-srvc-list > ul li.ofsl-srvc-list-ttl{
	padding-left: 11px;
	font-size: 16px;
	line-height: 34px;
	font-weight: bold;
	color: #FFFFFF;
	background: #1C3644;
	border: none;
}
.ofsl-srvc-list > ul li a{
	display: block;
	padding-left: 11px;
	color: #1C3644;
	font-size: 14px;
	line-height: 33px;
}
.ofsl-srvc-list > ul li a:hover,
.ofsl-srvc-list > ul.copy li.ofsl-srvc-copy a,
.ofsl-srvc-list > ul.hard_software li.ofsl-srvc-hard_software a,
.ofsl-srvc-list > ul.furniture li.ofsl-srvc-furniture a,
.ofsl-srvc-list > ul.network li.ofsl-srvc-network a,
.ofsl-srvc-list > ul.mail_order li.ofsl-srvc-mail_order a,
.ofsl-srvc-list > ul.stationery li.stat-srvc-stationery a,
.ofsl-srvc-list > ul.highest_quality li.stat-srvc-highest_quality a,
.ofsl-srvc-list > ul.device li.cssp-srvc-device a,
.ofsl-srvc-list > ul.system li.cssp-srvc-system1 a,
.ofsl-srvc-list > ul.surveying_equipment li.cssl-srvc-surveying_equipment a,
.ofsl-srvc-list > ul.system li.cssl-srvc-system a,
.ofsl-srvc-list > ul.it_solution li.cssl-srvc-it_solution a{
	background: #007F68;
	color: #FFFFFF;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
/* 右画像 */
.ofsl-srvc-catchimg{
	display: table-cell;
	width: 675px;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.ofsl-srvc-head-area,
	.ofsl-srvc-list,
	.ofsl-srvc-catchimg,
	.ofsl-srvc-list > ul{
		width: 100%;
		display: block;
	}
}
/* 複写機販売 --- */
.copy02{
	width: 650px;
	margin: 0 auto;
	padding-top: 34px;
}
.ofsl-copy02-ttl{
	width: 100%;
	margin-top: 25px;
	color: #FFFFFF;
	background: #007F68;
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
	text-align: center;
}
.ofsl-copy02-lead{
	width: 618px;
	margin: 0 auto;
	padding: 10px 0 7px 0;
	color: #5A5A5A;
	font-size: 16px;
	font-weight: bold;
	line-height: 140%;
	border-bottom: 1px solid 
}
.ofsl-copy02-info{
	width: 618px;
	margin: 0 auto;
	padding-top: 7px;
	font-size: 14px;
	line-height: 20px;
}
.copy03{
	padding-top: 50px;
	text-align: center;
}
@media screen and (max-width: 768px){
	.copy02{
		width: 100%;
	}
	.ofsl-copy02-lead,
	.ofsl-copy02-info{
		width: 92%;
	}
}

/* 導入事例 --------------------------------------------- */
.idex-categorylist{
	width: 880px;
	margin: 0 auto;
	padding-top: 40px;
	letter-spacing: -.4em;
}
@media screen and (max-width: 768px){
	.idex-categorylist{
		width: 98%;
	}
}
.idex-categorylist > li{
	display: inline-block;
	width: 33.3%;
	padding: 0 7px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	letter-spacing: normal;
}
.idex-categorylist-block{
	display: table;
	width: 278px;
	height: 133px;
	border: 1px solid #E6E6E6;
}
.idex-categorylist-block.os{
	background: url(image/example--os.png) no-repeat;
	background-position: center;
}
.idex-categorylist-block.cs{
	background: url(image/example--cs.png) no-repeat;
	background-position: center;
}
.idex-categorylist-block.cu{
	background: url(image/example--cu.png) no-repeat;
	background-position: center;
}
@media screen and (max-width: 768px){
	.idex-categorylist > li{
		padding: 2px;
	}
	.idex-categorylist-block{
		width: 100%;
		height: 90px;
	}
	.idex-categorylist-block.os,
	.idex-categorylist-block.cs,
	.idex-categorylist-block.cu{
		background-size: cover;
	}
}
@media screen and (max-width: 480px){
	.idex-categorylist-block{
		height: 40px;
	}
}
.idex-categorylist-block:hover{
	padding: 6px;
	border: 4px solid #007F68;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.idex-categorylist-block-img{
	display: table-cell;
	width: 225px;
	vertical-align: top;
}
.idex-categorylist-block-img img{
	display: block;
}
.idex-categorylist-block-link{
	display: table-cell;
	width: 215px;
	vertical-align: middle;
}
.idex-categorylist-block-link p{
	background: url(image/office_solution--inex-arrow.png) no-repeat;
	background-position: right center;
	font-size: 18px;
	color: #007F68;
	font-weight: bold;
	line-height: 18px;
}
/* 導入事例 > スライダー（metaslider） */
.idex02{
	margin-top: 35px;
	padding-bottom: 24px;
	background: #F3F3F3;
}
.slide-inner .metaslider .caption-wrap{
	top: 155px;
	opacity: 1!important;
}
.slide-inner .flex-viewport{
	min-height: 200px;
}
.slide-inner .metaslider .caption{
	padding: 0!important;
	font-size: 14px;
	line-height: 147%;
	color: #5A5A5A;
}
/* 導入事例 > 新着情報 */
.idex03{
	padding-bottom: 60px;
}
.idex-newslist{
	width: 930px;
	margin: 0 auto;
	padding-top: 5px;
}
@media screen and (max-width: 768px){
	.idex-newslist{
		width: 100%;
	}
}
.idex-newslist > li{
	display: table;
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px;
	border-bottom: 1px solid #DCDCDC;
}
.idex-newslist-date{
	display: table-cell;
	width: 115px;
	vertical-align: middle;
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
}
.idex-newslist-icon{
	display: table-cell;
	width: 125px;
	vertical-align: middle;
}
.idex-newslist-icon > span{
	display: table-cell;
	width: 105px;
	padding: 5px;
	text-align: center;
	font-size: 11px;
	line-height: 14px;
	font-weight: bold;
	background: #007F68;
	color: #FFFFFF;
	vertical-align: middle;
}
.idex-newslist-info{
	display: table-cell;
	width: 670px;
	vertical-align: middle;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (max-width: 768px){
	.idex-newslist-date,
	.idex-newslist-icon{
		display: inline-block;
		width: auto;
		padding-right: 10px;
	}
	.idex-newslist-info{
		display: block;
		width: 100%;
		padding-top: 5px;
	}
}
.idex-newslist-info a{
	color: #5A5A5A;
}
.idex-newslist-link{
	width: 930px;
	margin: 0 auto;
	padding: 12px 0 0 0;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	text-align: right;
}
.idex-newslist-link a{
	color: #007F68;
}
/* 商品紹介 --------------------------------------------- */
.prdc01{
	width: 570px;
	margin: 0 auto;
	padding-top: 60px;
	text-align: center;
}
.prdc02{
	width: 980px;
	margin: 0 auto;
	padding: 15px 0 80px 0;
}
@media screen and (max-width: 768px){
	.prdc01,
	.prdc02{
		width: 92%;
	}
}
.prdc-icon{
	padding: 50px 0 20px 0;
	text-align: center;
	border-bottom: 1px solid #DBDBDB;
}
.prdc-icon img{
	display: block;
	margin: 0 auto;
}
.prdc-phlist{
	width: 100%;
	padding-top: 20px;
	letter-spacing: -.4em;
}
.prdc-phlist li{
	display: inline-block;
	width: 247px;
	letter-spacing: normal;
	vertical-align: top;
}
.prdc-phlist li:nth-of-type(4n){
	width: 238px;
}
.prdc-phlist li .prdc-ph,
.prdc-phlist li .prdc-info{
	width: 238px;
}
.prdc-phlist li .prdc-ph img{
	display: block;
	width: 238px;
	height: 140px;
}
.prdc-info{
	padding-top: 15px;
	font-size: 14px;
	line-height: 20px;
	color: #5A5A5A;
}
@media screen and (max-width: 768px){
	.prdc-phlist li,
	.prdc-phlist li:nth-of-type(4n){
		width: 50%;
	}
	.prdc-phlist li .prdc-ph,
	.prdc-phlist li .prdc-info{
		width: 95%;
		margin: 0 auto;
	}
	.prdc-phlist li .prdc-ph img{
		width: 100%;
		height: auto;
	}
	.prdc-phlist li .prdc-info{
		padding: 5px 0 10px 0;
	}
}
/* 文具館・サプライセンタートップ（サービスの紹介） */
.stationerytop-banner{
	padding: 35px 0 38px 0;
	text-align: center;
}
.stationerytop-banner img{
	display: inline-block;
}
@media screen and (max-width: 768px){
	.stationerytop-banner img{
		width: 100%;
	}
}
.stat-bana{
	width: 930px;
	margin: 0 auto;
	padding: 30px 0;
}
@media screen and (max-width: 768px){
	.stat-bana{
		width: 100%;
		text-align: center;
	}
}
/* 文具館・サプライセンター：サポート */
.stsprt-flow-area{
	display: table;
	width: 928px;
	margin: 0 auto!important;
	padding: 20px 0 30px 0;
}
.stsprt-flow-num,
.stsprt-flow-ttl,
.stsprt-flow-dtl{
	display: table-cell;
	vertical-align: top;
}
.stsprt-flow-num{
	width: 176px;
}
.stsprt-flow-num img{
	display: block;
}
.stsprt-flow-ttl{
	width: 256px;
}
.stsprt-flow-ttl p{
	background: #F2F2F2;
	font-size: 16px;
	line-height: 32px;
	color: #454545;
	font-weight: bold;
	padding-left: 20px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.stsprt-flow-dtl{
	width: 496px;
	font-size: 14px;
	color: #5A5A5A;
	padding-top: 5px;
	padding-left: 20px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
@media screen and (max-width: 768px){
	.pageinner-icon{
		padding-top: 10px!important;
	}
	.pageinner-icon img{
		width: 10%;
	}
	.sprt-catch{
		padding-top: 10px!important;
	}
	.sprt-catch img{
		width: 100%;
	}
	.stsprt-flow-area,
	.stsprt-flow-num,
	.stsprt-flow-ttl,
	.stsprt-flow-dtl{
		display: block;
		width: 100%;
	}
	.stsprt-flow-area{
		padding: 10px 0!important;
	}
	.stsprt-flow-num{
		background: #007F68;
		text-align: center;
	}
	.stsprt-flow-num img{
		width: auto;
		margin: 0 auto;
	}
	.stsprt-flow-ttl p{
		padding: 0;
		text-align: center;
	}
	.stsprt-flow-dtl{
		padding: 5px 10px;
	}
}


.stsprt-lead{
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	color: #454545;
}

.stsprt-clinic{
	width: 620px;
	margin: 0 auto!important;
	letter-spacing: -.4em;
}
.stsprt-clinic > li{
	display: inline-block;
	width: 50%;
	vertical-align: top;
	letter-spacing: normal;
}
.stsprt-clinic > li img{
	display: block;
}
.stsprt-clinic-img{
	width: 280px;
	margin: 10px auto 0 auto!important;
	padding-top: 30px;
	text-align: center;
}
.stsprt-clinic-ttl{
	width: 280px;
	margin: 10px auto 0 auto!important;
	font-size: 14px;
	font-weight: bold;
	color: #007F68;
}
.stsprt-clinic-lead{
	width: 280px;
	margin: 5px auto 0 auto!important;
	font-size: 14px;
	color: #5A5A5A;
}
@media screen and (max-width: 768px){
	.stsprt-clinic{
		width: 100%;
		text-align: center;
		letter-spacing: -.6em;
	}
	.stsprt-clinic > li{
		width: 45%;
		text-align: left;
	}
	.stsprt-lead{
		width: 90%;
		margin: 0 auto;
	}
	.stsprt-clinic-img,
	.stsprt-clinic-ttl,
	.stsprt-clinic-lead{
		width: 90%;
	}
	.stsprt-clinic-img{
		padding-top: 10px;
	}
	.stsprt-clinic > li img{
		width: 100%;
	}
}

.stsprt-bag-img{
	padding-top: 30px;
	text-align: center;
}


.sprt-contact li{
	border: none!important;
}
.sprt-contact .pageinner-lead{
	padding-bottom: 20px;
}
@media screen and (max-width: 768px){
	.sprt-contact .pageinner-lead{
		width: 90%;
		margin: 0 auto;
		padding: 10px 0 0 0;
	}
	
	.sprt-catch-bdr{
		border-top: 1px solid #008068;
		border-bottom: 1px solid #008068;
		color: #008068;
		text-align: center;
		padding: 5px 0;
		font-weight: bold;
		font-size: 14px;
		margin-bottom: 15px;
	}
}


/* セミナー・イベント --------------------------------------------- */
.cate--mainvis{
	width: 100%;
	height: auto;
}
.cate--mainvis2{
	width: 100%;
	height: auto;
	text-align: center;
}
.cate--mainvis2 img,
.cate--mainvis img{
	width: 100%;
}
@media screen and (max-width: 768px){
	.cate--mainvis2{
	}
}
/* セミナー・イベント > ぱんくず */
.page-bread-seminar{
	width: 100%;
	background: #F3F3F3;
	border-bottom: 1px solid #DCDCDC;
}
.bread-inner{
	width: 930px;
	margin: 0 auto;
	padding: 15px 0;
}
@media screen and (max-width: 768px){
	.bread-inner{
		width: 92%;
	}
}
.bread-inner > ul{
	letter-spacing: -.4em;
}
.bread-inner > ul > li{
	display: inline-block;
	padding: 0 5px 0 0;
	letter-spacing: normal;
	verticla-align: middle;
	line-height: 15px;
	font-size: 13px;
	color: 686868;
}
/* セミナー・イベント > ナビタブ */
.navitab{
	width: 932px;
	margin: 0 auto;
	padding: 39px 0 41px 0;
}
.navitab.nobdr{
	width: 986px;
}
.navitab ul{
	width: 100%;
	letter-spacing: -.4em;
}
.navitab ul li{
	display: inline-block;
	width: 25%;
	padding: 4px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	letter-spacing: normal;
}
.navitab ul li a{
	display: table-cell;
	width: 231px;
	height: 53px;
	border: 1px solid #E6E6E6;
	text-align: center;
	font-size: 16px;
	line-height: 17px;
	color: #1C3644;
	font-weight: bold;
	vertical-align: middle;
	background: url(image/seminar-navitab-icon.png) no-repeat;
	background-position: right center;
}
.navitab.nobdr ul li a{
	border: none;
	background: none;
	width: auto;
}
.navitab ul li a:hover,
.navitab ul.seminar li a.seminar,
.navitab ul.seminar-1 li a.seminar-1,
.navitab ul.seminar-2 li a.seminar-2,
.navitab ul.seminar-3 li a.seminar-3,
.navitab ul.seminar-4 li a.seminar-4,
.navitab ul.seminar-5 li a.seminar-5,
.navitab ul.seminar-6 li a.seminar-6,
.navitab ul.seminar-7 li a.seminar-7{
	background: url(image/seminar-navitab-icon-a.png) no-repeat #1C3644;
	background-position: right center;
	color: #FFFFFF;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.navitab.nobdr ul li a:hover,
.navitab.nobdr ul.seminar li a.seminar,
.navitab.nobdr ul.seminar-1 li a.seminar-1,
.navitab.nobdr ul.seminar-2 li a.seminar-2,
.navitab.nobdr ul.seminar-3 li a.seminar-3,
.navitab.nobdr ul.seminar-4 li a.seminar-4,
.navitab.nobdr ul.seminar-5 li a.seminar-5,
.navitab.nobdr ul.seminar-6 li a.seminar-6,
.navitab.nobdr ul.seminar-7 li a.seminar-7{
	background: none!important;
}
.navitab.nobdr ul li a:hover{
	filter: alpha(opacity=70); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=70 )";/* IE8 */
	opacity: 0.7;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:0.7;/* Mozilla(FF,NS) */
	-khtml-opacity: 0.7;/* Safari 1.x */
}
@media screen and (max-width: 768px){
	.navitab,
	.navitab.nobdr{
		width: 100%;
		background: #F1F1F1;
		padding: 10px 0;
	}
	
	.navitab-area{
		width: 92%;
		margin: 0 auto;
	}
	.navitab ul li{
		width: 25%;
	}
	.navitab ul li a{
		background: none;
	}
	.navitab ul.seminar li a.seminar,
	.navitab ul.seminar-1 li a.seminar-1,
	.navitab ul.seminar-2 li a.seminar-2,
	.navitab ul.seminar-3 li a.seminar-3,
	.navitab ul.seminar-4 li a.seminar-4,
	.navitab ul.seminar-5 li a.seminar-5,
	.navitab ul.seminar-6 li a.seminar-6,
	.navitab ul.seminar-7 li a.seminar-7{
		background: #1C3644;
	}
	.navitab.nobdr ul li a img{
		display: block;
		width: 95%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 480px){
	.navitab ul li{
		width: 50%;
	}
}

/* ビジネスフェア */
.semi-bus-area{
	width: 980px;
	margin: 0 auto;
	background: #F3F3F3;
	padding-left: 30px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	color: #1C3644;
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
}
.semi-bus-ttl{
	display: table;
	width: 920px;
	margin: 40px auto 45px auto;
}
.semi-bus-ttl-img{
	display: table-cell;
	width: 54px;
	vertical-align: middle;
}
.semi-bus-ttl-txt{
	display: table-cell;
	width: auto;
	vertical-align: middle;
}
.semi-bus-ttl-area{
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
}
.semi-bus-ttl-lead{
	font-size: 18px;
	line-height: 20px;
	color: #1C3644;
	font-weight: bold;
}
.bus-banner{
	text-align: center;
	padding-bottom: 60px;
}
/* イベントインフォメーション */
.bus-banner-block{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 981px;
	height: 559px;
	margin: 0 auto 60px auto;
	padding: 18px 35px;
	background-image: url(image/img-bf2017-event-bg.png);
	background-repeat: no-repeat;
}
.bus-banner-block a:hover{
	display: block;
	filter: alpha(opacity=70); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=70 )";/* IE8 */
	opacity: 0.7;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:0.7;/* Mozilla(FF,NS) */
	-khtml-opacity: 0.7;/* Safari 1.x */	
}
.bus-banner-block img{
	display: block;
}
.bus-banner-block-02{
	position: relative;
}
.bus-banner-block-02 span{
	display: block;
	position: absolute;
	top: -23px;
	left: -18px;
}
.bus-banner-block-02 img.view-sp{
	display: none;
}
@media screen and (max-width: 768px){
	.bus-banner-block{
		width: 100%;
		height: auto;
		padding: 18px 0;
		background-repeat: repeat-y;
		background-size: 100% auto;
	}
	.bus-banner-block img{
		max-width: 100%;
	}
	.bus-banner-block-02{
		width: 56%;
		padding: 0 10px;
	}
	.bus-banner-block-03{
		width: 44%;
		padding: 0 10px;
	}
	.bus-banner-block-04,
	.bus-banner-block-05{
		width: 50%;
		padding: 0 10px;
	}
	.bus-banner-block-02 img.view-sp{
		display: block;
	}
	.bus-banner-block-02 img.view-pc{
		display: none;
	}
	.bus-banner-block-02 span{
		top: -10px;
		left: -5px;
	}
	.bus-banner-block-02 span img{
		width: 60%;
	}
}
@media screen and (max-width: 768px){
	.cate--mainvis2{
	}
	.semi-bus-area,
	.semi-bus-ttl{
		width: 92%;
	}
	.bus-banner{
		padding-bottom: 30px;
	}
	.bus-banner img{
		width: 100%;
	}
}
.semi-bus-ttl-area.col1{
	color: #3590BF;
}
.semi-bus-ttl-area.col2{
	color: #EB6E28;
}
.semi-bus-ttl-area.col3{
	color: #8769A0;
}
.semi-bus-ttl-area.col4{
	color: #F05032;
}
.semi-bus-ttl-area.col5{
	color: #009632;
}
.semi-bus-ttl-area.col6{
	color: #E63C5A;
}
.semi-bus-ttl-area.col7{
	color: #007F68;
}
/* ビジネスフェア　テンプレ */
.bussiness_fair-area{
	width: 980px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.bussiness_fair-area{
		width: 92%;
	}
}
.bussiness_fair-area .panel-grid,
.bussiness_fair-area .panel-grid-cell{
	margin: 0!important;
	padding: 0!important;
}
.bussiness_fair-area .entry-header{
	display: none;
}
.bus-venue{
	background: #F3F3F3;
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
	padding: 0 30px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.bussiness_fair-subcat{
	width: 94%;
	margin: 40px auto;
}
.bussiness_fair-subcat-ttl{
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
}
.bussiness_fair-subcat-catch{
	font-size: 18px;
	color: #1C3644;
	font-weight: bold;
	line-height: 20px;
}
.bussiness_fair-block1{
	width: 94%;
	margin: 0 auto;
}
.bussiness_fair-ttl{
	border-left: 5px solid #007F68;
	padding-left: 15px;
	font-size: 16px;
	font-weight: bold;
	line-height: 25px;
}
.bussiness_fair-catch{
	font-size: 14px;
	line-height: 20px;
	padding-top: 15px;
}
.semibus .panel-grid{
	margin-left: 0!important;
	margin-right: 0!important;
}

.bussiness_fair-area .entry-pb-td.catch,
.bussiness_fair-area .maker{
	font-size: 16px;
	font-weight: bold;
}
@media screen and (max-width: 768px){
	.bussiness_fair-area .entry-pb-td{
		padding-top: 10px;
	}
}

.bussiness_fair-area .detail{
	line-height: 160%;
}
.bussiness_fair-area .entry-pb-tr .entry-pb-td .textwidget{
	border-bottom: 1px dotted #CCCCCC;
}
.bussiness_fair-area .entry-pb-tr .entry-pb-td p{
	padding-bottom: 15px;
}
.bussiness_fair-area .entry-pb-tr .entry-pb-td.detail .textwidget,
.bussiness_fair-area .entry-pb-tr .entry-pb-td.catch .textwidget{
	border-bottom: none;
}
.bussiness_fair-area .entry-pb-tr .entry-pb-td.detail p{
	padding-bottom: 8px;
	padding-top: 8px;
	border-bottom: 1px dotted #ccc;
}
/* ビジネスフェア＞セミナーについて */
.bussiness_fair-area .semibusttl{
	font-size: 18px;
	line-height: 30px;
	background: #007F68;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
}
.bussiness_fair-area .semibuscatch{
	padding: 20px 0;
	margin: 0!important;
	font-size: 16px;
	line-height: 22px;
}
.bussiness_fair-area .semibusimg img{
	display: block;
	margin: 0 auto;
	padding-bottom: 50px;
	padding-top: 0px;
}
@media screen and (max-width: 768px){
	.bussiness_fair-area .semibusimg img{
		width: 92%;
	}
}
.bussiness_fair-area .about-semibus{
	border-bottom: 1px solid #007F68;
	font-size: 16px;
	font-weight: bold;
	padding-left: 5px!important;
	padding-top: 30px;
}
.bussiness_fair-area .about-semibus-lead{
	font-size: 24px;
	line-height: 150%;
	padding: 0 0 50px 0;
	font-weight: bold;
}
.bussiness_fair-area .semibus-ttl2{
	font-size: 28px;
	line-height: 150%;
	font-weight: bold;
	border-left: 5px solid #007F68;
	padding: 3px 0 3px 15px;
	margin: 40px 0 15px 0;
}
.bussiness_fair-area .topttl .semibus-ttl2{
	margin-top: 10px;
}
/* ビジネスフェア＞ページナビ */
.bus_pagenavi{
	position: fixed;
	bottom: 10px;
	right: 10px;
}
@media screen and (max-width: 768px){
	.bus_pagenavi img{
		width: 45%;
	}
}

.bussiness_fair-area article .maker{
	background: #3590BF;
}
.bussiness_fair-area article + * .maker{
	background: #EB6E28;
}
.bussiness_fair-area article + * + * .maker{
	background: #8769A0;
}
.bussiness_fair-area article + * + * + * .maker{
	background: #F05032;
}
.bussiness_fair-area article + * + * + * + * .maker{
	background: #009632;
}
.bussiness_fair-area article + * + * + * + * + * .maker{
	background: #E63C5A;
}


/* ビジネスフェア > トップページスライダー非表示 */
.top-mainvis{
	width: 100%;
}
.top-mainvis img{
	width: 100%;
}


/* セミナー記事一覧 */
.seminar-article-area{
	width: 930px;
	margin: 0 auto;
	padding-bottom: 60px;
	border-top: 1px solid #DCDCDC;
}
.seminar-article-area > article{
	display: table;
	width: 100%;
	padding: 15px;
	border-bottom: 1px solid #DCDCDC;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
@media screen and (max-width: 768px){
	.seminar-article-area{
		width: 92%;
		margin-top: 20px;
	}
	.seminar-article-area > article{
		padding: 5px;
	}
}
/* セミナー記事一覧 > アイキャッチ画像 */
.seminar-eyecath{
	display: table-cell;
	width: 190px;
	vertical-align: top;
}
.seminar-eyecath img{
	display: block;
	width: 160px;
}
@media screen and (max-width: 768px){
	.seminar-eyecath{
		width: 20%;
	}
	.seminar-eyecath img{
		width: 90%;
	}
}
/* セミナー記事一覧 > 右側 */
.seminar-info{
	display: table-cell;
	width: 710px;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.seminar-info{
		width: 80%;
	}
}

.seminar-info .entry-date{
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
	color: #454545;
}
.seminar-info .entry-title{
	display: block;
	padding-top: 5px;
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
	color: #454545;
}
.seminar-info .entry-summary,
.seminar-info .entry-content{
	padding-top: 5px;
	font-size: 14px;
	line-height: 20px;
}
/* セミナー記事一覧 > ページャー */
.seminar-article-area .nav-previous,
.seminar-article-area .nav-next{
	padding-top: 10px;
	font-size: 12px!important;
	font-weight: bold;
}

/* サービスの強み --------------------------------------------- */
.str01{
	width: 930px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.str01{
		width: 92%;
	}
	.str01 img{
		width: 100%;
	}
}
.str-mainph{
	padding-top:48px;
	text-align: center;
}
.str02{
	width: 930px;
	margin: 0 auto;
}
.str-3point{
	width: 730px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.str02{
		width: 92%;
	}
	.str-3point{
		width: 100%;
	}
}

.str-3point > li{
	display: table;
	width: 100%;
	padding-top: 65px;
}
.str-pointnum{
	display: table-cell;
	width: 106px;
	vertical-align: top;
}
.str-pointnum > span{
	display: block;
	width: 89px;
	background: #007F68;
}
.str-pointrit{
	display: table-cell;
	width: 624px;
	vertical-align: top;
}
.str-pointttl{
	font-size: 20px;
	line-height: 22px;
	color: #454545;
	font-weight: bold;
	border-bottom: 1px solid #DCDCDC;
	padding-bottom: 3px;
}
.str-pointlead{
	padding-top: 8px;
	font-size: 14px;
	line-height: 20px;
	color: #5A5A5A;
}
.str-pointdetail{
	padding-top: 3px;
	font-size: 12px;
	line-height: 20px;
	text-align: right;
}
.str-pointdetail > a{
	color: #007F68;
	font-weight: bold;
}
.str-point-bttl{
	display: table;
	width: 928px;
	margin: 0 auto;
	padding-top: 60px;
}
p.str-point-bttl{
	font-size: 14px;
	line-height: 22px;
}
.str-point-bnum{
	display: table-cell;
	width: 176px;
	vertical-align: top;
	background: #007F68;
}
.str-point-bnum img{
	display: block;
	margin: 0 auto;
}
.str-point-blead{
	display: table-cell;
	width: 752px;
	vertical-align: middle;
	background: #F3F3F3;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
	padding-left: 30px;
}
@media screen and (max-width: 768px){
	.str-point-bttl{
		display: block;
		width: 100%;
	}
	.str-point-bnum,
	.str-point-blead{
		display: block;
		width: 100%;
		text-align: center;
		padding: 3px 0;
	}
}

.str-point-imglist{
	width: 805px;
	margin: 0 auto;
	padding-top: 10px;
}
.str-point-imglist > li{
	display: table;
	width: 100%;
	margin: 0 auto;
	padding-top: 25px;
}
.str-pointph{
	display: table-cell;
	width: 278px;
	vertical-align: top;
}
.str-pointimgrit{
	display: table-cell;
	width: 620px;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.str-point-imglist{
		width: 92%;
	}
	.str-pointph{
		width: 30%;
	}
	.str-pointph img{
		width: 90%;
	}
	.str-pointimgrit{
		width: 70%;
	}
	.str-pointph img{
		display: block;
		margin: 0 auto;
		padding-bottom: 5px;
	}
	.str-pointph-ttl{
		text-align: center;
	}
}
@media screen and (max-width: 480px){
	.str-point-imglist > li,
	.str-pointph,
	.str-pointimgrit{
		display: block;
		width: 100%;
	}
	.str-pointph img{
		width: 100%;
	}
}
.str-pointph-ttl{
	font-size: 18px;
	line-height: 22px;
	color: #454545;
	font-weight: bold;
	border-bottom: 1px solid #DCDCDC;
	padding-bottom: 3px;
}
.str-pointph-lead{
	padding-top: 8px;
	font-size: 14px;
	line-height: 20px;
	color: #5A5A5A;
}
.strength footer.entry-meta,
.strength .entry-header{
	display: none;
}


/* サポート --------------------------------------------- */
.support footer.entry-meta,
.support .entry-header{
	display: none;
}
.sprt03{
	padding-bottom: 70px;
}
/* サポート > タブ */
.sprt-tab{
	display: table;
	width: 930px;
	margin: 0 auto;
	padding-top: 60px;
}
@media screen and (max-width: 768px){
	.sprt-tab{
		width: 92%;
	}
}
.sprt-tab > li{
	display: table-cell;
	width: 50%;
	padding: 0 4px;
	vertical-align: middle;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.sprt-tab > li a{
	display: block;
	font-size: 18px;
	line-height: 55px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #E6E6E6;
	color: #1C3644;
}
.sprt-tab > li a.active,
.sprt-tab > li a:hover{
	background: #1C3644;
	color: #FFFFFF;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
/* サポート > ページ内タイトル */
.pageinner-ttl{
	text-align: center;
}
@media screen and (max-width: 768px){
	.pageinner-ttl,
	.pageinner-ttl img{
		width: 100%;
	}
}
/* サポート > ページ内タイトル下リード */
.pageinner-lead{
	font-size: 14px;
	line-height: 20px;
	padding-top: 25px;
	text-align: center;
}
/* サポート > タイトル下アイコン */
.pageinner-icon{
	padding-top: 40px;
	text-align: center;
}
.pageinner-icon > a{
	padding: 0 5px;
}
.sprt-catch{
	padding-top: 40px;
	text-align: center;
}
/* サポート > ステップ上部 */
.sprt03 .str-point-bttl{
	padding-top: 40px;
}
.sprt03 .str-point-imglist{
	padding-top: 38px;
}
.sprt-detail01{
	display: table;
	width: 868px;
	margin: 0 auto;
	padding-top: 60px;
}
.sprt-detail01-photo{
	display: table-cell;
	width: 260px;
	vertical-align: top;
}
.sprt-detail01-info{
	display: table-cell;
	width: 608px;
	vertical-align: top;
}
.sprt-detail01-info > .sprt-after-ttl{
	padding-left: 20px;
	background: #F3F3F3;
	font-size: 18px;
	font-weight: bold;
	color: #454545;
	line-height: 32px;
}
.sprt-detail01-info > .sprt-after-info{
	padding: 20px 0 0 20px;
	font-size: 14px;
	line-height: 20px;
	color: #454545;
}
@media screen and (max-width: 768px){
	.sprt-detail01-photo{
		width: 30%;
	}
	.sprt-detail01-photo img{
		width: 90%;
	}
	.sprt-detail01-info{
		width: 70%;
	}
	.sprt-detail01-photo img{
		display: block;
		margin: 0 auto;
		padding-bottom: 5px;
	}
	.sprt-detail01-info > .sprt-after-info{
		padding: 10px 5px 0 5px;
	}
}
@media screen and (max-width: 480px){
	.sprt-detail01,
	.sprt-detail01-photo,
	.sprt-detail01-info{
		display: block;
		width: 100%;
	}
	.sprt-detail01-photo img{
		width: 100%;
	}
}
/* QA */
.sprt-qa-line > li{
	width: 928px;
	margin: 0 auto;
	padding: 15px 0;
	border-bottom: 1px solid #DBDBDB;
	letter-spacing: -.4em;
}
@media screen and (max-width: 768px){
	.sprt-qa-line > li{
		width: 92%;
	}
}
.sprt-qa-q{
	display: inline-block;
	width: 45%;
	min-height: 37px;
	background: url(image/support--qa-icon-q.png) no-repeat;
	background-position: 25px top;
	vertical-align: middle;
	padding: 5px 20px 0 90px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	color: #007F68;
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	letter-spacing: normal;
}
.sprt-qa-a{
	display: inline-block;
	width: 55%;
	min-height: 37px;
	background: url(image/support--qa-icon-a.png) no-repeat;
	background-position: left top;
	vertical-align: middle;
	font-size: 14px;
	line-height: 20px;
	color: #5A5A5A;
	padding: 5px 0 0 65px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	letter-spacing: normal;
}
@media screen and (max-width: 768px){
	.sprt-qa-q,
	.sprt-qa-a{
		display: block;
		width: 100%;
		padding: 5px 0 0 65px;
		background-position: left top;
	}
	.sprt-qa-a{
		margin-top: 5px;
	}
	.sprt-qa-a img{
		max-width: 100%;
	}
}
.sprt-qa-a img{
	margin-top: 5px;
	margin-right: 5px;
}

/* ニュース --------------------------------------------- */
/* タブ */
.newstab{
	width: 936px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.newstab{
		width: 98%;
	}
}
.newstab > ul{
	width: 100%;
	padding: 40px 0;
	letter-spacing: -.4em;
}
.newstab > ul > li{
	display: inline-block;
	width: 33.3%;
	padding: 4px 0;
	text-align: center;
	vertical-align: top;
}
.newstab > ul > li a{
	display: block;
	width: 305px;
	height: 55px;
}
@media screen and (max-width: 480px){
	.newstab > ul > li{
		width: 50%;
	}
	.newstab > ul > li a{
		width: 96%;
		height: 32px;
		margin: 0 auto;
	}
}
.newstab > ul > li a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.newstab > ul > li img{
	display: none;
	margin: 0 auto;
}
.newstab > ul > li a.newstab-itm01{
	background: url(image/news--tab01.png) no-repeat;
}
.newstab > ul > li a.newstab-itm02{
	background: url(image/news--tab02.png) no-repeat;
}
.newstab > ul > li a.newstab-itm03{
	background: url(image/news--tab03.png) no-repeat;
}
.newstab > ul > li a.newstab-itm04{
	background: url(image/news--tab04.png) no-repeat;
}
.newstab > ul > li a.newstab-itm05{
	background: url(image/news--tab05.png) no-repeat;
}
.newstab > ul > li a.newstab-itm06{
	background: url(image/news--tab06.png) no-repeat;
}
.newstab > ul > li a.newstab-itm01:hover{
	background: url(image/news--tab01-on.png) no-repeat;
}
.newstab > ul > li a.newstab-itm02:hover{
	background: url(image/news--tab02-on.png) no-repeat;
}
.newstab > ul > li a.newstab-itm03:hover{
	background: url(image/news--tab03-on.png) no-repeat;
}
.newstab > ul > li a.newstab-itm04:hover{
	background: url(image/news--tab04-on.png) no-repeat;
}
.newstab > ul > li a.newstab-itm05:hover{
	background: url(image/news--tab05-on.png) no-repeat;
}
.newstab > ul > li a.newstab-itm06:hover{
	background: url(image/news--tab06-on.png) no-repeat;
}
@media screen and (max-width: 480px){
	.newstab > ul > li a.newstab-itm01,
	.newstab > ul > li a.newstab-itm02,
	.newstab > ul > li a.newstab-itm03,
	.newstab > ul > li a.newstab-itm04,
	.newstab > ul > li a.newstab-itm05,
	.newstab > ul > li a.newstab-itm06{
		background-size: auto 32px;
	}
}
/* 採用情報 --------------------------------------------- */
/* 採用情報：トップ：メインビジュアル */
.rectop01{
	width: 100%;
	height: 450px;
	background: url(image/recruit-mainvis.jpg) no-repeat;
	background-size: cover;
}
@media screen and (max-width: 768px){
	.rectop01{
		height: 250px;
	}
}
@media screen and (max-width: 480px){
	.rectop01{
		height: 160px;
	}
}
/* 採用情報：トップ：非表示 */
.entry-header.recruit_top,
.entry-meta.recruit_top{
	display: none;
}
/* 採用情報：共通：メニュー */
.recruit-menu{
	width: 100%;
	background: #252E33;
}
.recruit-menu > ul{
	display: table;
	width: 940px;
	margin: 0 auto;
}
.recruit-menu > ul > li{
	display: table-cell;
}
@media screen and (max-width: 768px){
	.recruit-menu > ul{
		width: 100%;
	}
	.recruit-menu > ul > li{
		display: inline-block;
		width: 20%;
	}
	.recruit-menu > ul > li img{
		width: 100%;
	}
}
.recruit-menu > ul > li a{
	display: block;
}
.recruit-menu > ul > li a:hover{
	background: #007F68;
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.recruit-menu > ul > li img{
	display: block;
}
/* 採用情報：共通：ドロップダウン部 */
.recruit-drop{
	position: relative;
	width: 940px;
	margin: 0 auto;
}

.recruit-drop li{
	width: 188px;
	padding: 0 24px;
	background: #252E33;
	border-bottom: 1px dotted #898989;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
@media screen and (max-width: 768px){
	.recruit-drop{
	}
	.recruit-drop li{
		width: 20%;
	}
	.sprec-menubg{
		background: #252E33;
	}
	.sprec-menubg img{
		width: auto;
		display: block;
		margin: 0 auto;
	}
	.sprec{
		border-bottom: 1px dotted #898989!important;
	}
	.sprec li{
		width: 100%!important;
		background: #252E33!important;
		border-top: 1px dotted #898989!important;
		padding: 5px;
	}
	.sprec li a{
		font-size: 14px;
		background: #252E33!important;
		color: #FFFFFF;
	}
}
@media screen and (max-width: 480px){
	.sprec-menubg img{
		width: 50%!important;
		display: block;
		margin: 0 auto;
	}
}
.recruit-drop li a{
	display: block;
	background: url(image/drop--eyecatch.png) no-repeat;
	background-position: left center;
	padding-left: 10px;
	font-size: 14px;
	line-height: 40px;
	color: #FFFFFF;
}
.recruit-drop02{
	position: absolute;
	top: 0;
	left: 188px;
}
.recruit-drop03{
	position: absolute;
	top: 0;
	left: 376px;
}
.recruit-drop04{
	position: absolute;
	top: 0;
	left: 564px;
}
.recruit-drop05{
	position: absolute;
	top: 0;
	left: 752px;
}
/* 採用情報：共通：ドロップダウン部：初期設定 */
.recruit-drop ul{
	display: none;
}
/* 採用情報：共通：ぱんくず */
.recruit-bread{
	width: 100%;
	background: #F3F3F3;
	border-bottom: 1px solid #DCDCDC;
}
.recruit-bread ul{
	width: 930px;
	margin: 0 auto;
	letter-spacing: -.4em;
}
@media screen and (max-width: 768px){
	.recruit-bread ul{
		width: 92%;
	}
	.rectop02{
		width: 92%;
		margin: 0 auto;
	}
}
.recruit-bread ul > li{
	display: inline-block;
	color: #686868;
	font-size: 13px;
	line-height: 43px;
	letter-spacing: normal;
	padding-right: 5px;
	vertical-align: middle;
}
.recruit-bread ul > li a{
	color: #686868;
}
/* 採用情報：トップ：見出し */
.recruit-head{
	padding-top: 30px;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	font-weight: bold;
}
/* 採用情報：トップ：リード */
.recruit-lead{
	width: 580px;
	margin: 0 auto;
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
}
@media screen and (max-width: 768px){
	.recruit-lead{
		width: 100%;
	}
}
/* 採用情報：トップ：メイン */
.rectop03{
	width: 100%;
	background: url(image/recruit--mainbg.png) repeat-x;
    background-color: #f3f3f3;
}
.rectop-mainlist{
	width: 1008px;
	margin: 37px auto 0 auto;
	letter-spacing: -.4em;
}
.rectop-mainlist > li{
	display: inline-block;
	width: 33.3%;
	padding-bottom: 55px;
	vertical-align: top;
	letter-spacing: normal;
}
@media screen and (max-width: 768px){
	.rectop03{
		background: #efefef;
		padding-top: 10px;
	}
	.rectop-mainlist{
		width: 100%;
		text-align: center;
	}
	.rectop-mainlist > li{
		width: 50%;
	}
}
@media screen and (max-width: 480px){
	.rectop-mainlist > li{
		width: 100%;
	}
}
.rectop-mainlist > li .rectop-mainlist-item{
	position: relative;
	width: 308px;
	height: 352px;
	margin: 0 auto;
}
.rectop-mainlist > li a:hover{
	filter: alpha(opacity=100); /* IE6, IE7 */
	-ms-filter: "alpha( opacity=100 )";/* IE8 */
	opacity: 1;/* IE8 over, Opera, Safari, CSS3 over */
	-moz-opacity:1;/* Mozilla(FF,NS) */
	-khtml-opacity: 1;/* Safari 1.x */
}
.rectop-mainlist-mes{
	position: absolute;
	top: 182px;
	left: 40px;
}
.rectop-mainlist-info{
	position: absolute;
	width: 268px;
	height: 147px;
	padding: 40px 18px 0 18px;
	bottom: 0;
	left: 21px;
	background: #FFFFFF;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.rectop-mainlist-text{
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	color: #454545;
}
.rectop-mainlist-cap{
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #454545;
}
/* 採用情報：トップ：バナー */
.rectop-banner{
	padding: 15px 0 40px 0;
	text-align: center;
}
/* 採用情報：トップ：問い合わせ */
.rectop-contact{
	width: 100%;
	padding: 35px;
	background: #252E33;
}
.rectop-contact-area{
	width: 926px;
	margin: 0 auto;
	padding: 24px 0;
	border: 1px solid #DCDCDC;
	letter-spacing: -.4em;
	text-align: center;
}
@media screen and (max-width: 768px){
	.rectop-contact-area{
		width: 100%;
	}
	.rectop-contact-area img{
		width: 100%;
	}
}
.rectop-contact-text{
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
}
.rectop-contact-btn{
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
}

/* 採用情報：ページビルダー */
.so-panel,
.panel-grid{
	margin-bottom: 0!important;
}
.recruit-pb-mainvis{
	height: 560px;
	overflow: hidden;
}
@media screen and (max-width: 768px){
	.recruit-pb-mainvis{
		height: 160px;
	}
}
.recruit-pb-mainvis img{
	width: 100%;
}
.recruit-pb-qa{
	width: 970px;
	margin: 0 auto;
	padding-top: 74px;
}
@media screen and (max-width: 768px){
	.recruit-pb-qa{
		width: 92%;
	}
}
.recruit-pb-qattl{
	padding-top: 25px;
	font-size: 18px;
	line-height: 48px;
	font-weight: bold;
	color: #454545;
}
.recruit-pb-qattl img{
	padding-right: 10px;
	vertical-align: middle;
}
.recruit-pb-qaanswer{
	padding: 23px 10px 50px 0;
	font-size: 14px;
	line-height: 20px;
	color: #454545;
	border-bottom: 1px dotted #DCDCDC;
}
.recruit-pb-qa > *:first-child + *{
	padding: 20px;
	border: 1px solid #DCDCDC;
	background: #F3F3F3;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
@media screen and (max-width: 768px){
	.recruit-pb-qa > *:first-child + * img{
		padding-top: 10px;
	}
}
.recruit-pb-flowhead{
	text-align: center;
}
.recruit-pb-flowbg-time{
	background: url(image/recruit--flow-bgmiddle.png) repeat-y;
	font-size: 18px;
	line-height: 22px;
	padding-left: 30px;
	font-weight: bold;
}
.recruit-pb-flowbg-detail{
	font-size: 14px;
	line-height: 20px;
	padding: 5px 0 30px 25px;
	background: url(image/recruit--flow-bg.png) repeat-y;
}
.recruit-pb-qa > *:first-child + * > div:first-child + * + * > .recruit-pb-flowbg-time{
	background: url(image/recruit--flow-bgtop.png) repeat-y;
}
.recruit-pb-qa > *:first-child + * > div:nth-last-of-type(2) .recruit-pb-flowbg-time{
	background: url(image/recruit--flow-bgbottom.png) repeat-y;
}
.recruit-pb-qa > *:first-child + * > div:nth-last-of-type(1) .recruit-pb-flowbg-detail{
	background: none;
}
.recruit-pb-bottom{
	margin-top: 100px;
	background: #F3F3F3;
}
.recruit-pb-bottomimg img{
	width: 100%;
}
.recruit-pb-message{
	padding-top: 30px;
	text-align: center;
}
.recruit-pb-message-head{
	width: 570px;
	margin: 0 auto;
	padding-top: 10px;
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
}
.recruit-pb-message-lead{
	width: 570px;
	margin: 0 auto;
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (max-width: 768px){
	.recruit-pb-message-head,
	.recruit-pb-message-lead{
		width: 92%;
	}
	.recruit-pb-message img{
		width: 100%;
	}
}
.recruit-pb-slider{
	width: 100%;
	padding: 60px 0;
	background: #252E33;
}
.recruit-pb-sliderarea{
	width: 713px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.recruit-pb-sliderarea{
		width: 92%;
	}
}
.recruit-pb-slider .metaslider .caption-wrap{
	top: 135px;
	opacity: 1!important;
}
.recruit-pb-slider .flex-viewport{
	min-height: 155px;
}
.recruit-pb-slider .metaslider .caption{
	padding: 0!important;
	font-size: 14px;
	line-height: 147%;
	color: #FFFFFF;
}


/* 採用情報：about WATAKEI */
.abwt-mainvis{
	width: 100%;
	height: 560px;
	background: url(image/abwt--mainvis.jpg) no-repeat;
	background-size: cover;
}

.abwt-mainvis > div{
	padding-top: 195px;
	text-align: center;
}
@media screen and (max-width: 768px){
	.abwt-mainvis{
		height: 160px;
	}
	.abwt-mainvis > div{
		padding-top: 60px;
	}
	.abwt-mainvis > div img{
		width: 40%;
	}
}
.abwt01{
	width: 925px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.abwt01{
		width: 92%;
	}
}
.abwt01-catch{
	padding: 60px 0 20px 0;
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	color: #5A5A5A;
}
.abwt01-tbl{
	display: table;
	width: 100%;
}
.abwt01-lft{
	display: table-cell;
	width: 745px;
	vertical-align: top;
}
.abwt01-lft > p{
	padding-right: 22px;
	font-size: 14px;
	line-height: 24px;
	color: #5A5A5A;
}
.abwt01-rit{
	display: table-cell;
	width: 180px;
	vertical-align: top;
}
@media screen and (max-width: 768px){
	.abwt01-tbl,
	.abwt01-lft,
	.abwt01-rit{
		display: block;
		width: 100%;
	}
	.abwt01-rit{
		text-align: right;
		padding-top: 10px;
	}
}
.abwt02-ttl{
	padding: 60px 0 40px 0;
	text-align: center;
}
.abwt02-ph{
	text-align: center;
}
@media screen and (max-width: 768px){
	.abwt02-ph img,
	.abwt02-ttl img{
		width: 100%;
	}
}
.abwt03{
	width: 100%;
	margin-top: 80px;
	padding-bottom: 60px;
	background: #F3F3F3;
}
.abwt03-head{
	position: relative;
	width: 980px;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.abwt03-head{
		width: 92%;
	}
}
.abwt03-ttl{
	padding: 40px 0 20px 0;
	text-align: center;
}
@media screen and (max-width: 768px){
	.abwt03-ttl img{
		width: 100%;
	}
}
.abwt03-catch{
	padding: 0 0 20px 0;
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	color: #5A5A5A;
	text-align: center;
}
.abwt03-lead{
	padding-right: 22px;
	font-size: 14px;
	line-height: 24px;
	color: #5A5A5A;
	text-align: center;
}
.abwt01-snapicon{
	position: absolute;
	top: 30px;
	left: 0;
}
@media screen and (max-width: 768px){
	.abwt01-snapicon img{
		width: 40%;
	}
	.abwt03-lead br{
		display: none;
	}
}
.abwt03-phlist{
	width: 989px;
	margin: 0 auto;
	letter-spacing: -.4em;
	text-align: center;
}
.abwt03-phlist > li{
	display: inline-block;
	width: 25%;
	vertical-align: top;
	letter-spacing: normal;
}
@media screen and (max-width: 768px){
	.abwt03-phlist{
		width: 100%;
	}
	.abwt03-phlist > li{
		width: 50%;
	}
}
.abwt03-phlist > li img{
	width: 238px;
	height: 140px;
}
.abwt03-phlist > li > div,
.abwt03-phlist > li > p{
	width: 238px;
	margin: 0 auto;
	padding-top: 20px;
}
@media screen and (max-width: 768px){
	.abwt03-phlist > li img,
	.abwt03-phlist > li > div,
	.abwt03-phlist > li > p{
		width: 95%;
		display: block;
		margin: 0 auto;
	}
	.abwt03-phlist > li img{
		height: auto;
	}
}
.abwt03-phlist > li > p{
	padding-top: 5px;
}
.abwt03-phlist > li > p{
	font-size: 14px;
	line-height: 20px;
	color: #6D6D6D;
	text-align: left;
}




/* 問い合わせ ========================= */
.ctct-page-ttl{
	padding-top: 40px;
	text-align: center;
}
/* 見出 */
.ctct-page-head{
	text-align: center;
}
/* フォームエリア */
.ctct-form{
	width: 850px;
	margin: 0 auto;
	padding: 35px 0 60px 0;
}
@media screen and (max-width: 768px){
	.ctct-form{
		width: 100%;
	}
	.ctct-page-head img{
		width: 100%;
	}
}
.ctct-fm-hissu{
	font-size: 14px;
	line-height: 20px;
	color: #D8372B;
	padding: 0 0 5px 30px;
}
.ctct-fm-tbl{
	width: 100%;
	border-top: 1px solid #DCDCDC;
}
.ctct-fm-tbl > li{
	display: table;
	width: 100%;
	border-bottom: 1px solid #DCDCDC;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.ctct-fm-th{
	display: table-cell;
	width: 216px;
	padding: 20px 0 20px 30px;
	vertical-align: top;
	font-size: 14px;
	line-height: 18px;
	color: #6D6D6D;
	font-weight: bold;
	background: #F3F3F3;
}
.ctct-fm-th span{
	color: #D8372B;
	font-weight: normal;
}
.ctct-fm-td{
	display: table-cell;
	width: 634px;
	padding: 20px 30px 20px 20px;
	vertical-align: top;
	font-size: 14px;
	line-height: 18px;
	color: #6D6D6D;
}
@media screen and (max-width: 768px){
	.ctct-fm-tbl > li,
	.ctct-fm-th,
	.ctct-fm-td{
		display: block;
		width: 100%;
	}
}
.ctct-fm-td input{
	width: 100%;
	font-size: 14px;
	line-height: 18px;
}
.ctct-fm-td textarea{
	width: 100%;
	height: 148px;
}
.ctct-fm-td.mail input{
	margin-bottom: 5px;
}
.ctct-fm-submit{
	text-align: center;
	padding-top: 30px;
}
.ctct-fm-submit input[type="submit"]{
	background: #1C3644;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 25px;
}
.ctct-fm-td input.ctct-fm-zip1{
	width: 61px;
}
.ctct-fm-td input.ctct-fm-zip2{
	width: 61px;
}
.ctct-fm-td input.ctct-fm-addr{
	width: 413px;
}

/* 投稿詳細レイアウト ========================= */
.single-area{
	width: 930px;
	margin: 0 auto;
	padding-top: 40px;
}
.single-right{
	float: right;
	width: 75%;
}
.single-right div{
	margin-left: 0!important;
	margin-right: 0!important;
}
.single-left{
	float: left;
	width: 25%;
}
@media screen and (max-width: 768px){
	.single-area{
		width: 100%;
	}
	.single-right,
	.single-left{
		float: none;
		width: 100%;
	}
}
/* 投稿詳細サイドバー ========================= */
.sdmn{
	width: 90%;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	padding-bottom: 60px;
}
@media screen and (max-width: 768px){
	.sdmn{
		width: 100%;
	}
}
.sdmn-head{
	padding: 10px 10px;
	background: #192A32;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
}
.sdmn-list{
	border-bottom: 1px solid #DCDCDC;
}
.sdmn-list a{
	display: block;
	padding: 10px 10px 10px 30px;
	background: url(image/sdmn--arrow.png) no-repeat #FEFEFE;
	background-position: 10px center;
	color: #434343;
	font-size: 12px;
	line-height: 16px;
}

/* 投稿詳細フォーマット ========================= */
/* タイトル */
.single-tp{
	width: 100%;
	margin: 0 auto;
}
.single-tp .entry-title{
	padding-left: 10px;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
	border-left: 8px solid #007F68;
}
/* 投稿内容 */
.entry-content.single-tp{
	padding: 0 0 60px 0;
}
/* ぱんくず */
.entry-bread{
	width: 100%;
}
.entry-bread ul{
	width: 930px;
	margin: 0 auto;
	padding: 15px 0;
	letter-spacing: -.4em;
	border-bottom: 1px solid #DCDCDC;
}
@media screen and (max-width: 768px){
	.entry-bread ul{
		width: 92%;
	}
}
.entry-bread ul > li{
	display: inline-block;
	color: 686868;
	font-size: 13px;
	line-height: 15px;
	letter-spacing: normal;
	padding-right: 5px;
	vertical-align: middle;
}
.entry-bread ul > li a{
	color: #686868;
}
/* PT1：本文 */
.panel-widget-style .widget-title,
.so-panel .widget-title{
	display: none;
}
.entry-pb-content{
	width: 100%;
	margin: 0 auto;
	padding-top: 20px;
	font-size: 14px;
	line-height: 20px;
	color: #454545;
}
@media screen and (max-width: 768px){
	.entry-pb-content p{
		width: 92%;
		margin: 0 auto;
	}
}
/* PT1：メイン画像 */
.entry-pb-mainvis,
.entry-pb-mainvis-center{
	padding-top: 20px;
}
.entry-pb-mainvis-center img{
	margin: 0 auto;
}
/* PT3：動画 */
.entry-pb-movie{
	padding-top: 20px;
}
.entry-pb-movie iframe{
	display: block;
	margin: 0 auto;
}
/* PT3：見出し */
.entry-pb-head{
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 10px 0;
	background: url(image/entry--headbg.png) no-repeat;
	background-position: center bottom;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
.entry-pb-head.marg{
	padding-top: 100px;
}
.entry-pb-pt3head{
	padding-bottom: 20px;
}
/* PT3：表組み */
.entry-pb-tr{
	width: 100%;
	margin: 0 auto;
	padding-bottom: 15px;
}
.entry-pb-tr > div{
	padding: 0!important;
}
.entry-pb-th{
	background: #007F68;
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	text-align: center;
	color: #FFFFFF;
}
.entry-pb-td{
	font-size: 14px;
	line-height: 18px;
	padding: 5px 10px 5px 20px;
	background: #FFFFFF;
}
/* PT3：画像ギャラリー */
.entry-pb-gal{
	width: 100%;
	margin: 0 auto;
}
.entry-pb-galimg{
	padding-top: 20px;
}
@media screen and (max-width: 768px){
	.entry-pb-gal .panel-grid-cell{
		margin-bottom: 0px!important;
	}
}
.entry-pb-galimg img{
	margin: 0 auto;
}
/* PT2：テーブルヘッダー */
.entry-pb-tablehead,
.entry-pb-boshu-ttl{
	width: 100%;
	margin: 20px auto 0 auto;
	padding: 0;
	background: #CCCCCC;
	font-size: 16px;
	font-weight: bold;
	line-height: 40px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
	text-align: center;
}
.entry-pb-tablehead span,
.entry-pb-boshu-ttl span{
	color: #FF3300;
	font-weight: normal;
}
.entry-pb-tr2{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	background: #EFEFEF;
	border-bottom: 1px dotted #ccc;
}
.entry-pb-tr2 .panel-grid-cell{
	padding: 0!important;
	margin: 0!important;
}
.entry-pb-th2{
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	padding: 10px 5px;
	text-align: center;
}
.entry-pb-td2{
	font-size: 14px;
	line-height: 18px;
	padding: 10px;
	background: #FFFFFF;
}
@media screen and (max-width: 768px){
	.entry-pb-td2 br{
		display: none;
	}
}
/* キャプション */
.entry-pb-caption p{
	font-size: 13px;
	line-height: 15px;
	padding-top: 5px;
}

/* テキスト揃え */
.entry-pb-left{
	text-align: left!important;
	padding-left: 10px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.entry-pb-center{
	text-align: center!important;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.entry-pb-right{
	text-align: right!important;
	padding-right: 10px;
	-webkit-box-sizing: border-box; /* Safari */  
	-moz-box-sizing: border-box; /* Firefox */  
	-ms-box-sizing: border-box; /* Internet Explorer 8 */  
	box-sizing: border-box; /* Opera */
}
.entry-pb-left img{
	margin-left: 0;
	margin-right: auto;
}
.entry-pb-center img{
	margin: 0 atuo;
}
.entry-pb-right img{
	margin-left: auto;
	margin-right: 0;
}


/*  */
.entry-pb-content.auto-row p{
	padding-bottom: 14px;
}


/* サイトマップフォーマット ========================= */
#sitemap_list{
	width: 930px;
	margin: 0 auto!important;
}
#sitemap_list li{
	border: none!important;
}
#sitemap_list li li{
	background: none!important;
}
@media screen and (max-width: 768px){
	#sitemap_list{
		width: 92%;
	}
	#sitemap_list li{
		font-size: 13px!important;
	}
}
/* その他固定ページフォーマット ========================= */
.other-page-body{
	width: 930px;
	margin: 0 auto!important;
	padding-bottom: 60px;
}
.other-page-body li{
	padding: 15px 0 0 25px;
	list-style: none;
	font-size: 14px;
	line-height: 22px;
	background: url(image/sdmn--arrow.png) no-repeat;
	background-position: left 20px;
}
.other-page-ttl{
	width: 100%;
	height: 132px;
	text-align: center;
	background: url(image/other--page-ttlbg.jpg);
	background-size: cover;
}
.privacy-page-ttl-img{
	width: 100%;
	height: 132px;
}
.other-page-body{
	width: 930px;
	margin: 0 auto;
	padding-bottom: 60px;
	font-size: 14px;
	line-height: 22px;
}
.other-page-body strong{
	display: block;
	margin-bottom: -10px;
	font-weight: bold;
	padding-top: 10px;
}
.recruit-bread.other{
	width: 980px;
	margin: 0 auto;
	background: none;
}
.other-page-headcatch{
	color: #007F68;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	padding-bottom: 30px;
}
.other-page-headlist{
	border: 1px solid #333;
	background: #007F68;
	color: #FFF;
	font-weight: bold;
}
.other-page-headlist li{
	background: none;
	padding: 5px;
}
.other-page-hadlist-headline{
	font-size: 18px!important;
	background: none;
	text-align: center;
	border-bottom: 1px solid #fff;
}
.other-page-headlist-def{
	font-size: 16px!important;
	text-align: center;
}
.other-page-alltext{

}
@media screen and (max-width: 768px){
	.other-page-body{
		width: 92%;
	}
	.other-page-ttl{
		height: 100%;
	}
	.other-page-ttl img{
		max-width: 100%;
	}
	.privacy-page-ttl-img{
		height: 100px;
	}

}



/* ビジネスフェア2017 ========================= */
.cnts-bf2017 > div > div{
	margin: 0!important;
}
/* カテゴリ見出し */
.cnts-bf2017 .bussiness_fair-subcat{
	width: 100%;
	margin: 20px auto 40px auto;
	border: 1px solid #D2D2D2;
}
.cnts-bf2017 .bussiness_fair-subcat > div{
	margin: 0!important;
	padding: 0!important;
}
.cnts-bf2017 .bussiness_fair-subcat > div img{
	display: block;
}
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-01{ background: url(image/bg-bf2017-catttl01.png) #FEF8E4 no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-02{ background: url(image/bg-bf2017-catttl02.png) #FDE5E7 no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-03{ background: url(image/bg-bf2017-catttl03.png) #E5F4EC no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-04{ background: url(image/bg-bf2017-catttl04.png) #FDE5F2 no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-05{ background: url(image/bg-bf2017-catttl05.png) #E5F5FD no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-06{ background: url(image/bg-bf2017-catttl06.png) #EFECF4 no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-07{ background: url(image/bg-bf2017-catttl07.png) #FDF2E4 no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-08{ background: url(image/bg-bf2017-catttl08.png) #E5F2F0 no-repeat right bottom; }
.cnts-bf2017 .bussiness_fair-subcat-ttl{
	margin: 15px 0 10px 0;
	padding-left: 5px;
	color: #1B3645;
	font-size: 18px;
}
.cnts-bf2017 .bussiness_fair-subcat-catch{
	font-size: 20px;
	padding-left: 5px;
}
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-01 .bussiness_fair-subcat-ttl{ color: #FBBF00; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-02 .bussiness_fair-subcat-ttl{ color: #E80000; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-03 .bussiness_fair-subcat-ttl{ color: #009940; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-04 .bussiness_fair-subcat-ttl{ color: #E6007F; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-05 .bussiness_fair-subcat-ttl{ color: #009EEB; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-06 .bussiness_fair-subcat-ttl{ color: #664199; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-07 .bussiness_fair-subcat-ttl{ color: #F18200; }
.cnts-bf2017 .bussiness_fair-subcat.bf2017-cat-08 .bussiness_fair-subcat-ttl{ color: #008068; }
@media screen and (max-width: 768px){
	.cnts-bf2017 .bussiness_fair-subcat{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
	}
	.cnts-bf2017 .bussiness_fair-subcat .panel-grid-cell .so-panel:before,
	.cnts-bf2017 .panel-row-style:before{
		display: none!important;
	}
	.cnts-bf2017 .bussiness_fair-subcat .panel-grid-cell:first-of-type{
		width: 15%!important;
	}
	.cnts-bf2017 .bussiness_fair-subcat .panel-grid-cell img{
		max-width: 90%;
	}
	.cnts-bf2017 .bussiness_fair-subcat .panel-grid-cell:last-of-type{
		width: 80%!important;
	}
	.cnts-bf2017 .bussiness_fair-subcat-ttl,
	.cnts-bf2017 .bussiness_fair-subcat-catch{
		margin: 5px 0;
		font-size: 14px;
	}
}
@media screen and (max-width: 480px){
	.cnts-bf2017 .bussiness_fair-subcat > div img{
		margin-left: 5px;
	}
}
/* サブタイトル（協賛メーカー） */
.cnts-bf2017 .maker-ttl{
	width: 95%;
	margin: 0 auto;
}
.cnts-bf2017 .maker-ttl p{
	width: 185px;
	background-color: #1c3644;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}
/* 協賛メーカー 個別 */
.cnts-bf2017 .entry-pb-tr{
	width: 95%;
	margin: 0 auto;
	padding: 20px 0;
	border-top: 1px solid #D2D2D2;
}
.cnts-bf2017 .entry-pb-tr > div:first-of-type{
	width: 25%!important;
}
.cnts-bf2017 .entry-pb-tr > div:last-of-type{
	width: 75%!important;
}
/* 協賛メーカー名 */
.cnts-bf2017 .entry-pb-th{
	padding: 10px 5px;
	color: #1c3644;
	font-size: 16px;
	background-color: transparent;
	border: 3px solid #CCCCCC;
	border-radius: 8px;
}
.seminar-article-area .cnts-bf2017 .entry-pb-th{ border-color: #FBBF00; color: #FBBF00; }
.seminar-article-area .cnts-bf2017 + * .entry-pb-th{ border-color: #E80000; color: #E80000; }
.seminar-article-area .cnts-bf2017 + * + * .entry-pb-th{ border-color: #009940; color: #009940; }
.seminar-article-area .cnts-bf2017 + * + * + * .entry-pb-th{ border-color: #E6007F; color: #E6007F; }
.seminar-article-area .cnts-bf2017 + * + * + * + * .entry-pb-th{ border-color: #009EEB; color: #009EEB; }
.seminar-article-area .cnts-bf2017 + * + * + * + * + * .entry-pb-th{ border-color: #664199; color: #664199; }
.seminar-article-area .cnts-bf2017 + * + * + * + * + * + * .entry-pb-th{ border-color: #F18200; color: #F18200; }
.seminar-article-area .cnts-bf2017 + * + * + * + * + * + * + * .entry-pb-th{ border-color: #008068; color: #008068; }
/* 協賛メーカー見出し */
.cnts-bf2017 .entry-pb-td.catch{
	padding-top: 0;
	font-weight: bold;
}
/* 協賛メーカー詳細 */
.cnts-bf2017 .entry-pb-td.detail p{
	margin-bottom: .8em;
	padding-left: 1em;
	text-indent: -1em;
	word-wrap: break-word;
}
/* 協賛メーカーボタン */
.cnts-bf2017 .entry-pb-td.detail p a{
	display: block;
	width: 180px;
	margin-top: 5px;
	padding: 3px;
	border-radius: 15px;
	background-color: #CCCCCC;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
}
.seminar-article-area .cnts-bf2017 .entry-pb-td.detail p a{ background-color: #FBBF00;}
.seminar-article-area .cnts-bf2017 + * .entry-pb-td.detail p a {background-color: #E80000;}
.seminar-article-area .cnts-bf2017 + * + * .entry-pb-td.detail p a{ background-color: #009940;}
.seminar-article-area .cnts-bf2017 + * + * + * .entry-pb-td.detail p a{ background-color: #E6007F;}
.seminar-article-area .cnts-bf2017 + * + * + * + * .entry-pb-td.detail p a{ background-color: #009EEB;}
.seminar-article-area .cnts-bf2017 + * + * + * + * + * .entry-pb-td.detail p a{ background-color: #664199;}
.seminar-article-area .cnts-bf2017 + * + * + * + * + * + * .entry-pb-td.detail p a{ background-color: #F18200;}
.seminar-article-area .cnts-bf2017 + * + * + * + * + * + * + * .entry-pb-td.detail p a{ background-color: #008068;}
/* セミナーサブタイトル */
.cnts-bf2017 .semi-subttl{
	margin-top: 30px;
	padding: 5px 5px 5px 15px;
	background-color: #F9F9F9;
	border: 1px dotted #DDDDDD;
	border-left: 8px solid #008068;
	font-size: 16px;
	font-weight: bold;
}
/* セミナー画像 */
.cnts-bf2017 .img-center img{
	display: block;
	margin: 0 auto;
}
@media screen and (max-width: 768px){
	.cnts-bf2017 .maker-ttl,
	.cnts-bf2017 .entry-pb-tr{
		width: 100%;
	}
	.cnts-bf2017 .entry-pb-tr{
		padding: 10px 0;
	}
	.cnts-bf2017 .entry-pb-tr > div{
		margin-bottom: 10px!important;
	}
	.cnts-bf2017 .entry-pb-tr > div:first-of-type,
	.cnts-bf2017 .entry-pb-tr > div:last-of-type{
		width: 100%!important;
	}
	.cnts-bf2017 .entry-pb-td{
		padding-left: 0;
	}
	.cnts-bf2017 .img-center img{
		max-width: 100%;
	}
	
#bigbanner2{
	width:200px;
	height:120px;
	top:50px;
	right:5px;
}

}
