/*
Theme Name: Ueda Original Theme
Theme URI:
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The theme for Ueda dervied from the 2012 theme for WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =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;
}
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;
}

#wpadminbar{
	z-index:999999;
}


/* 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: "";
}

/* =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: #21759b;
	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 {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
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;
}
.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: #222;
}
body.custom-font-enabled {
	font-family: メイリオ, Meiryo, "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	/* padding: 0 24px; */
	/* padding: 0 1.714285714rem; */
	background-color: #fff;
}
.site-content {
	margin: 0;
	margin:0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.page-shadow{
	overflow:hidden;
	width:100%;
	background-image:url(images/bg-cross-silver-s.png);

}


/* 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 {
    background-image: url("/images/line-red.jpg");
    background-position: left center;
    background-repeat: repeat;
    border-left: 2px solid #eb1c24;
    color: #eb1c24;
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 0 0 1em;
    padding: 0.2em 1em;
    text-shadow: 1px 1px 1px #fff;
}
.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 .widget li{
	background-image:url(images/icon-circle.png);
	background-repeat:no-repeat;
	background-position:left center;
	padding-left:20px;
	border-bottom:1px dotted #ddd;

}
.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: #21759b;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
    font-size: 1.82857rem;
	line-height: 1.2;
    font-weight: bolder;
}
.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: #21759b;
}
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 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size:20px;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 14px;
	/*font-size: 0.928571429rem;*/
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 20px;
	margin: 0 0 1.414285714rem;
	line-height: 1.414285714;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #9f9f9f;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.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 {
	list-style: disc outside;
}
.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 {
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.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: #21759b;
}
.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: #21759b;
}
.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: #21759b;
}
.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: #21759b;
}
.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;
	text-align:right;
	display:block;
}
#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;
}


.textwidget div.banner{
	margin-bottom:10px;
}
.textwidget div.banner a{
	display:block;
}
.textwidget div.banner a img{
	display:block;
}

.entry-content{
	margin:20px;
}



/* =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 http://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}


/* =Device
-------------------------------------------------------------- */
span.quicklink{
	background-color:#f76053;
	color:white;
	padding:3px 10px;
	border-radius:10px;
	margin:0 1em 0 0;
	font-size:10px;
	white-space:nowrap;
}
span.quicklink a{
	color:white;
}
span.quicklink a:visited{
	color:white;
}

/* Minimum width of 600 pixels. */
@media screen and (max-width: 600px){

	/*------------------------------------------------------------------------------------
	2. Header (SP)
	-------------------------------------------------------------------------------------*/
	.sp{ display:block; }
	.pc{ display:none; }

	#menu{
		width:100%;
		margin:0 auto;
		z-index:100000;
	}
	#menu div.fixed{
		background-color:#e50012;
		width:100%;
		z-index:100000;
	}
	#menu div.adjuster{
		width:100%;
    background: #222;
		margin:0 auto;
		padding:0;
		overflow:hidden;
	}
	#menu div.fixed h1.logo{
		float:left;
		width:100px;
		margin:0;
		padding:0;
	}

	#menu div.fixed h1.logo a{
		display:block;
	}
	#menu div.fixed h1.logo img{
		display:block;
		width:100%;
		height: auto;
	}
	#menu div.fixed p.desc{
		margin:0;
		padding:0;
    padding-left: 1em;
		display:block;

		/* vertical-align:middle; */
		font-size:9pt;
		color:white;
		line-height:56px;
		float:left;
		height:56px;
	}
	#menu div.fixed div.toggleMenu{
		display:block;
		float:right;
		cursor:pointer;
	}
	#menu div.fixed div.toggleMenu b{
		line-height:56px;
		font-size:28px;
		font-weight:bold;
		text-align:center;
		display:block;
		width:56px;
		height:56px;
		color:white;
		cursor:pointer;
	}
	#menu div.fixed div.menu-main-menu-container{
		display:none;
	}

	div.spmenu{
		display:none;
		background-color:#ed1e26;
	}
	div.spmenu div.menu-main-menu-container{
		width:100%;
		clear:both;
	}
	div.spmenu div.menu-main-menu-container ul{
		display:block;
		width:100%;
		margin:0;
		padding:0;
		list-style-type:none;
	}
	div.spmenu div.menu-main-menu-container ul li{
		margin:0;
		padding:0;
		list-style-type:none;
		display:block;
		width:100%;
		text-align:center;
		border-bottom:1px solid #f0464f;
	}
	div.spmenu div.menu-main-menu-container ul li a{
		display:block;
		font-size:11pt;
		vertical-align:middle;
		text-align:center;
		width:100% !important;
		padding:0.5em 0;
		height:inherit  !important;
		color:white;
		transition: all 0.1s ease-in 0s;
		line-height:1.2em;
		width:100%;
	}
	div.spmenu div.menu-main-menu-container ul li a:hover{
		text-decoration:none;
		background-color:white;
		color:#ed1e26;
	}


	body.page .entry-content h2{
    background-image: url("/images/line-red.jpg");
    background-position: left center;
    background-repeat: repeat;
    border-bottom: 1px solid #eb1c24;
    border-left: 6px solid #eb1c24;
    color: black;
    font-weight: bolder;
    padding: 0.2em 0.5em;
    text-shadow: 2px 1px 0 rgba(255, 255, 255, 1);	}

	#social{ /* 固定ページに設置するSNSリンク */
		display: none;
    }



	/*------------------------------------------------------------------------------------
	5. Main Contents (SP)
	-------------------------------------------------------------------------------------*/
	#vertical-information-container{
		display:none;
	}
	.entry-header .entry-inner{
		background-color:#ec1d25;
	}
	.entry-header img.wp-post-image {
		margin-bottom: 0;
		margin-bottom: 0;
	}

	.link-point{
		margin-top:0;
		padding-top:0;
	}

	/* 固定ページ(SP) */
	body.page .entry-header .entry-inner{
		background-position:center center;
		background-size:cover;

	}

	body.page .entry-header .entry-inner .entry-inner-adjuster{
		width:100%;
		margin:0 auto;
		font-weight:normal;
		background-repeat:no-repeat;
		margin:0 auto;
		position:relative;
	}
	body.page .entry-header .entry-inner .entry-title {
	    font-size: 19px;
	    color: #FFF;
	    letter-spacing: 3px;
	    padding: 0.5em 1em;
	    font-weight: normal;
	    background-image: url("images/caption-bg.jpg");
	}

	body.page .entry-content{
		padding-top:0;
		margin:10px;
	}
	body.page .entry-content div.intro{
		text-align:center;
		font-size:14px;
		margin-bottom:40px;
	}
	body.page .entry-content div.intro strong{
		text-align:center;
		font-size:22px;
		margin-bottom:40px;
	}
	body.page .entry-content div.intro strong br{
		display:inline;
	}
	body.page .entry-content div.intro p{
		text-align:left;
	}

	/* Add New 20170126 From */

	body.page .entry-content div.intro p.title{ /* 20170123 Added */
			margin-top: 20px;
		}

		body.page .entry-content div.intro div.ueda-strength01,
		body.page .entry-content div.intro div.ueda-strength02,
		body.page .entry-content div.intro div.ueda-strength03,
		body.page .entry-content div.intro div.ueda-strength04{ /* 20170123 Added */
			width: 100%;
			height: 0;
			padding-top: 30.53%;
			margin-bottom: 20px;
			border: 1px solid #ccc;
		}

		body.page .entry-content div.intro div.ueda-strength01{ /* 20170123 Added */
			background-image: url('images/strength-sp01.jpg');
			background-image: image-set(
				url('images/strength-sp01.avif') type('image/avif'),
				url('images/strength-sp01.webp') type('image/webp'),
				url('images/strength-sp01.jpg') type('image/jpeg')
			);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: contain;
			position: relative;
		}

		body.page .entry-content div.intro div.ueda-strength01 > p{ /* 20170123 Added */
			display: none;
		}

		body.page .entry-content div.intro div.ueda-strength02{ /* 20170123 Added */
			background-image: url('images/strength-sp02.jpg');
			background-image: image-set(
				url('images/strength-sp02.avif') type('image/avif'),
				url('images/strength-sp02.webp') type('image/webp'),
				url('images/strength-sp02.jpg') type('image/jpeg')
			);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: contain;
			position: relative;
		}

		body.page .entry-content div.intro div.ueda-strength02 > p{ /* 20170123 Added */
			display: none;
		}

		body.page .entry-content div.intro div.ueda-strength03{ /* 20170123 Added */
			background: url('images/strength-sp03.jpg') no-repeat center center;
			background-size: contain;
			position: relative;
		}

		body.page .entry-content div.intro div.ueda-strength03 > p{ /* 20170123 Added */
			display: none;
		}

		body.page .entry-content div.intro div.ueda-strength04{ /* 20170123 Added */
			background: url('images/strength-sp04.jpg') no-repeat center center;
			background-size: contain;
			position: relative;
		}

		body.page .entry-content div.intro div.ueda-strength04 > p{ /* 20170123 Added */
			display: none;
		}


		body.page .entry-content div.assessment{ /* 20170123 Added */
			text-align:left;
			font-size:14px;
			margin-bottom:40px;
		}

		body.page .entry-content div.assessment p.title{ /* 20170123 Added */
			text-align: center;
		}

			body.page .entry-content div.assessment strong{ /* 20170123 Added */
				text-align: center;
				font-size:21px;
				margin-bottom:40px;
				color:#eb1c24;
				border-bottom: none;
			}

			body.page .entry-content div.assessment div.satei-icon{ /* 20170123 Added */
				width: 222px;
				height: 220px;
				margin: 0 auto 50px;
			}

			body.page .entry-content div.assessment div.satei-icon > img{ /* 20170123 Added */
				display: block;
				width: 160px;
				height: 160px;
				margin: 0 auto;
			}

			body.page .entry-content div.assessment div.satei-icon > span{ /* 20170123 Added */
				display: block;
				font-weight: bold;
				text-align: center;
			}

			body.page .entry-content div.assessment div.satei-icon > p{ /* 20170123 Added */
				text-align: center;
			}

			body.page .entry-content div.assessment div.satei-flow{ /* 20170123 Added */
				width: 100%;
				height: auto;
				overflow: hidden;
			}

			body.page .entry-content div.assessment div.satei-flow div.flow-block{ /* 20170123 Added */
				box-sizing: border-box;
				float: none;
				width: 100%;
				height: auto;
				margin-right: 0;
				margin-bottom: 20px;
				padding: 10px;
				border: 1px solid #ccc;
				text-align: left;
				position: relative;
			}

			body.page .entry-content div.assessment div.satei-flow div.flow-block > span.line{ /* 20170123 Added */
				display: block;
				width: 48px;
				height: 48px;
				background-color: #00b900;
				position: absolute;
				top: 10px;
				left: 10px;
				font-weight: bold;
				color: #fff;
				line-height: 48px;
				text-align: center;
			}

			body.page .entry-content div.assessment div.satei-flow div.flow-block > span.web{ /* 20170123 Added */
				display: block;
				width: 48px;
				height: 48px;
				background-color: #eb1c24;
				position: absolute;
				top: 10px;
				left: 10px;
				font-weight: bold;
				color: #fff;
				line-height: 48px;
				text-align: center;
			}

			body.page .entry-content div.assessment div.satei-flow div.flow-block > img{ /* 20170123 Added */
				display: block;
				width: 100%;
				height: auto;
				margin-bottom: 10px;
			}

			body.page .entry-content div.kaitori-link-btn{ /* 20170123 Added */
				width: 160px;
				height: 40px;
				text-align: center;
				font-size: 8pt;
				margin: 20px auto 60px;
			}

			body.page .entry-content div.kaitori-link-btn a{ /* 20170123 Added */
				padding:12px 4px;
				border-radius:0.5em;
				line-height:1.2em;
				color:white;
				display:block;
				background-color:#202020;
				background: linear-gradient(to bottom, #555 0px, #111 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
				border:1px solid #000;
				border-color:#000 #000 #000;
				box-shadow: 0 1px 1px 0 #999 inset;
				color: #fff;
				text-decoration: underline;
			}

			body.page .entry-content div.kaitori-link-btn a:hover{ /* 20170123 Added */
				text-decoration:none;
				background-color:#404040;
				color:white;
				background: linear-gradient(to bottom, #888 0px, #222 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
				box-shadow: 0 1px 1px 0 #ccc inset;
			}

			body.page .entry-content div.assessment div.note{ /* 20170123 Added */
				padding: 20px;
				background-color: #efefef;
				border: 3px double #ccc;
				text-align: left;
			}

			body.page .entry-content div.assessment div.note p{ /* 20170123 Added */
				margin: 0;
			}

			body.page .entry-content div.how-to-kaitori{ /* 20170123 Added */
				text-align: left;
			}

			body.page .entry-content div.how-to-kaitori > p.title{ /* 20170123 Added */
				text-align: center;
			}

			body.page .entry-content div.how-to-kaitori strong{ /* 20170123 Added */
				text-align: center;
				font-size:21px;
				margin-bottom:40px;
				color:#eb1c24;
				border-bottom: none;
			}

			body.page .entry-content div.how-to-kaitori div.how-to { /* 20170123 Added */
				width: 100%;
				overflow: hidden;
				border: 1px solid #ccc;
				display: flex;
				flex-direction: column;
			}

			/* body.page .entry-content div.how-to-kaitori div.how-to.tento div.cols2:first-child {
				display: grid;
				grid-template-columns: 50% 50%;
				grid-template-rows: 50% 50%;
				background-image: url('images/tentou01.png');
				background-image: image-set(
					url('images/tentou01.png') type('image/png')
				);
				background-position: 0 0;
				background-repeat: no-repeat;
			} */

			body.page .entry-content div.how-to-kaitori div.how-to div.cols2{ /* 20170123 Added */
				width: 100%;
				/* float: none; */
				padding: 0;
			}

			body.page .entry-content div.how-to-kaitori div.how-to div.cols2 > img{ /* 20170123 Added */
				vertical-align: bottom;
			}

			body.page .entry-content div.hiketsu{ /* 20170123 Added */
				height: 0;
				padding-top: 30.53%;
				background: url('/images/hiketsu.png') no-repeat center center;
				background-size: contain;
				position: relative;
				margin-bottom: 60px;
			}

			body.page .entry-content div.hiketsu > div.kaitori-link-btn{ /* 20170123 Added */
				position: absolute;
				top: 120px;
				left: 50%;
				margin-left: -80px;
			}

			body.page .entry-content div.contact-tel{ /* 20170123 Added */
				height: 0;
				padding-top: 30.53%;
				background-image: url('images/tel.png');
				background-image: image-set(
					url('images/tel.avif') type('image/avif'),
					url('images/tel.avif') type('image/webp'),
					url('images/tel.png') type('image/png')
				);
				background-position: center center;
				background-repeat: no-repeat;
				background-size: contain;
				margin-top: 100px;
				margin-bottom: 60px;
			}

			body.page .entry-content div.shop-lists-wrap div.shop-list div.img-wrap img{ /* 20170124 Added */
				display: block;
				margin: 0 auto;
				width: 60%;
				height: auto;
			}

			body.page .entry-content div.shop-lists-wrap div.shop-list img.chat{ /* 20170126 Added */
				display: block;
				width: 60%;
				height: auto;
				margin: 0 auto;
			}

	/* To Add New 20170126 */

	body.page .entry-content ul.gaplist{
		list-style-type:none;
		margin:0;
		padding:0;
	}
	body.page .entry-content ul.gaplist li{
		margin:0;
		padding:0;
		line-height:1.3em;
		margin-bottom:1em;
	}
	body.page .entry-content ul.gaplist li b{
		display:block;
		border-left:2px solid #ec1d25;
		padding-left:0.5em;
		margin-bottom:0.5em;
	}
	body.page .entry-content ul.gaplist li br{
		display:none;
	}

	body.page .entry-content div.illust{
		text-align:center;
		margin-bottom:40px;
	}
	body.page .entry-content div.group p{
		margin:0;
		margin:0 1em;
		margin-bottom:1em;
	}
	body.page .entry-content h2{
	    background-image: url("/images/line-red.jpg");
	    background-position: left center;
	    background-repeat: repeat;
	    border-bottom: 1px solid #eb1c24;
	    border-left: 6px solid #eb1c24;
	    color: black;
	    font-weight: bolder;
	    padding: 0.2em 0.5em;
	    text-shadow: 2px 1px 0 rgba(255, 255, 255, 1);
		line-height:1.3em;
		font-size:19px;
	}

	body.page .entry-content h2#meieki span{
		color: #eb1c24;
		text-shadow: none;
	}

	body.page .entry-content h3{
		border-left: 6px solid #eb1c24;
	    font-weight: bolder;
	    padding-left: 1em;
	}
	body.page .entry-content h4{
		margin:0;
		margin-bottom:1em;
		background-image:url(/images/triangle-bottom-gray.png);
		background-repeat:no-repeat;
		background-position:20px bottom;
		background-size:10px;
		padding-bottom:4px;
	}
	body.page .entry-content h4 b{
		color:white;
		font-weight:normal;
		background-color:#222;
		display:inline;
		border-radius:0.5em;
		padding:0.2em 0.5em;
		margin:0;
	}
	body.page .entry-content .block{
		margin-bottom:60px;
	}
	body.page .entry-content div.intro strong {
		color: #eb1c24;
		font-size: 18px;
		margin-bottom: 10px;
		text-align: center;
		line-height:1.24em;
		display:block;
	}
	body.page .entry-content p{
		line-height:1.5em;
	}

	/* 投稿&カテゴリー(SP) */
	body.single-post .entry-header .entry-inner .entry-inner-adjuster,
	body.category .entry-header .entry-inner .entry-inner-adjuster{
		width:100%;
		margin:0 auto;
		font-weight:normal;
		background-repeat:no-repeat;
		background-position:center top;
		margin:0 auto;
		position:relative;
	}
	body.single-post .entry-header .entry-inner .entry-title,
	body.category .entry-header .entry-inner .entry-title{

		font-size:1.62857rem;
		color:white;
		letter-spacing: 3px;
		font-weight:normal;
		background-color:#ec1d25;
		padding:10px;
	}
	body.category .entry-header .entry-inner .entry-inner-adjuster img.attachment-post-thumbnail{
		display:none;
	}
	body.single-post .entry-header .entry-inner .entry-inner-adjuster img {
	    display: none;
	}

	body.single-post #primary .entry-header .entry-title{
		display:none;
	}


	/* カテゴリー(SP) */
	body.category .site-content .archive-header{
		padding:0;
		margin:0;
		margin-bottom:20px;
	}
	body.category .site-content .archive-header h1{
		font-weight:normal;
		padding:1em 20px;
		display:none;
	}
	body.category #primary .entry-header h1{
		font-size:1.38571rem;
		font-weight:normal;
	    /* border-left: 6px solid #eb1c24; */
	    color: #eb1c24;
	    font-weight: normal;
	    padding:0 1em;
	}
	body.category #primary .entry-header h1 a{
		color:#eb1c24;
	}

	#primary .entry-meta{
		margin:20px;
		font-size:11px;
		text-align:right;
	}

	/* 質について(SP) */
	#primary div.image-caption img{
		width:100%;
	}
	#primary div.image-caption a:hover img{
	    opacity: 0.5;
	}
	#primary div.shichi-image{
		margin-bottom:20px;
	}
	#primary div.shichi-image div.left{
		width:100%;
	}
	#primary div.shichi-image div.left img{
		width:100%;
	}
	#primary div.shichi-image div.right div.caption{
		display:none;
	}
	#primary div.shichi-image div.right div.btn{
		width:50%;
		float:left;
	}
	#primary div.shichi-image div.right div.btn img{
		width:95%;
	}
	#primary div.shichi-nagare{
		background-image:url(/images/shichi-nagare-arrows.jpg);
		background-repeat:no-repeat;
		background-position:center center;
		margin-bottom:40px;
		background-size:contain;

	}
	#primary div.shichi-nagare div.step{
		width:33.3333333333%;
		float:left;
		text-align:center;
	}
	#primary div.shichi-nagare div.step img{
		width:95%;
		display:block;
	}
	#primary div.lockerdesc div.desc{
		width:50%;
		float:left;
	}
	#primary div.lockerdesc div.desc div.adjuster{
		margin:0 5px;
	}
	#primary div.lockerdesc strong{
		border-bottom:1px solid #ec1d25;
		color:#ec1d25;
		font-size:17px;
		display:block;
		line-height:1.2em;
		font-weight:normal;
		margin-bottom:0.5em;
	}
	#primary div.lockerdesc div.desc p{
		margin:0;
		padding:0;
		line-height:1.4em;
	}

	#primary ul.anshinlist{
		margin:0;
		padding:0;
		list-style-type:none;
	}
	#primary ul.anshinlist li{
		margin:0;
		padding:0;
		width:50%;
		float:left;
		margin-bottom:20px;
	}
	#primary ul.anshinlist li.clear{
		clear:both;
	}
	#primary ul.anshinlist li div.thumb{
		margin:0;
		margin-bottom:10px;
		text-align:center;
	}
	#primary ul.anshinlist li div.thumb img{
		width:90%;
		margin:0 auto;
		display:block;
	}
	#primary ul.anshinlist li b{
		display:block;
		text-align:left;
		color:#1d637a;
		border-left:2px solid #555;
		padding:5px;
		font-weight:normal;
		font-size:16px;
		display:none;

	}
	#primary ul.anshinlist li p{
		margin:0;
		margin-bottom:10px;
		padding:0;
		line-height:1.5em;
		font-size:13px;
		float:right;
	}

	#primary #photo-wrap .shop-content + .shop-content{
		margin-top: 50px;
	}

	#primary #photo-wrap .shop-content img.shop{
		vertical-align: middle;
		width: 100%;
		height: auto;
		border-radius: 50%;
	}

	#primary #photo-wrap .shop-content > b{
		display: block;
		width: 170px;
		margin: 20px auto;
	}

	#primary #photo-wrap .shop-content > b img{
		margin-left: 20px;
	}

	#primary #photo-wrap .shop-content span.new{
    	display: block;
    	text-align: center;
    	color: #ec1d25;
		padding: 5px;
		border: 2px solid #ec1d25;
    	border-radius: 20px;
		margin-top: 10px;
	}

	#primary #photo-wrap .shop-content span.new::before,
	#primary #photo-wrap .shop-content span.new::after{
		content: "↑";
	}


	#primary #photo-wrap .shop-content ul.contact{
		list-style-type: none;
		width: 70%;
		margin: 0 auto;
	}

	#primary #photo-wrap .shop-content ul.contact li.freedial{ /* 天白・栄・名東 */
		background-image: url(/images/icon-freedial-pc.png);
			background-repeat: no-repeat;
			background-position: left center;
			font-size: 18px;
			padding-left: 30px;
	}

	#primary #photo-wrap .shop-content ul.contact li.tel{ /* 名駅 */
		background-image: url(/images/icon-tel-pc.png);
			background-repeat: no-repeat;
			background-position: left center;
			font-size: 18px;
			padding-left: 30px;
	}

	#primary #photo-wrap .shop-content ul.contact li.email{
		background-image: url(/images/icon-email-pc.png);
			background-repeat: no-repeat;
			background-position: left center;
		padding-left: 30px;
	}

	/* 買取スタイル(SP) */
	#primary div.kaitori-image{
		margin-bottom:10px;
	}
	#primary div.kaitori-image div.price{
		background-image:url(images/kaitori-goldprice-bg.jpg);
		background-repeat:repeat-x;
		background-position:left bottom;
		border:2px solid #e89571;
		overflow:hidden;
	}
	#primary div.kaitori-image div.price div.caption{
		margin:0;
		padding:5px 0 0 0;
		text-align:left;
		margin-bottom:10px;
		float:left;
		width:60%;
	}
	#primary div.kaitori-image div.price div.caption img{
		max-width:248px;
		width:100%;
		margin:0;
		display:block;
	}

	#primary div.kaitori-image div.price div.kin24{
		float:right;
		margin:0;
		margin:5px 0;
		text-align:center;
		font-size:18px;
		font-weight:bolder;
		width:40%;
		position:relative;
	}
	#primary div.kaitori-image div.price div.kin24 img{
		max-width:70px;
		width:70%;
		margin:0 auto;
		vertical-align:middle;
		margin-right:5px;
	}
	#primary div.kaitori-image div.price div.kin24 i{
		font-size:10px;
		font-style:normal;
		position:absolute;
		right:5px;
		bottom:-20px;
	}

	#primary div.kaitori-image div.price div.display{
		clear:both;
		width:100%;
		text-align:center;
		font-size:23px;
	}
	#primary div.kaitori-image div.price div.display big{
		font-family:Century;
		color:white;
		text-shadow: 2px 2px 0 rgba(0,0,0,0.7);
		font-size:80px;
		line-height:80px;
		letter-spacing:0;
		font-weight:bolder;
		padding-right:10px;
		white-space:nowrap;
		margin:20px 0;
	}
	#primary div.kaitori-image div.price div.display small{
		font-weight:bolder;
	}



	/* 買取事例(SP) */
	#primary div.kaitori-jirei{
		border:8px solid #393332;
		background-color:#393332;
		margin-bottom:10px;
	}
	#primary div.kaitori-jirei div.title{
		background-image:url(images/kaitori-jirei-title.jpg);
		background-size:contain;
		height:22px;
		background-repeat:no-repeat;
		background-position:left top;
		margin-bottom:10px;
	}
	#primary div.kaitori-jirei div.body{
		float:right;
		height:44px;
		width:755px;
		overflow:hidden;
	}
	#jirei-ticker {
		margin: 0 auto;
		padding: 0;
		text-align: left;
		position: relative;
		overflow: hidden;
		color:white;
	}
	#jirei-ticker ul {
		width: 100%;
		position: relative;
		margin:0;
		padding:0;
	}
	#jirei-ticker ul li {
		width: 100%;
		display: none;
		margin:0;
		padding:0;
	}
	#jirei-ticker ul li img{
		vertical-align:middle;
		margin-right:10px;
		height:44px;
		float:left;
	}
	#jirei-ticker ul li div.item{
		line-height:1.3em;
	}
	#jirei-ticker ul li span.price{
		font-size:14px;
		color:#fffdce;
		font-weight:bolder;
	}


	#primary ul.reason{
		list-style-type:none;
		margin:0;
		padding:0;
	}
	#primary ul.reason li{
		border-radius:10px;
		background-color:#faefe7;
		margin:0;
		padding:1em;
		margin-bottom:10px;
		line-height:1.4em;
	}
	#primary ul.reason li b{
		color:#ed1e26;
		font-size:16px;
		padding:5px 0;
		line-height:1.8em;
		border:0;
	}


	/* 買取方法(SP) */
	#primary div.kaitori-way{
		border:2px solid #ec1d25;
		margin-bottom:20px;
	}
	#primary div.kaitori-way div.title{
		background-image:url(images/kaitori-way-label.jpg);
		height:28px;
		width:87px;
		background-repeat:no-repeat;
		background-position:left top;
		background-size:contain;
		margin-right:20px;
		display:none;
	}
	#primary div.kaitori-way div.button{
		width:100%;
		overflow:hidden;
		margin-right:0;
	}
	#primary div.kaitori-way div.button a{
		display:block;
		margin: 0 10px;
	}
	#primary div.kaitori-way div.button a img{
		display:block;
		margin:0 auto;
	}

	#primary div.kaitori-style{
		margin:0;
		margin-bottom:40px;
	}
	#primary div.kaitori-style div.style{
		width:33.333333333%;
		float:left;
		text-align:center;
	}
	#primary div.kaitori-style div.style a img{
		display:block;
		width:100%;
		max-width:160px;
	}

	/* 買取マップ(SP) */
	#primary div.maplist div.city{
		float:left;
		width:40%;
	}
	#primary div.maplist div.map{
		float:left;
		width:60%;
	}
	#primary div.maplist div.tel{
		clear:both;
		width:100%;
		text-align:center;
	}
	#primary div.maplist div.tel img{
		margin:0 auto;
		display:block;
	}


	/* 宅配申し込み(SP) */
	#primary div.takuhai-apply h5{
		margin:0;
		padding:0;
		padding:0.3em 0;
		margin-bottom:20px;
		font-size:15px;
		letter-spacing:2px;
		background-image:url(/images/line-red.jpg);
	}
	#primary div.takuhai-apply div.left{
		width:100%;
		text-align:center;
	}
	#primary div.takuhai-apply div.left img{
		width:100%;
		max-width:418px;
	}
	#primary div.takuhai-apply div.right{
		width:100%;
		float:right;
		text-align:center;
	}
	#primary div.takuhai-apply div.right img{
		width:216px;
	}

	/* 宅配ポイント(SP) */
	#primary div.takuhai-point{
		float:none;
		width:100%;
		text-align:center;
	}
	#primary div.takuhai-point img{
		width:100%;
		max-width:368px;
	}


	/* Photo Pool(SP) */
	#primary div.photopool div.photo{
		float:left;
		text-align:center;
		margin-bottom:10px;
	}
	#primary div.photopool div.photo img{
		width:96%;
		display:block;
		margin:0 auto;
	}
	#primary div.photopool div.photo b{
		display:block;
		text-align:center;
	}
	#primary div.photopool div.photo a{
		color:#555;
	}
	#primary div.photopool div.photo a img{
		width:45px;
		vertical-align:middle;
		display:inline;
		margin:0 10px;
	}
	#primary div.tile-3 div.photo{
		width:33.333333333333333%;
	}
	#primary div.tile-3 div.photo{
		width:100%;
	}

	/* COMPANY・採用(SP) */
	#primary div.companydata table{
		width:100%;
	}
	#primary div.companydata table th{
		width:5em;
		width: 120px;
		text-align:center;
		background-color:#f3f3f3;
		vertical-align:middle;
	}

	#primary div.companydata table th,
	#primary div.companydata table td
	{
		padding:10px;
		border:1px solid #ddd;
		font-size:13px;
	}
	#primary div.companydata table td{
		line-height:1.4em;
		vertical-align:middle;
	}
	#primary div.seikochan{
		margin-bottom:10px;
	}
	#primary div.seikochan img{
		width:80%;
		max-width:250px;
	}

/* 採用(SP) */
#recuruit .entry-content {
	font-size: 16px;
	color: #757575;
}

#recuruit .entry-content .business img {
	margin-bottom: 3rem;
}

#recuruit .entry-content .welcome h4 {
	background-image: none;
	font-size: 16px;
}

#recuruit .entry-content ul {
	list-style-type: none;
}

#recuruit .entry-content ul li {
	margin: 0;
}

#recuruit .entry-content div.companydata table {
	border: 0;
}

#recuruit .entry-content div.companydata table th,
#recuruit .entry-content div.companydata table td {
	font-size: 16px;
	display: block;
	padding: 20px 0;
}

#recuruit .entry-content div.companydata table th {
	width: 100%;
	/* font-weight: normal; */
	background: #fff;
	border: 0;
	border-bottom : 2px solid #ed1e26;
	text-align: left;
}

#recuruit .entry-content div.companydata table th span {
	/* display: block; */
	font-size: 13px;
}

#recuruit .entry-content div.companydata table thead {
	display: none;
}

#recuruit .entry-content div.companydata table thead th:not(:first-child) {
	border-bottom : 1px solid #cfcfcf;
}

#recuruit .entry-content div.companydata table td {
	vertical-align: top;
	padding: 20px 0;
	border: 0;
	border-bottom : 1px solid #cfcfcf;
}

#recuruit .entry-content div.companydata dl {
	position: relative;
}

#recuruit .entry-content div.companydata dl::before {
	display: block;
	content: "";
	position: absolute;
	top: 15px;
	left: -15px;
	border-left: 2px solid;
	min-height: 65px;
}

#recuruit .entry-content div.companydata dl::after {
	display: block;
	content: "";
	position: absolute;
	top: 9px;
	left: -19px;
	width: 5px;
	height: 5px;
	border: 2px solid;
	border-radius: 50%;
	background: #fff;
}

#recuruit .entry-content div.companydata dl dt {
	font-weight: normal;
}

#recuruit .contactform table th,
#recuruit .contactform table td {
	display: block;
}

#recuruit #primary div.contactform {
	overflow-x: hidden;
}

#recuruit #primary div.contactform table th,
#recuruit #primary div.contactform table td {
	display: block;
	border: 0;
}

#recuruit #primary div.contactform table th {
	text-align: left;
}

#recuruit #primary div.contactform table td {
	padding: 0;
}

#recuruit #primary div.contactform table td input[type="text"],
#recuruit #primary div.contactform table td input[type="email"],
#recuruit #primary div.contactform table td input[type="tel"]{
	width: 80%;
}

#recuruit #primary div.contactform table td small,
#recuruit #primary div.contactform table td strong	{
	display: block;
}

.wpcf7-list-item.first {
	margin-left: 0;
}

	/* HINT(SP) */
	#primary div.hint{
		margin:inherit 20px;
		background-color:#f9f9f9;
		border-radius:20px;
		overflow:hidden;
		border: 1px solid #ddd;
	}
	#primary div.hint h3{
		border:0;
		text-align:center;
		text-shadow:none;
		background-image:none;
		padding:0 0.5em;
		margin:0.5em 0;
		color:#555;
		font-size:28px;
	}

	#primary div.hint div.inner{
		margin:20px;
	}
	#primary div.hint h4{
		font-weight:normal;
		font-size:17px;
		background-image:none;
		color:black;
		line-height:1.3em;
		text-decoration:underline;
	}
	#primary div.hint h4 img.icon{
		display:block;
		width:40px;
		vertical-align:middle;
		margin:0 auto;
		margin-bottom:10px;
	}
	#primary div.hint div.block p{
		margin:0 0 20px;
		text-align:justify;
		line-height:1.5em;
	}

	/* 店舗(SP) */
	#primary div.enlargeMap{
		text-align:right;
	}
	#primary div.enlargeMap a{
		background-image:url(images/icon-arrow.png);
		background-repeat:no-repeat;
		background-position:left center;
		padding-left:20px;
		font-size:12px;
	}
	#primary div.store-group{
		margin-bottom:40px;
	}
	#primary div.store-group div.image img{
		display:block;
	}
	#primary div.store-group div.shopdata{
		padding:1em;
	}
	#primary div.store-group div.shopdata ul,
		#primary div.store-group div.shopdetail ul{
		margin:0;
		padding:0;
	}
	#primary div.store-group div.shopdata ul li,
	#primary div.store-group div.shopdetail ul li{
		list-style-type:none;
		margin:0;
		padding-left:30px;
		margin-bottom:0.5em;
		line-height:1.3em;
		background-repeat:no-repeat;
		background-position:left center;
		background-size:16px;
	}
	#primary div.store-group div.shopdetail ul li{
		padding-top:4px;
		padding-bottom:4px;
	}

	#primary div.store-group div.shopdata ul li.access{
		background-image:url(/images/icon-train-pc.png);
	}
	#primary div.store-group div.shopdata ul li.openhours{
		background-image:url(/images/icon-clock-pc.png);
	}
	#primary div.store-group div.shopdata ul li.closed{
		background-image:url(/images/icon-kane-pc.png);
	}
	#primary div.store-group div.shopdata div.taxfree div.banner b{
		background-color:#444444;
		border-radius:6px;
		color:white;
		font-weight:normal;
		padding:0 5px;
		margin-right:1em;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner img{
		vertical-align:middle;
		margin-right:1em;
		width:180px;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner.card img{
		height: 30px;
		width: auto;
		margin-bottom: 1em;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner a{
		padding-right:1em;
		background-image:url(/images/icon-arrow.png);
		background-repeat:no-repeat;
		background-position:left center;
		padding-left:22px;
	}



	#primary div.store-group div.shopdetail ul li.address{
		background-image:url(/images/icon-location-pc.png);
	}
	#primary div.store-group div.shopdetail ul li.tel{
		background-image:url(/images/icon-tel-pc.png);
	}
	#primary div.store-group div.shopdetail ul li.email{
		background-image:url(/images/icon-email-pc.png);
	}
	#primary div.store-group div.shopdetail ul li.parking{
		background-image:url(/images/icon-parking-pc.png);
	}
	#primary div.store-group div.shopdetail ul li.fax{
		background-image:url(/images/icon-fax-pc.png);
	}
	#primary div.store-group div.shopdetail ul li.freedial{
		background-image:url(/images/icon-freedial-pc.png);
	}

	#primary div.store-group div.shopdetail{
		font-size:12px;
		padding:1em;
		background-color: #efefef;
	}
	#primary div.store-group div.shopdetail ul li{
		margin:0;
		padding:0.5em 0;
		padding-left:30px;
		border-bottom:1px solid #ddd;
	}

	#primary div.store-group div.shopimages{
		padding:0;
		margin-bottom:10px;
	}
	#primary div.store-group div.shopimages div.image{
		width:50%;
		float:left;
	}
	#primary div.store-group div.shopimages div.image a{
		display:block;
		margin:0;
		position:relative;
	}
	#primary div.store-group div.shopimages div.image a img{
		width:100%;
	}
	#primary div.store-group div.shopimages div.image a:after{
		display: block;
		content: "";
		background-image:url(/images/icon-zoom.png);
		width:20px;
		height:20px;
		margin:5px;
		position:absolute;
		border-radius:5px;
		border:1px solid red;
		top:0;
		right:0;
		background-size:contain;
		z-index:990;
	}


	/* お問合せ(SP) */
	#primary div.contactform table{
		font-size:13px;
		border:0;
	}
	#primary div.contactform table th{
		font-size:14px;
		font-weight:normal;
		text-align:right;
		border-bottom:1px solid #ddd;
		color:#555;
		vertical-align:middle;
	}
	#primary div.contactform table th b{
		display:block;
		margin:0 10px;
		font-weight:normal;
		width:4em;
		line-height:1.25em;
	}
	#primary div.contactform table td{
		border:0;
		border-left:1px solid #ddd;
		padding-left:10px;
		color:#555;
	}
	#primary div.contactform table textarea,
	#primary div.contactform table .wpcf7-text{
		width:100%;
	}

	#primary span.purpose span.wpcf7-list-item{
		display:block;
	}
	#primary div.contactform .wpcf7-submit{
		padding:12px 4px;
		background-color:#ed1e26;
		border-radius:0.5em;
		font-size:8pt;
		line-height:1.2em;
		color:white;
		display:block;
		width:50%;
		margin:0 auto;

		background-color:#202020;
		background: linear-gradient(to bottom, #555 0px, #111 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
		border:1px solid #000;
		border-color:#000 #000 #000;
		box-shadow: 0 1px 1px 0 #999 inset;
		color: #fff;
	}
	#primary div.contactform .wpcf7-submit:hover{
		text-decoration:none;
		background-color:#404040;
		color:white;
		background: linear-gradient(to bottom, #888 0px, #222 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
		box-shadow: 0 1px 1px 0 #ccc inset;
	}
	#primary h2.contactform{
		background-image:none;
		border:0;
		padding:0;
		font-weight:normal;
		border-bottom:1px solid #555;
		padding:0.5em 0;
		font-size:16px;
		margin:0.5em 0;
	}
	#primary div.contactform p{
		line-height:1.3em;
	}
	#primary h2.contactform img{
		width:22px;
		vertical-align:middle;
		margin-right:10px;
	}
	#primary div.contacttel big{
		font-size:30px;
		text-align:center;
		color:#ec1d25;
		font-family:Century;

	}
	#primary div.contacttel div.inbox{
		margin:0 10px;
		text-align:center;
		background-color:#efefef;
		border-radius:20px;
		padding:10px;
	}
	#primary div.contacttel div.inbox img{
		width:100%;
		max-width:650px;
	}


	/* 販売について(SP) */
	#primary #ec-shop {
		display: flex;
		flex-direction: column;
		gap: 3rem;
	}
	#primary .ec-content{
		/* float: none; */
		/* margin-bottom: 50px; */
		width: 100%;
	}

	#primary .ec-content img{
		display: block;
		width: 60%;
		height: auto;
		margin: 0 auto;
		border-radius: 50%;
		filter: drop-shadow(0 0 1px #c1c1c1);
	}

	#primary .ec-content span.shop-name{
		display: block;
		/* width: 90%; */
		/* height: 20px; */
		font-size: 5vw;
		margin: 0 auto;
		text-align: center;
		/*outline: 1px solid #ccc;*/
		display: none;
	}

	#primary .entry-content u{
		color: #B33030;
    		text-decoration: none;
    		border-bottom: 1px dotted #B33030;
	}

	#primary .entry-content .reserve-call{
		padding: 20px;
		border: 1px solid #ddd;
	}

	#primary .entry-content .reserve-call h6{
		border-bottom: 1px solid #ddd;
	}

	#primary .entry-content .reserve-call big{
		font-size: 20px;
		margin-right: 20px;
		display: block;
	}

	#primary .entry-content .reserve-call small{
		font-size: 12px;
		margin-right: 10px;
	}

	#primary .entry-content .note{
		padding: 20px;
		background-color: #efefef;
		border: 3px double #ccc;
	}


	/*------------------------------------------------------------------------------------
	6. Footer (SP)
	-------------------------------------------------------------------------------------*/
	div.footer{
		width:100%;
		background-color:#24252f;
		padding:10px 0;
		margin-top:20px;
	}
	div.footer div.adjuster{
		width:100%;
		height:auto;
	}
	div.footer div.logo{
		margin:0 auto;
		margin-bottom:10px;
		text-align:center;
	}
	div.footer div.logo img{
		margin:0 10px;
	}
	div.footer div.logo img.logo{
		width:160px;
	}
	div.footer div.logo img.zenshichiren{
		width:60px;
	}
	div.footer a{
		color:white;
	}
	div.footer div.menu{
		text-indent:center;
	}
	div.footer div.menu ul{
		margin:0;
		padding:0;
		text-align:center;
	}
	div.footer div.menu ul li{
		width:50%;
		float:left;
		overflow:hidden;
		display:block;
		font-size:10pt;
	}
	div.footer div.menu ul li a{
		display:block;
		padding:1em;
		background-image:url(images/whitealpha-20.png);
		margin-bottom:1px;
	}
	div.footer div.thanks{
		color:white;
		text-align:center;
		margin:20px;
		line-height:1.6em;
	}
	div.footer div.icons{
		text-align:center;
		margin-bottom:10px;
	}
	div.footer div.menu ul li a:hover{
		text-decoration:none;
	}
	div.footer div.copyright{
		font-size:8pt;
		text-align:center;
		margin:2em 0;
		color:white;
	}

}



/* Minimum width of 600 pixels. */
@media screen and (min-width: 601px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 990px;
	}
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
		position:relative;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
	}


	/*------------------------------------------------------------------------------------
	2. Header (PC)
	-------------------------------------------------------------------------------------*/
	.sp{ display:none; }
	.pc{ display:block; }

	#menu{
		width:100%;
		margin:0 auto;
		height:83px;
		z-index:100000;
	}
	#menu div.toggleMenu{
		display:none;
	}
	#menu div.fixed{
		/* background-color:#ed1e26; */
		background-image:url(images/white-grad-bg.png);
		background-position:left bottom;
		background-repeat:repeat-x;
		background-size:contain;


		width:100%;
		z-index:100000;
		position:fixed;
	}
	#menu div.adjuster{
		max-width:990px;
		margin:0 auto;
		/* background-color:#ed1e26; */
		background-image:url(images/menu-target-border.jpg);
		background-repeat:repeat-x;
		background-position:right top;
	}
	#menu div.fixed p.desc{
		display:none;
	}

	#menu div.fixed h1.logo{
		margin:0;
		padding:0;
		float:left;
		width:20%;
		max-width:150px;
		background-color:#e50012;
	}

	#menu div.fixed h1.logo img{
		width:100%;
		display:block;
	}
	#menu div.fixed h1.logo a{
		display:block;
	}

	#menu div.fixed div.menu-main-menu-container{
		float:right;
		width:84%;
	}
	#menu div.fixed ul{
		float:right;
		margin:0;
		padding:0;
		list-style-type:none;
		height:100%;
		width:100%;
	}
	#menu div.fixed ul li{
		margin:0;
		padding:0;
		list-style-type:none;
		display:table;
		float:left;
		width:11%; /* 14% */
		height:100%;
		font-size: 12px;
	}
	#menu div.fixed ul li a{
		display:table-cell;
		overflow:hidden;
		vertical-align:middle;
		text-align:center;
		color:#ec1d25;
		transition: all 0.1s ease-in 0s;
		background-repeat:repeat-x;
		background-position:right top;
		margin:0 0 0 10px;
	}
	#menu div.fixed ul li a:hover{
		text-decoration:none;
		background-image:url(images/menu-target-border-active.jpg);
	}

	div.spmenu{
		display:none;
	}

	#menu div.fixed ul li a b{
		font-weight:normal;
		display:block;
	}

    #social{ /* 固定ページに設置するSNSリンク */
		position: fixed;
		top: 150px;
		left: 0;
		width: 50px;
		height: 500px;
    }

	/*------------------------------------------------------------------------------------
	5. Main Contents (PC)
	-------------------------------------------------------------------------------------*/
	.link-point{
		margin-top:-60px;
		padding-top:60px;
	}

	/* 固定ページ(PC) */
	body.page .entry-header .entry-inner{
		background-position:center center;
	}

	body.page .entry-header .entry-inner .entry-inner-adjuster{
		width:990px;
		margin:0 auto;
		font-weight:normal;
		margin:0 auto;
		background-color:#ed1e26;
		margin-top:0px;
		position:relative;
	}
	body.page .entry-header .entry-inner .entry-title{
		font-size:19px;
		color:white;
		letter-spacing: 3px;
		padding:0.5em 1em;
		font-weight:normal;
		background-image:url(images/caption-bg.jpg);
	}
	body.page .entry-content{
		padding-top:0;
	}
	body.page .entry-content div.intro{
		text-align:center;
		font-size:14px;
		margin-bottom:40px;
	}
	body.page .entry-content div.intro strong{
		text-align:center;
		font-size:40px;
		margin-bottom:40px;
		color:#eb1c24;
		border-bottom:1px solid #555;
	}
	body.page .entry-content div.intro strong br{
		display:none;
	}


	/* Add New 20170126 From */

	body.page .entry-content div.intro div.ueda-strength01,
	body.page .entry-content div.intro div.ueda-strength02,
	body.page .entry-content div.intro div.ueda-strength03,
	body.page .entry-content div.intro div.ueda-strength04{ /* 20170123 Added */
		width: 100%;
		height: 0;
		padding-top: 30.53%;
		margin-bottom: 20px;
		border: 1px solid #ccc;
	}

	body.page .entry-content div.intro div.ueda-strength01{ /* 20170123 Added */
		/* background: url('images/strength01.jpg') no-repeat center center; */

		background-image: image-set(
			url('images/strength01.avif') type('image/avif'),
			url('images/strength01.webp') type('image/webp'),
			url('images/strength01.jpg') type('image/jpg')
		);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		position: relative;
	}

	body.page .entry-content div.intro div.ueda-strength01 > p{ /* 20170123 Added */
		position: absolute;
		top: 40%;
		right: 10%;
		width: 460px;
		text-align: left;
		line-height: 1.6;
	}

	body.page .entry-content div.intro div.ueda-strength02{ /* 20170123 Added */
		/* background: url('images/strength02.jpg') no-repeat center center; */

		background-image: image-set(
			url('images/strength02.avif') type('image/avif'),
			url('images/strength02.webp') type('image/webp'),
			url('images/strength02.jpg') type('image/jpg')
		);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		position: relative;
	}

	body.page .entry-content div.intro div.ueda-strength02 > p{ /* 20170123 Added */
		position: absolute;
		top: 40%;
		left: 8%;
		width: 460px;
		text-align: left;
		line-height: 1.6;
	}

	body.page .entry-content div.intro div.ueda-strength03{ /* 20170123 Added */
		background: url('images/strength03.jpg') no-repeat center center;
		background-size: contain;
		position: relative;
	}

	body.page .entry-content div.intro div.ueda-strength03 > p{ /* 20170123 Added */
		position: absolute;
		top: 40%;
		right: 10%;
		width: 460px;
		text-align: left;
		line-height: 1.6;
	}

	body.page .entry-content div.intro div.ueda-strength04{ /* 20170123 Added */
		background: url('images/strength04.jpg') no-repeat center center;
		background-size: contain;
		position: relative;
	}

	body.page .entry-content div.intro div.ueda-strength04 > p{ /* 20170123 Added */
		position: absolute;
		top: 40%;
		left: 8%;
		width: 460px;
		text-align: left;
		line-height: 1.6;
	}

	body.page .entry-content div.assessment{ /* 20170123 Added */
		text-align:center;
		font-size:14px;
		margin-bottom:40px;
	}

	body.page .entry-content div.assessment strong{ /* 20170123 Added */
		text-align:center;
		font-size:40px;
		margin-bottom:40px;
		color:#eb1c24;
		border-bottom:1px solid #555;
	}

	body.page .entry-content div.assessment div.satei-icon{ /* 20170123 Added */
		width: 222px;
		height: 220px;
		margin: 0 auto 20px;
	}

	body.page .entry-content div.assessment div.satei-icon > img{ /* 20170123 Added */
		display: block;
		width: 160px;
		height: 160px;
		margin: 0 auto;
	}

	body.page .entry-content div.assessment div.satei-icon > span{ /* 20170123 Added */
		display: block;
		font-weight: bold;
		margin: 10px auto;
	}

	body.page .entry-content div.assessment div.satei-flow{ /* 20170123 Added */
		width: 100%;
		height: auto;
		overflow: hidden;
		margin-top: 50px;
	}

	body.page .entry-content div.assessment div.satei-flow div.flow-block{ /* 20170123 Added */
		box-sizing: border-box;
		float: left;
		width: 22.888%;
		height: 320px;
		margin-right: 20px;
		padding: 10px;
		border: 1px solid #ccc;
		text-align: left;
		position: relative;
	}

	body.page .entry-content div.assessment div.satei-flow div.flow-block > span.line{ /* 20170123 Added */
		display: block;
		width: 48px;
		height: 48px;
		background-color: #00b900;
		position: absolute;
		top: 10px;
		left: 10px;
		font-weight: bold;
		color: #fff;
		line-height: 48px;
		text-align: center;
	}

	body.page .entry-content div.assessment div.satei-flow div.flow-block > span.web{ /* 20170123 Added */
		display: block;
		width: 48px;
		height: 48px;
		background-color: #eb1c24;
		position: absolute;
		top: 10px;
		left: 10px;
		font-weight: bold;
		color: #fff;
		line-height: 48px;
		text-align: center;
	}

	body.page .entry-content div.assessment div.satei-flow div.flow-block > img{ /* 20170123 Added */
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}

	body.page .entry-content div.assessment div.satei-flow div.flow-block:last-child{ /* 20170123 Added */
		margin-right: 0;
	}

	body.page .entry-content div.kaitori-link-btn{ /* 20170123 Added */
		width: 160px;
		height: 40px;
		text-align: center;
		font-size: 8pt;
		margin: 20px auto 60px;
	}

	body.page .entry-content div.kaitori-link-btn a{ /* 20170123 Added */
		padding:12px 4px;
		border-radius:0.5em;
		line-height:1.2em;
		color:white;
		display:block;
		background-color:#202020;
		background: linear-gradient(to bottom, #555 0px, #111 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
		border:1px solid #000;
		border-color:#000 #000 #000;
		box-shadow: 0 1px 1px 0 #999 inset;
		color: #fff;
		text-decoration: underline;
	}

	body.page .entry-content div.kaitori-link-btn a:hover{ /* 20170123 Added */
		text-decoration:none;
		background-color:#404040;
		color:white;
		background: linear-gradient(to bottom, #888 0px, #222 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
		box-shadow: 0 1px 1px 0 #ccc inset;
	}

	body.page .entry-content div.assessment div.note{ /* 20170123 Added */
		padding: 20px;
		background-color: #efefef;
		border: 3px double #ccc;
		text-align: left;
	}

	body.page .entry-content div.assessment div.note p{ /* 20170123 Added */
		margin: 0;
	}

	body.page .entry-content div.how-to-kaitori{ /* 20170123 Added */
		text-align: center;
	}

	body.page .entry-content div.how-to-kaitori strong{ /* 20170123 Added */
		text-align:center;
		font-size:40px;
		margin-bottom:40px;
		color:#eb1c24;
		border-bottom:1px solid #555;
	}

	body.page .entry-content div.how-to-kaitori div.how-to{ /* 20170123 Added */
		width: 100%;
		overflow: hidden;
		border: 1px solid #ccc;
		display: flex;
	}

	body.page .entry-content div.how-to-kaitori div.how-to div.cols2{ /* 20170123 Added */
		width: 50%;
		/* float: left; */
	}

	/* body.page .entry-content div.how-to-kaitori div.how-to.tento div.cols2:first-child {
		background-image: url('images/tentou01.png');
		background-image: image-set(
			url('images/tentou01.png') type('image/png')
		);
		background-position: 0 0;
		background-repeat: no-repeat;
		display: grid;
		grid-template-columns: 50% 50%;
		grid-template-rows: 50% 50%;
		position: relative;
	}

	body.page .entry-content div.how-to-kaitori div.how-to.tento div.cols2:first-child p {
		grid-column: 2;
		grid-row: 2;
		font-size: 12px;
		width: 100%;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	} */

	body.page .entry-content div.how-to-kaitori div.how-to div.cols2 > img{ /* 20170123 Added */
		vertical-align: bottom;
	}

	body.page .entry-content div.hiketsu{ /* 20170123 Added */
		height: 0;
		padding-top: 30.53%;
		background: url('/images/hiketsu.png') no-repeat center center;
		background-size: contain;
		position: relative;
		margin-bottom: 60px;
	}

	body.page .entry-content div.hiketsu > div.kaitori-link-btn{ /* 20170123 Added */
		position: absolute;
		top: 185px;
		left: 103px;
	}

	body.page .entry-content div.contact-tel{ /* 20170123 Added */
		height: 0;
		padding-top: 30.53%;
		background-image: url('images/tel.png');
		background-image: image-set(
			url('images/tel.avif') type('image/avif'),
			url('images/tel.avif') type('image/webp'),
			url('images/tel.png') type('image/png')
		);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		margin-bottom: 60px;
	}

	body.page .entry-content div.shop-lists-wrap{ /* 20170124 Added */
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	body.page .entry-content div.shop-lists-wrap div.shop-list{ /* 20170124 Added */
		float: left;
		width: 50%;
	}

	body.page .entry-content div.shop-lists-wrap div.shop-list div.img-wrap{ /* 20170126 Added */
		height: 170px;
	}

	body.page .entry-content div.shop-lists-wrap div.shop-list div.img-wrap img{ /* 20170124 Added */
		display: block;
		margin: 0 auto;
		width: 160px;
		height: auto;
	}

	body.page .entry-content div.shop-lists-wrap div.shop-list img.chat{ /* 20170126 Added */
		display: block;
		width: 60%;
		height: auto;
		margin: 0 auto;
	}

	/* To Add New 20170126 */

	body.page .entry-content ul.gaplist li{
		margin-bottom:1em;
	}

	body.page .entry-content div.illust{
		text-align:center;
		margin-bottom:40px;
	}
	body.page .entry-content div.illust img{
		width:inherit;
	}
	body.page .entry-content div.group p{
		margin:0;
		margin-bottom:1em;
		margin-left:2em;
	}
	body.page .entry-content h2{
		font-weight:normal;
		border-left:6px solid #eb1c24;
		background-image:url(/images/line-red.jpg);
		background-repeat:repeat;
		background-position:left center;
		padding:0.2em 0.5em;
		color:black;
		font-weight:bolder;
		text-shadow: 2px 1px 0 rgba(255, 255, 255, 1);
		 border-bottom: 1px solid #eb1c24;
	}

	body.page .entry-content h2#meieki span{
		background-color: #eb1c24;
    	width: 250px;
    	height: 30px;
    	padding: 5px;
    	color: #fff;
    	text-shadow: none;
		border-radius: 15px;
	}

	body.page .entry-content h3{
		font-weight:bolder;
		border-left:6px solid #eb1c24;
		padding-left:1em;
	}
	body.page .entry-content h4{
		margin:0;
		margin-bottom:1em;
		background-image:url(/images/triangle-bottom-gray.png);
		background-repeat:no-repeat;
		background-position:20px bottom;
		padding-bottom:10px;
	}
	body.page .entry-content h4 b{
		color:white;
		font-weight:normal;
		background-color:#222;
		display:inline;
		border-radius:0.5em;
		padding:0.2em 0.5em;
		margin:0;
	}
	body.page .entry-content .block{
		margin-bottom:60px;
	}

	/* 投稿&カテゴリー(PC) */
	body.single-post .entry-header .entry-inner .entry-inner-adjuster,
	body.category .entry-header .entry-inner .entry-inner-adjuster{
	    font-weight: normal;
	    margin: 0 auto 0;
	    position: relative;
	    width: 990px;
	}
	body.single-post .entry-header .entry-inner .entry-inner-adjuster img{
		display:none;
	}
	body.single-post .entry-header .entry-inner .entry-title,
	body.category .entry-header .entry-inner .entry-title{
	    background-image: url("images/caption-bg.jpg");
	    color: white;
	    font-size: 19px;
	    font-weight: normal;
	    letter-spacing: 3px;
	    padding: 0.5em 1em;
    }

	/* 投稿(PC) */
	body.single-post #primary .entry-header .entry-title{
		display:none;
	}
	body.single-post .site-content article{
		margin:10px;
	}
	body.single-post .site-content article div.entry-content {
		margin:0;
	}
	body.single-post .site-content article footer.entry-meta {
		display:none;
	}
	body.single-post .site-content nav.nav-single{
		display:none;
	}
	body.single-post .site-content #comments{
		display:none;
	}


	/* カテゴリー(PC) */
	body.category .site-content .archive-header{
		padding:0;
		margin:0;
		margin-bottom:20px;
		display:none;
	}
	body.category .entry-header .entry-inner .entry-inner-adjuster img.attachment-post-thumbnail{
		display:none;
	}
	body.category div.site-container article{
		padding:0;
		margin:10px 10px 0 10px;
		border-left:4px solid #ddd;
		clear:both;
		margin-bottom:30px;
	}
	body.category div.site-container article header.entry-header{
		width:100%;
		position:relative;
		padding:10px;
	}
	body.category div.site-container article header.entry-header h1 img{
		margin:0;
		padding:0;
		width:18%;
		vertical-align:middle;
		float:right;

	}
	body.category div.site-container article header.entry-header h1{
		padding:0;
		font-size:1.38571rem;
		font-weight:normal;
		color: #eb1c24;
		font-weight: normal;
		margin-bottom:0.5em;
	}
	body.category div.site-container article header.entry-header h1 a{
		color: #eb1c24;
		display: block;
		float: left;
		width: 80%;
		border-bottom:1px solid #f8a3a7;
	}

	body.category div.site-container article div.entry-content{
		margin:0;
		padding:0 10px;
		line-height:1.2em;
		float:left;
		margin-top:10px;
		width:78%;
	}

	body.category div.site-container article div.entry-content p{
		margin:0;
		width: 100%;
		overflow: hidden;
		font-size: 13px;
		line-height: 1.5em;
	}
	body.category div.site-container article footer.entry-meta{
		margin:0;
		padding:0;
		font-size:11px;
		text-align:right;
		display:none;
	}


	#primary div.image-caption{
		text-align:center;
		margin-bottom:20px;
	}
	#primary div.image-caption img{
		display:block;
		margin:0 auto;
	}
	#primary div.image-caption a:hover img{
	    opacity: 0.5;
	}


	/* WIDGET(PC) */
	#secondary aside.widget{
		margin:0 10px;
	}

	/* 質について(PC) */
	#primary div.shichi-image{
		text-align:center;
		margin-bottom:40px;
	}
	#primary div.shichi-image div.left{
		float:left;
		width:75%;
		max-width:750px;
	}
	#primary div.shichi-image div.let img{
		width:100%;
	}
	#primary div.shichi-image div.right{
		float:right;
		width:19%;
		max-width:190px;
	}
	#primary div.shichi-image div.right img{
		width:100%;
	}
	#primary div.shichi-image div.right div.btn a{
		display:block;
		margin-bottom:8px;
	}
	#primary div.shichi-image div.right div.btn a img{
		display:block;
	}
	#primary div.shichi-nagare{
		background-image:url(/images/shichi-nagare-arrows.jpg);
		background-repeat:no-repeat;
		background-position:center center;
		margin-bottom:40px;
	}
	#primary div.shichi-nagare div.step{
		width:33.3333333333333%;
		float:left;
		text-align:center;
	}
	#primary div.shichi-nagare div.step img{
		width:98%;
		display:block;
		margin:0 auto;
	}

	#primary div.lockerdesc div.desc{
		width:50%;
		float:left;
	}
	#primary div.lockerdesc div.desc div.adjuster{
		margin:10px;
	}
	#primary div.lockerdesc strong{
		border-bottom:1px solid #ec1d25;
		color:#ec1d25;
		font-size:18px;
		display:block;
		font-weight:normal;
		margin-bottom:0.5em;
	}
	#primary div.lockerdesc div.desc p{
		margin:0;
		padding:0;
		line-height:1.4em;
	}



	#primary ul.anshinlist{
		margin:0;
		padding:0;
		list-style-type:none;
		padding-bottom:40px;
	}
	#primary ul.anshinlist li{
		margin:0;
		padding:0;
		width:50%;
		float:left;
		margin-bottom:20px;
	}
	#primary ul.anshinlist li.clear{
		clear:both;
	}
	#primary ul.anshinlist li div.thumb{
		float:left;
		width:30%;
		margin:0;
		margin-bottom:10px;
		text-align:center;
	}
	#primary ul.anshinlist li div.thumb img{
		width:90%;
		margin:0 auto;
		display:block;
	}
	#primary ul.anshinlist li b{
		display:block;
		text-align:left;
		color:#1d637a;
		border-left:2px solid #555;
		padding:5px;
		font-weight:normal;
		font-size:16px;
	}

  #primary ul.anshinlist li strong{
		display:block;
		text-align:left;
		color:#1d637a;
		/* border-left:2px solid #555; */
		padding:5px;
		font-weight:normal;
		font-size:16px;
	}

	#primary ul.anshinlist li p{
		margin:0;
		margin-bottom:10px;
		padding:0;
		line-height:1.5em;
		font-size:13px;
		width:68%;
		float:right;
	}

	#primary #photo-wrap .shop-content img.shop{
		vertical-align: middle;
    	width: 90%;
    	height: auto;
    	border-radius: 50%;
    	border: 1px solid #c1c1c1;
	}

	#primary #photo-wrap .shop-content ul.contact{
		list-style-type: none;
		width: 100%;
		margin: 0 auto;
	}

	#primary #photo-wrap .shop-content ul.contact li.freedial{ /* 天白・栄・名東 */
		background-image: url(/images/icon-freedial-pc.png);
    	background-repeat: no-repeat;
    	background-position: left center;
    	font-size: 18px;
		padding-left: 30px;
	}

	#primary #photo-wrap .shop-content ul.contact li.freedial.emergency{
		margin-left: 24px;
	}

	#primary #photo-wrap .shop-content ul.contact li.tel{ /* 名駅 */
		background-image: url(/images/icon-tel-pc.png);
    	background-repeat: no-repeat;
    	background-position: left center;
		font-size: 18px;
		padding-left: 30px;
	}

	#primary #photo-wrap .shop-content ul.contact li.tel.emergency{
		margin-left: 24px;
	}

	#primary #photo-wrap .shop-content ul.contact li.email{
		background-image: url(/images/icon-email-pc.png);
    	background-repeat: no-repeat;
    	background-position: left center;
		padding-left: 30px;
	}

	#primary #photo-wrap .shop-content ul.contact li.email.emergency{
		margin-left: 24px;
	}

	/* 買取スタイル(PC) */
	#primary div.kaitori-image div.left{
		float:left;
		max-width:618px;
		width:65%;
	}
	#primary div.kaitori-image div.right{
		float:right;
		max-width:310px;
		width:31%;
		position:relative;
	}
	#primary div.kaitori-image div.price{
		background-image:url(images/kaitori-goldprice-bg.jpg);
		background-repeat:repeat-x;
		background-position:left top;
		border:3px solid #e89571;
		overflow:hidden;
	}
	#primary div.kaitori-image div.price div.caption{
		margin:5px 0 0 0;
	}
	#primary div.kaitori-image div.price div.caption img{
		max-width:248px;
		width:96%;
		margin:0 auto;
	}

	#primary div.kaitori-image div.price div.kin24{
		text-align:right;
		margin:0 15px;
		font-size:22px;
		font-weight:bolder;
		color:#861712;
	}
	#primary div.kaitori-image div.price div.kin24 img{
		vertical-align:middle;
		margin-right:10px;
	}
	#primary div.kaitori-image div.price div.kin24 i{
		font-size:10px;
		font-style:normal;
		position:absolute;
		right:5px;
		bottom:0;
	}

	#primary div.kaitori-image div.price div.display{
		left:0;
		bottom:15px;
		width:100%;
		text-align:center;
		font-size:23px;
		line-height:100%;
		position:absolute;
	}
	#primary div.kaitori-image div.price div.display big{
		font-family:Century;
		color:white;
		text-shadow: 2px 2px 0 rgba(0,0,0,0.7);
		font-size:80px;
		letter-spacing:0;
		font-weight:bolder;
		padding-right:10px;
		white-space:nowrap;
	}
	#primary div.kaitori-image div.price div.display small{
		font-weight:bolder;
	}
	#primary div.kaitori-style{
		margin:0 10%;
		margin-bottom:40px;
	}

	/* 買取方法(PC) */
	#primary div.kaitori-way{
		border:2px solid #ec1d25;
		margin-bottom:40px;
	}
	#primary div.kaitori-way div.title{
		background-image:url(images/kaitori-way-label.jpg);
		height:56px;
		width:175px;
		background-repeat:no-repeat;
		background-position:left top;
		float:left;
		margin-right:10px;
	}
	#primary div.kaitori-way div.button{
		float:left;
		height:56px;
		overflow:hidden;
		margin-right:3px;
	}
	#primary div.kaitori-way div.button a{
		display:block;
	}
	#primary div.kaitori-way div.button a img{
		display:block;
	}

	#primary div.kaitori-style div.style{
		width:33.333333333%;
		float:left;
		text-align:center;
	}

	#primary div.kaitori-style div.style a img{
		display:block;
		width:100%;
		max-width:160px;
	}

	/* 買取事例(PC) */
	#primary div.kaitori-jirei{
		border:8px solid #393332;
		background-color:#393332;
		margin-bottom:10px;
	}
	#primary div.kaitori-jirei div.title{
		background-image:url(images/kaitori-jirei-title.jpg);
		height:44px;
		width:169px;
		background-repeat:no-repeat;
		background-position:left top;
		float:left;
		margin-right:10px;
	}
	#primary div.kaitori-jirei div.body{
		float:right;
		height:44px;
		width:755px;
		overflow:hidden;
	}


	/* 事例紹介(PC) */
	#primary div.jireiticker div.up{
		float:left;
	}
	#primary div.jireiticker li{
		text-align:left;
	}
	#primary div.jireiticker div.item{
		color:white;
		overflow:hidden;
		height:44px;
	}
	#primary div.jireiticker div.item img{
		width:44px;
		margin-right:20px;
		vertical-align:middle;
	}
	#primary div.jireiticker div.item span.name{
		font-weight:bolder;
		padding-right:1em;
	}
	#primary div.jireiticker div.item span.price{
		font-size:22px;
		font-weight:bolder;
	}
	#primary div.jireiticker div.item span.price small{
		font-size:12px;
		font-weight:normal;
	}

	#primary div.jireiticker-up{
		float:left;
		height:44px;
		margin-right:10px;
		width:20px;
		background-image:url(/images/ticker/left.png);
		background-repeat:no-repeat;
		background-position:center center;
		cursor:pointer;
	}
	#primary div.jireiticker-down{
		float:right;
		height:44px;
		margin-left:10px;
		width:20px;
		background-image:url(/images/ticker/right.png);
		background-repeat:no-repeat;
		background-position:center center;
		cursor:pointer;
	}
	#jirei-ticker {
		margin: 0 auto;
		padding: 0;
		text-align: left;
		position: relative;
		overflow: hidden;
		color:white;
	}
	#jirei-ticker ul {
		width: 100%;
		position: relative;
		margin:0;
		padding:0;
	}
	#jirei-ticker ul li {
		width: 100%;
		display: none;
		margin:0;
		padding:0;
		font-size:12px;
	}
	#jirei-ticker ul li img{
		vertical-align:middle;
		margin-right:10px;
		height:44px;
	}
	#jirei-ticker ul li div.item{
		height:44px;
		overflow:hidden;
	}
	#jirei-ticker ul li span.price{
		font-size:14px;
		color:#fffdce;
		font-weight:bolder;
	}

	#primary ul.reason{
		list-style-type:none;
		margin:0;
		padding:0;
	}
	#primary ul.reason li{
		border-radius:10px;
		background-color:#faefe7;
		margin:0;
		padding:1em;
		margin-bottom:10px;
		line-height:1.4em;
	}
	#primary ul.reason li b{
		color:#ed1e26;
		font-size:16px;
		padding:5px 0;
		line-height:1.8em;
	}

	/* 買取マップ(PC) */
	#primary div.maplist div.city{
		float:left;
		width:20%;
	}
	#primary div.maplist div.map{
		float:left;
		width:30%;
	}
	#primary div.maplist div.tel{
		float:left;
		width:50%;
	}

	/* 宅配ポイント(PC) */
	#primary div.takuhai-point{
		float:right;
		width:40%;
		text-align:right;
	}
	#primary div.takuhai-point img{
		width:100%;
		max-width:368px;
	}

	/* 宅配申し込み(PC) */
	#primary div.takuhai-apply h5{
		margin:0;
		padding:0;
		padding:0.5em 0;
		margin-bottom:20px;
		font-size:15px;
		letter-spacing:2px;
		background-image:url(/images/line-red.jpg);
	}
	#primary div.takuhai-apply div.left{
		width:49%;
		float:left;
		text-align:center;
	}
	#primary div.takuhai-apply div.left img{
		width:100%;
		max-width:418px;
	}
	#primary div.takuhai-apply div.right{
		width:49%;
		float:right;
		text-align:center;
	}
	#primary div.takuhai-apply div.right img{
		width:216px;
	}

	#primary .satei .left{
		width: 49%;
		float: left;
	}

	#primary .satei .right{
		width: 49%;
		float: right;
	}

	/* Photo Pool(PC) */
	#primary div.photopool div.photo{
		float:left;
		text-align:center;
	}
	#primary div.photopool div.photo img{
		width:96%;
		display:block;
		margin:0 auto;
		margin-bottom:10px;
		border-radius:10px;
		overflow:hidden;
	}
	#primary div.photopool div.photo b{
		display:block;
		text-align:center;
		font-weight:normal;

	}
	#primary div.photopool div.photo a{
		color:#555;
	}
	#primary div.photopool div.photo a img{
		width:45px;
		vertical-align:middle;
		display:inline;
		margin:0 10px;
	}
	#primary div.tile-3 div.photo{
		width:33.333333333333333%;
	}

	/* HINT(PC) */
	#primary div.hint{
		margin:inherit 20px;
		background-color:#f9f9f9;
		border-radius:20px;
		overflow:hidden;
		border: 1px solid #ddd;
	}
	#primary div.hint h3{
		border:0;
		text-align:center;
		text-shadow:none;
		background-image:none;
		margin:1em 0;
		color:#555;
		font-size:28px;
	}
	#primary div.hint div.inner{
		margin:20px;
	}
	#primary div.hint h4{
		font-weight:normal;
		font-size:17px;
		background-image:none;
		color:black;
	}
	#primary div.hint h4 img.icon{
		width:40px;
		vertical-align:middle;
		margin-right:1em;
	}
	#primary div.hint div.block p{
		margin:0 55px 20px;
	}

	/* COMPANY・採用(PC) */
	#primary div.companydata table{
		width:100%;
	}
	#primary div.companydata table th{
		/*width:20%;*/
		width: 110px;
		text-align:center;
		background-color:#f3f3f3;
	}

	#primary div.companydata table th.job{
		width: 30%;
	}

	#primary div.companydata table th,
	#primary div.companydata table td
	{
		padding:10px;
		border:1px solid #ddd;
		font-size:13px;
		vertical-align: middle;
	}

	#primary div.companydata table tr td ul.icoList{
		margin: 0 0 1.2em -2.5em;
    	list-style: none;
	}

	#primary div.companydata table tr td p span{
		background-color: #eb1c24;
    padding: 5px;
    margin-bottom: 10px;
    display: block;
    color: #fff;
    width: 22%;
    padding-left: 28px;
		border-radius: 5px;
		position: relative;
	}

	#primary div.companydata table tr td p span.shop::before{
		content: "";
		width: 17px;
		height: 15px;
		position: absolute;
		top: 5px;
		left: 5px;
		background: url(images/shop.png);
		background-position: center center;
		background-repeat: no-repeat;
	}

	#primary div.companydata table tr td p span.web::before{
		content: "";
		width: 15px;
		height: 15px;
		position: absolute;
		top: 6px;
		left: 5px;
		background: url("images/web.png");
		background-position: center center;
		background-repeat: no-repeat;
	}

	/* 採用(PC) */
	#recuruit .entry-content {
		font-size: 16px;
		color: #757575;
	}

	#recuruit .entry-content .business img {
		margin-bottom: 3rem;
	}

	#recuruit .entry-content .welcome h4 {
		background-image: none;
		font-size: 16px;
	}

	#recuruit .entry-content ul {
		list-style-type: none;
	}

	#recuruit .entry-content ul li {
		margin: 0;
	}

	#recuruit .entry-content div.companydata table {
		border: 0;
	}

	#recuruit .entry-content div.companydata table th,
	#recuruit .entry-content div.companydata table td {
		font-size: 16px;
	}

	#recuruit .entry-content div.companydata table th {
		width: 170px;
		font-weight: normal;
		background: #fff;
		border: 0;
		border-bottom : 2px solid #ed1e26;
	}

	#recuruit .entry-content div.companydata table th span {
		display: block;
		font-size: 13px;
	}

	#recuruit .entry-content div.companydata table thead th:not(:first-child) {
		border-bottom : 1px solid #cfcfcf;
	}

	#recuruit .entry-content div.companydata table td {
		vertical-align: top;
		padding: 20px;
		border: 0;
		border-bottom : 1px solid #cfcfcf;
	}

	#recuruit .entry-content div.companydata dl {
		position: relative;
	}

	#recuruit .entry-content div.companydata dl::before {
		display: block;
		content: "";
		position: absolute;
		top: 9px;
		left: -15px;
		border-left: 2px solid;
		height: 50px;
	}

	#recuruit .entry-content div.companydata dl::after {
		display: block;
		content: "";
		position: absolute;
		top: 8px;
		left: -19px;
		width: 5px;
		height: 5px;
		border: 2px solid;
		border-radius: 50%;
		background: #fff;
	}

	#recuruit .entry-content div.companydata dl dt {
		font-weight: normal;
	}

	/* 店舗(PC) */
	#primary div.store-group{
		margin-bottom:40px;
	}
	#primary div.store-group div.images{
		float:right;
		width:30%;
		border-radius:20px;
		overflow:hidden;
		border:1px solid #ddd;
	}
	#primary div.store-group div.image img{
		width:100%;
		display:block;
	}
	#primary div.store-group div.shopdata{
		float:left;
		width:65%;
		padding:0 1em 2em 1em;
	}
	#primary div.store-group div.shopdata ul,
		#primary div.store-group div.shopdetail ul{
		margin:0;
		padding:0;
	}
	#primary div.store-group div.shopdata ul li,
	#primary div.store-group div.shopdetail ul li{
		list-style-type:none;
		margin:0;
		line-height:1.3em;
		padding: 5px 30px;
	}
	#primary div.store-group div.shopdetail ul li{
		line-height:1.5em;
		padding: 10px 40px;
		border-bottom:1px solid #ddd;
	}

	#primary div.store-group div.shopdata ul li.access{
		background-image:url(/images/icon-train-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdata ul li.openhours{
		background-image:url(/images/icon-clock-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdata ul li.closed{
		background-image:url(/images/icon-kane-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdata div.taxfree{
		margin:10px 0;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner b{
		background-color:#444444;
		border-radius:6px;
		color:white;
		font-weight:normal;
		padding:0 5px;
		margin-right:1em;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner img{
		vertical-align:middle;
		margin-right:1em;
		width:180px;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner.card img{
		height: 30px;
		width: auto;
		margin-bottom: 1em;
	}
	#primary div.store-group div.shopdata div.taxfree div.banner a{
		padding-right:1em;
		background-image:url(/images/icon-arrow.png);
		background-repeat:no-repeat;
		background-position:left center;
		padding-left:22px;
	}


	#primary div.store-group div.shopdetail ul li.address{
		background-image:url(/images/icon-location-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdetail ul li.parking{
		background-image:url(/images/icon-parking-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdetail ul li.fax{
		background-image:url(/images/icon-fax-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdetail ul li.freedial{
		background-image:url(/images/icon-freedial-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
		font-size:18px;
	}
	#primary div.store-group div.shopdetail ul li.tel{
		background-image:url(/images/icon-tel-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}
	#primary div.store-group div.shopdetail ul li.email{
		background-image:url(/images/icon-email-pc.png);
		background-repeat:no-repeat;
		background-position:left center;
	}

	#primary div.store-group div.shopdetail{
		float:left;
		font-size:12px;
		width:65%;
		padding:0 1em;
		background-color: #efefef;
		border:2px solid #ddd;;
		margin-bottom:10px;
	}

	#primary div.store-group div.shopimages{
		float:left;
		padding:0 1em 2em 1em;
		width:65%;
	}
	#primary div.store-group div.shopimages div.image{
		width:25%;
		float:left;
	}
	#primary div.store-group div.shopimages div.image a{
		display:block;
		margin:0 10px;
		position:relative;
	}
	#primary div.store-group div.shopimages div.image a img{
		width:100%;
	}
	#primary div.store-group div.shopimages div.image a:after{
		display: block;
		content: "";
		background-image:url(/images/icon-zoom.png);
		width:20px;
		height:20px;
		margin:5px;
		position:absolute;
		border-radius:5px;
		border:1px solid red;
		top:0;
		right:0;
		background-size:contain;
		z-index:990;
	}

	/* CM(PC) */
	#primary div.movielist div.movie{
		width:33.333333333333%;
		float:left;
		margin-bottom:20px;
	}
	#primary div.movielist div.movie div.adjuster{
		margin:10px;
	}
	#primary div.movielist h3{
		margin:0;
		padding:0;
		font-size:16px;
		background-image:none;
		border:0;
		font-weight:normal;
	}
	#primary div.movielist div.movie div.adjuster img{
		border-radius:19px;
	}
	#primary div.movielist div.movie a{
		position:relative;
		display:block;
	}
	#primary div.movielist div.movie a:after{
		display: block;
		content: "";
		background-image:url(/images/icon-play.png);
		width:20px;
		height:20px;
		margin:20px;
		position:absolute;
		border-radius:5px;
		border:1px solid red;
		top:0;
		right:0;
		background-size:contain;
		z-index:990;
	}

        /* 販売について(PC) */
        #primary div#photo-wrap{
               width: 100%;
               overflow: hidden;
               display: table;
        }

        #primary div#photo-wrap div.shop-content{
               display: table-cell;
               width: 25%;
               height: 210px;
        }

        #primary div#photo-wrap div.shop-content img{
               vertical-align: bottom;
               width: 95%;
               height: auto;
				box-shadow: rgba(0,0,0,.2) 0 1px 10px;
        }

        #primary div#photo-wrap div.shop-content b{
               display: block;
               text-align: center;
               margin-top: 15px;
        }

        #primary div#photo-wrap div.shop-content strong{
          display: block;
          text-align: center;
          margin-top: 15px;
   }

        #primary div#photo-wrap div.shop-content b img{
               width: 45px;
               height: auto;
               vertical-align: middle;
        }

        #primary div#photo-wrap div.shop-content strong img{
          width: 45px;
          height: auto;
          vertical-align: middle;
   }

		#primary div#photo-wrap div.shop-content span.new{
			color: #eb1c24;
			padding: 5px;
			width: 160px;
			margin: 10px auto;
			display: block;
			text-align: center;
			border-radius: 20px;
			border: 2px solid #eb1c24;
		}

	#primary .entry-content table.environment{
		border-collapse: collapse;
	}

	#primary .entry-content table.environment tr th{
		width: 20%;
		background-color: #ededed;
		vertical-align: middle;
	}

	#primary .entry-content h4.hanbai-title{
		margin-top: 30px;
	}

	#primary .entry-content #ec-shop{
		width: 100%;
		height: auto;
		overflow: hidden;
		display: flex;
		justify-content: space-between;
		flex-wrap:wrap;
		align-items: center;
	}

	#primary .entry-content #ec-shop .ec-content{
		/* float: left; */
		width: 15%;
	}

	#primary .entry-content #ec-shop .ec-content img{
		display: block;
		margin: 0 auto;
		width: 50%;
		height: auto;
		border-radius: 50%;
		filter: drop-shadow(0 0 1px #c1c1c1);
	}

	#primary .entry-content #ec-shop .ec-content span.shop-name{
		display: block;
		width: 100%;
		height: 20px;
		margin: 1.5rem auto 0;
		text-align: center;
		font-size: 12px;
	}

	#primary .entry-content u{
		color: #B33030;
    text-decoration: none;
    border-bottom: 1px dotted #B33030;
	}

	#primary .entry-content .reserve-call{
		padding: 20px;
		border: 1px solid #ddd;
	}

	#primary .entry-content .reserve-call h6{
		border-bottom: 1px solid #ddd;
	}

	#primary .entry-content .reserve-call big{
		font-size: 20px;
		margin-right: 20px;
	}

	#primary .entry-content .reserve-call small{
		font-size: 12px;
		margin-right: 10px;
	}

	#primary .entry-content .note{
		padding: 20px;
		background-color: #efefef;
		border: 3px double #ccc;
	}

	#primary .entry-content .note p{
		margin-bottom: 0 !important;
	}


	/* お問合せ(PC) */
	#primary div.contactform table{
		font-size:13px;
		border:0;
	}
	#primary div.contactform table th{
		font-size:14px;
		font-weight:normal;
		/* text-align:right; */
		/* border-bottom:1px solid #ddd; */
		color:#555;
		vertical-align:middle;
	}
	#primary div.contactform table th b{
		display:block;
		margin:0 10px;
		font-weight:normal;
	}
	#primary div.contactform table td{
		border:0;
		/* border-left:1px solid #ddd; */
		padding-left:10px;
		color:#555;
	}
	#primary div.contactform table td textarea,
	#primary div.contactform table td input.wpcf7-text{
		width:100%;
	}
	#primary div.contactform table td input.wpcf7-text{
		max-width:300px;
	}
	#primary span.purpose span.wpcf7-list-item{
		display:block;
	}
	#primary div.contactform table td .wpcf7-list-item.first {
		margin-left: 0;
	}
	#primary div.contactform table td small {
		display: block;
	}
	#primary div.contactform .wpcf7-submit{
		padding:12px 4px;
		background-color:#ed1e26;
		border-radius:0.5em;
		font-size:8pt;
		line-height:1.2em;
		color:white;
		display:block;
		width:50%;
		margin:0 auto;

		background-color:#202020;
		background: linear-gradient(to bottom, #555 0px, #111 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
		border:1px solid #000;
		border-color:#000 #000 #000;
		box-shadow: 0 1px 1px 0 #999 inset;
		color: #fff;
	}
	#primary div.contactform .wpcf7-submit:hover{
		text-decoration:none;
		background-color:#404040;
		color:white;
		background: linear-gradient(to bottom, #888 0px, #222 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
		box-shadow: 0 1px 1px 0 #ccc inset;
	}
	#primary h2.contactform{
		background-image:none;
		border:0;
		padding:0;
		font-weight:normal;
		border-bottom:1px solid #555;
		padding:1em 0;
	}
	#primary h2.contactform img{
		width:48px;
		vertical-align:middle;
		margin-right:20px;
	}
	#primary div.contacttel big{
		font-size:50px;
		text-align:center;
		color:#ec1d25;
		font-family:Century;

	}
	#primary div.contacttel div.inbox{
		margin:0 auto;
		text-align:center;
		background-color:#efefef;
		border-radius:20px;
		width:550px;
		padding:1em 0;
	}
	#primary div.contacttel div.inbox img{
		max-width:650px;
		width:100%;
		display:block;

	}


	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}


	/*------------------------------------------------------------------------------------
	6. Footer (PC)
	-------------------------------------------------------------------------------------*/
	div.footer{
		margin-top:0;
		padding-top:20px;
		width:100%;
		background-color:#24252f;
	}
	div.footer a{
		color:white;
	}

	div.footer div.adjuster{
		max-width:990px;
		margin:0 auto;
	}
	div.footer div.logo{
		margin:40px auto 0 auto;
		text-align:center;
	}
	div.footer div.logo img{
		margin:0 10px;
	}
	div.footer div.logo img.logo{
		width:160px;
	}
	div.footer div.logo img.zenshichiren{
		width:60px;
	}
	div.footer div.thanks{
		color:white;
		text-align:center;
		margin:20px auto 20px auto;
	}
	div.footer div.menu{
		text-indent:center;
	}

	div.footer div.menu ul{
		margin:0;
		padding:0;
		text-align:center;
	}
	div.footer div.menu ul li{
		display:inline;
		font-size:10pt;
		background-image:url(images/footer-menu-sep.png);
		background-repeat:no-repeat;
		background-position:right center;
		padding:1em;
	}
	div.footer div.menu ul li a:hover{
		text-decoration:none;
	}
	div.footer div.copyright{
		font-size:8pt;
		text-align:center;
		margin:2em 0 0 0;
		color:white;
		padding-bottom:30px;
	}
	div.footer div.icons{
		margin:0 auto 20px auto;
		text-align:center;
	}
	div.footer div.icons img{
		width:60px;
	}



}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: white;
	}
	body .site {
		padding:0;
		padding:0;
		margin-top: 0;
		margin-top: 0;
		margin-bottom:0;
		margin-bottom: 0;
		padding-bottom:20px;
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}

/* =Landscape SmartPhone
----------------------------------------------- */
@media screen and (max-width: 964px) and (orientation: landscape){

	#menu div.fixed h1.logo {
		max-width: 100px;
	}

	#menu div.fixed ul {
		display: flex;
    justify-content: space-around;
    column-gap: 10px;
	}

	body.page .entry-header .entry-inner .entry-title{
		top:20%;
	}

	/* 店舗 */
	#primary div.store-group div.image img{
		display:block;
	}
	#primary div.store-group div.shopdata{
		padding-bottom:0;
	}

	#primary div.store-group div.shopdata,
	#primary div.store-group div.shopimages,
	#primary div.store-group div.shopdetail{
		padding-right:0;
	}

		/* 買取スタイル */
	#primary div.kaitori-style{
		margin:0 15%;
		margin-bottom:40px;
	}
	#primary div.kaitori-style div.style{
		width:33.333333333%;
		float:left;
		text-align:center;
	}
	#primary div.kaitori-style div.style a{
		margin:0 10px;
		display:block;
	}
	#primary div.kaitori-style div.style a img{
		display:block;
		width:100%;
		max-width:160px;
	}


	/* Photo Pool */
	#primary div.tile-3 div.photo{
		width:33.33333333%;
	}

	/* 買取マップ */
	#primary div.maplist{
		width:100%;
	}
	#primary div.maplist div.city{
		float:none;
		width:100%;
	}
	#primary div.maplist div.city ul{
		margin:0;
		padding:0;
		list-style-type:none;
		margin-bottom:1em;
	}
	#primary div.maplist div.city ul li{
		margin:0;
		padding:0;
		display:inline;
		border-left: 2px solid #ddd;
		padding-left:0.5em;
		padding-right:0.5em;
	}
	#primary div.maplist div.map{
		float:left;
		width:30%;
	}
	#primary div.maplist div.tel{
		clear:none;

		float:left;
		width:70%;
		text-align:center;
	}
	#primary div.maplist div.tel img{
		margin:0 auto;
		display:block;
	}


}



/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	.entry-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}


div.wpcf7-validation-errors{
	border-radius:10px;
	border:0;
	background-color:#eb1c24;
	color:white;
	line-height:1.2em;
}

/* トップに戻るボタン */
div#page div.up-to-top > a{
	position: fixed !important;
	bottom: 0 !important;
	right: 0 !important;
	display: block !important;
	width: 150px !important;
	height: 50px !important;
	background-color: #ed1e26 !important;
	line-height: 50px !important;
	color: #fff !important;
	text-align: center !important;
	border-radius: 3px 3px 0 0 / 3px 3px 0 0 !important;
}

div#page div.up-to-top > a:hover{
	text-decoration: none !important;
}
