/*
Theme Name: Custom1
Template: twentytwelve
Version: 1.0
Description: twentytwelveベースの基本レイアウトテーマ。ヘッダーエリアにウィジェットで管理できるエリアを追加。
*/

/* =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;
}


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;
}
ins {
  background: #fff9c0;
  text-decoration: none;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin: 24px;
  margin-bottom: 1.714285714rem;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
small {
  font-size: smaller;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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


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

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
  line-height: 2.181818182;
  font-weight: bold;
}

/* 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,
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;
  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,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
  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 {
  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 4px 2px #c6c6c6;
  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;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
  /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.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;
}
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 {
  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 */
body {
  text-rendering: optimizeLegibility;
}

/* 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;
  padding: 12px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
  padding: 0;
  background-color: #fff;
}
.site-content {
  margin: 0;
}
.widget-area {
  margin: 0;
}

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

/* Navigation Menu */
.main-navigation {
  margin-bottom: 0;
  text-align: center;
  font-size: 0;
}
.main-navigation li {
  margin: 0;
  font-size: 12px;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
  display: none;
}

.menu-toggle {
  display: block;
  margin: 0;
  position: absolute;
  top: 0;
}
.main-navigation ul.nav-menu.toggled-on {
  width: 100%;
  display: block;
  margin: 0;
  padding: 10px 0;
  position: fixed;
  top: 50px;
  left: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 1000;
}
.main-navigation ul.nav-menu.toggled-on li a {
  padding: 8px 10px;
  display: block;
}

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

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

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


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

.entry-meta {
  clear: both;
}
.entry-header {
  margin-bottom: 24px;
  margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
  margin-bottom: 24px;
  margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
  font-size: 20px;
  font-size: 1.428571429rem;
  line-height: 1.2;
  font-weight: normal;
}
.entry-header .entry-title a {
  text-decoration: none;
}
.entry-header .entry-format {
  margin-top: 24px;
  margin-top: 1.714285714rem;
  font-weight: normal;
}
.entry-header .comments-link {
  margin-top: 24px;
  margin-top: 1.714285714rem;
  font-size: 13px;
  font-size: 0.928571429rem;
  line-height: 1.846153846;
}
article.sticky .featured-post {
  border-top: 4px double #ededed;
  border-bottom: 4px double #ededed;
  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: 18px;
  font-size: 1.285714286rem;
  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: 13px;
  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 24px;
  margin: 0 0 1.714285714rem;
  line-height: 1.714285714;
}
.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;
  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;
  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 th,
.comment-content th {
  border: 1px solid #e3e3e3;
  padding: 6px 10px 6px;
  background: #f9f9f9;
}
.entry-content td,
.comment-content td {
  border: 1px solid #e3e3e3;
  padding: 6px 10px 6px;
}
.site-content article {
  margin-bottom: 70px;
  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;
  text-align: right;
}
.single-author .entry-meta .by-author {
  display: none;
}
.mu_register h2 {
  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 {
  font-size: 12px;
  font-size: 0.857142857rem;
  line-height: 2;
  margin-top: 22px;
  margin-top: 1.571428571rem;
}


/* =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 .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;
}
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;
  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;
  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 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;
}
.comments-area article header a {
  text-decoration: none;
}
.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 {
  font-size: 13px;
  font-size: 0.928571429rem;
  line-height: 1.846153846;
}
.commentlist .pingback {
  line-height: 1.714285714;
  margin-bottom: 24px;
  margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
  margin-top: 0;
}
#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;
}
.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_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 {
  font-size: 11px;
  font-size: 0.785714286rem;
  margin-left: 12px;
  margin-left: 0.857142857rem;
}
#wp-calendar {
  margin: 0;
  width: 100%;
  font-size: 13px;
  font-size: 0.928571429rem;
  line-height: 1.846153846;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
  text-align: left;
}
#wp-calendar #next {
  padding-right: 24px;
  padding-right: 1.714285714rem;
  text-align: right;
}
.widget_search label {
  display: block;
  font-size: 13px;
  font-size: 0.928571429rem;
  line-height: 1.846153846;
}
.widget_twitter li {
  list-style-type: none;
}
.widget_twitter .timesince {
  display: block;
  text-align: right;
}


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

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




/* ============================================ */
/* カスタマイズ */
/* ============================================ */

/* = デフォルトのリセット
----------------------------------------------- */
footer.entry-meta {
  display: none;
}
.home .site-content article {
  margin-bottom: 0;
}


/* = font & Text - font, size, color
----------------------------------------------- */
@font-face {
  font-family: "ag-Bold";
  src: url(font/ag-Bold.otf);
}
@font-face {
  font-family: "ag-Demi";
  src: url(font/ag-Demi.otf);
}
@font-face {
  font-family: "ag-Md";
  src: url(font/ag-Md.otf);
}

html, body, th, td {
  color: #444;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-family:  "ag-Md",
                "Avenir Next",
                'Helvetica Neue',
                Helvetica,
                Verdana,
                "ヒラギノ角ゴ Pro W3",
                "Hiragino Kaku Gothic Pro",
                "游ゴシック",
                "Yu Gothic",
                "メイリオ",
                Meiryo,
                Osaka,
                sans-serif;
}
h1, h2, h3, h4, h5 {
  color: #222;
}

/* = base
----------------------------------------------- */
table th,
table td {
  padding: 5px;
  border: 1px solid #e0e0e0;
}
table th {
  background: #f6f6f6;
}
table td {
  background: #fff;
}
p {
  margin: 0 0 15px;
}

img {
  vertical-align: bottom;
}

a {
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:link,
a:visited {
  color: #600027;
 }
a:hover {
  color: #B90A5E;
  text-decoration: none;
}

#main {
  padding: 70px 0 40px;
  background-color: #f7f7f7;
}
.home #main {
  background-color: #fff;
}

/* = class
----------------------------------------------- */
/* clearfix */
.clearfix:before,
.clearfix:after {
  content:"";
  display:table;
  overflow:hidden;
  font-size:0.1em;
  line-height:0;
}
.clearfix:after {
  clear:both;
}
.clearfix { /* For IE 6/7 (trigger hasLayout) */
  zoom:1;
}

/* link area */
.link_area {
  text-align: right;
  margin: 0 0 0 auto;
  display: block;
}
.link_area a {
  margin: 0;
  padding: 6px 15px 4px 25px;
  line-height: 2;
  text-align: left;
  font-size: 12px;
  background: url(images/arrow1.png) no-repeat 15px center #737270;
  border-radius: 15px;          /* CSS3草案 */
  -webkit-border-radius: 15px;  /* Safari,Google Chrome用 */
  -moz-border-radius: 15px;     /* Firefox用 */
  behavior: url(https://www.yoshihara-shiatsu.com/wp-content/themes/twentyten-child/PIE/PIE.htc);
}
.link_area a:link,
.link_area a:visited {
  color: #fff;
  text-decoration: none;
}
.link_area a:hover,
.link_area a:active {
  background-color: #B90A5E;
}

/* 角丸 */
.radiusBox {
  border-radius: 4px;         /* CSS3草案 */
  -webkit-border-radius: 4px; /* Safari,Google Chrome用 */
  -moz-border-radius: 4px;    /* Firefox用 */
  behavior: url(https://www.yoshihara-shiatsu.com/wp-content/themes/twentyten-child/PIE/PIE.htc);
}

/* 注目 */
.attention {
  margin: 0 0 30px;
  padding: 5px 10px;
  border: 1px solid #ffae00;
  background: url(images/attention_icn.png) no-repeat 10px center;
  color: #3bc5ac;
  border-radius: 4px;          /* CSS3草案 */
  -webkit-border-radius: 4px;  /* Safari,Google Chrome用 */
  -moz-border-radius: 4px;     /* Firefox用 */
  behavior: url(https://www.yoshihara-shiatsu.com/wp-content/themes/twentyten-child/PIE/PIE.htc);
}
.attention_inner {
  margin: 0 0 0 38px;
  padding: 7px 10px 3px;
  border-left: 1px dotted #e3e3e3;
}
.attention_inner p:last-child {
  margin: 0;
}

/* 備考 */
.notes {
  margin: 0 0 30px;
  padding: 5px 10px;
  border: 1px solid #ffae00;
  border-radius: 4px;          /* CSS3草案 */
  -webkit-border-radius: 4px;  /* Safari,Google Chrome用 */
  -moz-border-radius: 4px;     /* Firefox用 */
  background: url(images/notes_icn.png) no-repeat 10px center #fff7db;
}
.notes_inner {
  margin: 0 0 0 38px;
  padding: 7px 10px 3px;
  border-left: 1px dotted #cfcfcf;
}
.notes_inner p:last-child {
  margin: 0;
}

/* other */
.red {
  color: #cc0000;
}
.red_bold {
  color: #cc0000;
  font-weight: bold;
}

.fl_l {
  float: left;
}
.fl_r {
  float: right;
}
img.fl_l {
  margin: 0 30px 30px 0;
}
img.fl_r {
  margin: 0 0 30px 30px;
}

/* align */
.ta_c {
  text-align: center;
}
.ta_l {
  text-align: left;
}
.ta_r {
  text-align: right;
}

/* list_style1 */
.list_style1 {
  margin: 0 0 20px;
  padding: 0;
}
.list_style1 li {
  margin: 0 0 5px;
  padding: 0 0 0 20px;
  background: url(images/arrow5.png) no-repeat left center;
  list-style: none;
  font-weight: bold;
}

/* dl_style1 */
#content .dl_style1 {
  width: auto;
  margin: 0 0 20px;
  padding: 10px 0;
  background-color: #f0f0f0;
  display: inline-block;
}
#content .dl_style1 dt {
  width: auto;
  margin: 0 0 20px;
  padding: 0 0 5px;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #ccc;
}
#content .dl_style1 dd {
  margin: 0 20px 10px;
  padding: 0 0 0 15px;
  line-height: 1.4;
  background: url(images/arrow3.png) no-repeat left 3px;
}

/* table_style1 */
.table_style1 th,
.table_style1 td {
  border: 1px solid #888;
}
.table_style1 th {
  background-color: transparent;
}

/* table_style2 */
.table_style2 {
  border: 0;
  font-size: 90%;
}
.table_style2 th,
.table_style2 td {
  padding: 0;
  border: 0;
  background: none
}
.table_style2 td {
  padding: 0 0 0 10px;
}

/* h_act1 */
a.h_act1 {
  position: relative;
  display: block;
}
a.h_act1:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.h_act1:hover:after {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* h_act2 */
.btn_area1 {
  text-align: center;
}
a.h_act2 {
  margin: 0 auto;
  padding: 28px 60px 25px;
  color: #fff !important;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  background: url(https://www.yoshihara-shiatsu.com/wp-content/themes/yoshihara/images/arrow6.png) no-repeat 40px center #000;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.h_act2:hover {
  background-position: right 40px center;
  background-color: #333;
}


/* コンテンツブロック設定 */
.cont_block {
  margin: 0 0 50px;
  clear: both;
}





/* 画像ウィジェット hover action */
.widget_sp_image a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: transparent;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.widget_sp_image a:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.widget_sp_image a:hover,
.widget_sp_image a:focus,
.widget_sp_image a:active {
  color: white;
}
.widget_sp_image a:hover:before,
.widget_sp_image a:focus:before,
.widget_sp_image a:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}




/* = header
----------------------------------------------- */
#header_outer {
  box-shadow:rgba(216, 216, 216, 0.65) 0px 6px 5px -4px;
  -webkit-box-shadow:rgba(216, 216, 216, 0.65) 0px 6px 5px -4px;
  -moz-box-shadow:rgba(216, 216, 216, 0.65) 0px 6px 5px -4px;
  position: relative;
  z-index: 1000;
}
#masthead {
  margin: 0;
  text-align: center;
}
#header_inner {
  padding: 0;
}

#site-description {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #000;
}
#site-description p {
  margin: 0 auto;
  line-height: 1;
  font-size: 10px;
  display: block;
  color: #999;
}

#masthead #logo_area {
  margin: 0;
  padding: 25px 0 0;
}

#masthead #logo_area {
  width: 260px;
  margin: 0 auto 20px;
  text-align: center;
}
#masthead #logo_area h1 {
  margin: 0;
  padding: 0;
}
#masthead #logo_area h1 a {
  margin: 0;
  padding: 0;
  display: block;
}
#masthead #logo_area h1 img {
  max-width: 100%;
}




/* ウィジェット */
#masthead .header-widget-area {
  width: 50px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
letter-spacing:-8px;
}
#masthead .widget-container {
  margin: 0;
  padding: 0;
width:50px;
display:inline-block;
letter-spacing:0;
}
#masthead .widget-container a {
  max-width: 100%;
}
#masthead .header-widget-area img {
  max-width: 100%;
}

.header_sns {
  margin: 0;
}
.header_sns ul {
  margin: 0 0 0 auto;
}
.header_sns ul li {
  margin: 0;
  padding: 0 3%;
  text-align: center;
  display: inline-block;
}



/* gnavi
----------------------------------------------- */
#gnav {
  margin: 0;
  padding: 0;
}

#gnav .menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  background: url(images/gnavi_toggle_btn_off.png) no-repeat center;
  background-size: cover;
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 0;
  z-index: 99999;
}
#gnav .assistive-text {
  display: none;
}

#gnav #menu-gnavi {
  width: 100%;
  margin: 0;
  font-size: 0;
}
#gnav #menu-gnavi li {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  font-family: "ag-Demi";
  text-align: left;
}
#gnav #menu-gnavi li a {
  margin: 0;
  padding: 18px 20px 15px;
  color: #fff;
  line-height: 1.2;
  border-bottom: 1px dotted #666;
  display: block;
}
#gnav #menu-gnavi li a:link,
#gnav #menu-gnavi li a:visited {
  color: #fff;
  text-decoration: none;
}
#gnav #menu-gnavi li a:hover,
#gnav #menu-gnavi li a:active {
  text-decoration: underline;
}

#gnav #menu-gnavi ul {
  margin: 0 0 0 20px;
}
#gnav #menu-gnavi ul li {
  margin: 0;
  padding: 0;
  float: none;
  font-family: "ag-Md";
  display: block;
}
#gnav #menu-gnavi ul li:last-child {
  border: 0;
}
#gnav #menu-gnavi ul li a {
  width: auto;
  padding: 13px 20px 10px;
  border: 0;
  font-size: 14px;
}
#gnav #menu-gnavi ul li a:link,
#gnav #menu-gnavi ul li a:visited {
  color: #fff;
  text-decoration: none;
}
#gnav #menu-gnavi ul li a:hover,
#gnav #menu-gnavi ul li a:active {
  color: #fff;
  text-decoration: underline;
}


.rfwbsoverlay div {
  font-size: 14px !important;
}



/* パンくず
----------------------------------------------- */
.breadcrumbs {
  width: 100%;
  margin: 0 auto;
  padding: 8px 0 5px;
  text-align: left;
}
.breadcrumbs .arrow {
  padding: 0 10px;
}
.breadcrumbs span {
  font-size: 10px;
  letter-spacing: 0;
}


/* main visual
----------------------------------------------- */
.header_bottom-widget-area {
  position: relative;
  z-index: 1;
}
#mainvisual {
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow:rgb(231, 231, 231) 0px 4px 3px 0px;
  -webkit-box-shadow:rgb(231, 231, 231) 0px 4px 3px 0px;
  -moz-box-shadow:rgb(231, 231, 231) 0px 4px 3px 0px;
}
#mainvisual_inner {
  width: 100%;
  margin: 0;
}



/* = secondary
----------------------------------------------- */
/* secondary レスポンシブ時設定 */
#secondary {
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
#secondary .widget_nav_menu {
  display: none;
}

/* サイドウィジェット　共通スタイル設定 */
#secondary .widget {
  background-color: transparent;
  border: 1px solid #ccc;
}
#secondary .widget h3 {
  margin: 0 0 10px;
  padding: 10px 0;
  text-align: center;
  border: 0;
  color: #111;
  font-size: 90%;
  background-color: #f2f2f2;
}
#secondary .widget ul {
  margin: 0;
  padding: 0 10px 10px;
}
#secondary .widget ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
  list-style: none;
  font-size: 13px;
}
#secondary .widget ul > li:last-child {
  border-bottom: 0;
}
#secondary .widget ul li a {
  margin: 0;
  padding: 7px 20px 5px;
  background: url(images/arrow2.png) no-repeat 10px center;
  display: block;
  text-decoration: none;
}
#secondary .widget ul li a:link,
#secondary .widget ul li a:visited {
  color: #111;
}
#secondary .widget ul li a:hover,
#secondary .widget ul li.current-cat a:hover {
  background-color: #dadcdb;
}
#secondary .widget ul li.current-cat > a,
#secondary .widget ul li.current_page_item > a {
  background-color: #f0f0f0;
}

#secondary .widget ul ul {
  margin: 0 0 0 10px;
}
#secondary .widget ul ul li {
  padding: 0;
  border-bottom: 1px dotted #eee;
}
#secondary .widget ul ul li a {
  padding: 3px 0 3px 15px;
  background: url(images/arrow2.png) no-repeat 5px center;
}


/* コンテンツメニュー */
#secondary .widget_nav_menu {
  margin: 0 0 30px;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0; /* CSS3草案 */
}
#secondary .widget_nav_menu h3 {
  width: 100%;
  height: 50px;
  margin: 0 auto 20px;
  padding: 0;
  border: 0;
  background: url(https://www.yoshihara-shiatsu.com/wp-content/themes/yoshihara/images/side_menu_h.png) no-repeat center top transparent;
  text-indent: -9999px;
  overflow: hidden;
}
#secondary .widget_nav_menu .menu-side_navi-container {
  margin: 0;
}
#secondary .widget_nav_menu .menu-side_navi-container ul {
  padding: 0;
  border-top: 1px dotted #b3b3b3;
}
#secondary .widget_nav_menu .menu-side_navi-container ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted #b3b3b3;
}

#secondary .widget_nav_menu .menu-side_navi-container ul li a {
  font-weight: bold;
}


/* カテゴリー　個別指定 */


/* アーカイブ　個別指定 */
#secondary .widget_archive {
  text-align: center;
}
#secondary .widget_archive select {
  margin: 0 0 10px;
}

/* 新着情報　個別指定 */
#secondary .widget_recent_entries span.post-date {
  margin: 0;
  display: block;
  font-size: 10px;
  text-align: right;
}

/* 画像ウィジェット */
#secondary .widget_sp_image {
  margin: 0 0 10px;
  border: 0;
  text-align: center;
}
#secondary .widget_sp_image:last-child {
  margin: 0 0 30px;
}

/* カレンダー　個別指定 */
#secondary .widget_calendar {
  border: 0;
  text-align: center;
}
#secondary .widget_calendar caption {
  margin: 0 0 5px;
  color: #111;
  text-align: center;
  font-weight: bold;
}
#secondary .widget_calendar table,
#secondary .widget_calendar table th,
#secondary .widget_calendar table td {
  text-align: center;
  font-size: 12px;
  background-color: transparent;
  border-color: #ccc;
}
#secondary .widget_calendar table td a {
  display: block;
}


/* = footer
----------------------------------------------- */
#site_footer {
  padding: 0;
}
.home #site_footer {
  padding-bottom: 0;
}

#footer1 {
  padding: 0;
}
#footer2 {
  padding: 0;
}
#footer3 {
  padding: 0;
}

#site_footer .widget-container {
  margin-bottom: 0;
}
#site_footer .widget-container h3 {
  margin: 0;
  padding: 0;
  text-align: left;
  font-weight: bold;
}

#site_footer .widget_nav_menu {
  width: 100%;
  margin: 0;
  text-align: left;
}
#site_footer .widget_nav_menu h3 {
  width: 100%;
  height: 59px;
  margin: 0 0 50px;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url(https://www.yoshihara-shiatsu.com/wp-content/themes/yoshihara/images/footer_widget_nav_menu_h.png) no-repeat center;
}
#site_footer .widget_nav_menu ul {
  width: 95%;
  margin: 0 2.5% 30px;
}

#site_footer .widget_nav_menu ul:before,
#site_footer .widget_nav_menu ul:after {
  content:"";
  display:table;
}
#site_footer .widget_nav_menu ul:after {
  clear:both;
}
#site_footer .widget_nav_menu ul { /* For IE 6/7 (trigger hasLayout) */
  zoom:1;
}

#site_footer .widget_nav_menu ul li {
  width: 32%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  display: inline-block;
}

#site_footer .widget_nav_menu ul li a {
  padding: 5px 10px 5px 20px;
  background: url(images/arrow2.png) no-repeat 10px center;
  display: block;
}
#site_footer .widget_nav_menu ul li a:link,
#site_footer .widget_nav_menu ul li a:visited {
  color: #111;
}
#site_footer .widget_nav_menu ul li a:hover,
#site_footer .widget_nav_menu ul li a:active {
  background-color: #f0f0f0;
}

#site_footer .footer_logo {
  margin: 100px 0 90px;
  text-align: center;
}
.footer_logo li {
    display: inline-block;
    font-size: 40px;
    margin: 0 15px;
}
.footer_logo li a {
    color: #000;
}
#site_footer .copy {
  margin: 0;
  padding: 50px 0;
  color: #7d7d7d;
  text-align: center;
  letter-spacing: 0;
  font-size: 12px;
  border-top: 1px solid #ddd;
  display: block;
}


/* pagetop */
body a#scroll-to-top {
  width: 50px;
  height: 50px;
  background: url(images/pagetop_off.png) no-repeat left top;
}
body a#scroll-to-top:hover {
  background: url(images/pagetop_on.png) no-repeat left top;
}


/* = コンテンツ
----------------------------------------------- */
/* ユーティリティ　共通設定 */
#content .entry-utility {
  margin: 0 0 10px;
  padding: 0 0 10px;
  line-height: 1.8;
  text-align: left;
  border-bottom: 1px dotted #ccc;
}
#content .entry-utility span {
  font-size: 11px;
}

#content .entry-utility .fl_l {
  float: none;
}
#content .entry-utility .fl_r {
  float: none;
}

#content .entry-utility .time {
  margin-right: 20px;
  padding: 0 0 0 17px;
  background: url(images/icon_day.png) no-repeat left center;
  color: #000;
}
#content .entry-utility .author {
  margin-right: 20px;
  padding: 0 0 0 15px;
  background: url(images/icon_writer.png) no-repeat left center;
}
#content .entry-utility .author {
  margin-right: 20px;
  padding: 0 0 0 15px;
  background: url(images/icon_writer.png) no-repeat left center;
}
#content .entry-utility .comments-link {
  margin-right: 20px;
  padding: 0 0 0 17px;
  background: url(images/icon_comment.png) no-repeat left center;
}
#content .entry-utility .cat-links {
  display: block;
  margin-right: 20px;
  padding: 0 0 0 17px;
  background: url(images/icon_category.png) no-repeat 2px 5px;
}
#content .entry-utility .tag-links {
  display: block;
  margin-right: 20px;
  padding: 0 0 0 17px;
  background: url(images/icon_tag.png) no-repeat left 6px;
}


/* 一覧ページ */
.archive .thumb_box .img_area {
  width: 25%;
  float: left;
  text-align: center;
}
.archive .thumb_box .img_area a {
  padding: 3%;
  display: block;
}
.archive .thumb_box .img_area a:hover {
  background-color: #ccc;
}
.archive .thumb_box .img_area img {
  max-width: 100%;
}
.archive .thumb_box .txt_area {
  width: 70%;
  float: right;
}
.archive .post {
  padding: 20px 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}


/* 詳細ページ */
.attachment-post-thumbnail_outer {
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
}
.site-content .nav-single {
  padding: 5px;
  border: 1px solid #eee;
}
.site-content .comments-area {
  margin: 30px 3% 0;
  padding: 30px 3%;
  border: 1px dotted #ccc;
}

.single a[rel^=lightbox] {
  margin: 0 30px 30px;
}
.single a[rel^=lightbox] img.alignleft,
.single a[rel^=lightbox] img.alignright {
  margin: 0;
}

.single img.alignleft {
  margin: 0 30px 30px 0;
}
.single img.alignright {
  margin: 0 0 30px 30px;
}

.single .entry-content {
  margin: 0 2.5%;
}


/* 共通 */
.archive-header,
.page-header,
.entry-header {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}
.archive-header .archive-title {
  font-size: 12px;
  border-bottom: 1px dotted #ccc;
}
.archive-header .archive-title span {
  color: #111;
  font-size: 14px;
  font-weight: bold;
}
.archive .entry-header {
  text-align: left;
}


.entry-header {
  text-align: center;
}
.entry-header .entry-title {
  margin: 0 auto 40px;
  padding: 0;
  border: 0;
  text-align: center;
  letter-spacing: 0.05em;
  color: #111;
  font-size: 24px;
  font-weight: bold;
  font-family: "ag-Demi";
  display: inline-block;
  border-bottom: 3px solid #3e3b38;
}

.page .entry-header .entry-title {
  font-size: 36px;
}

.entry-header .entry-title a:link,
.entry-header .entry-title a:visited {
  color: #111;
}
.entry-header .entry-title a:hover,
.entry-header .entry-title a:active {
  color: #B90A5E;
}

.site-content .entry-content h2 {
  margin: 0 0 20px;
  border: 0;
  text-align: center;
  color: #111;
  font-size: 16px;
  font-weight: bold;
}
.site-content .entry-content h3 {
  margin: 0 0 50px;
  padding: 0;
  border: 0;
  line-height: 1.4;
  letter-spacing: 1px;
  text-align: center;
  color: #111;
  font-size: 18px;
  font-weight: bold;
}
.site-content .entry-content h4 {
  margin: 0 0 30px;
  color: #111;
  border-bottom: 1px solid #bfbfbf;
}
.entry-content table caption,
.comment-content table caption {
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  font-size: 110%;
  font-weight: bold;
  color: #111;
  background: url(images/arrow3.png) no-repeat left 9px;
}

.tax-treatment_category .entry-meta,
.single-treatment .entry-meta {
  display: none;
}

/* ページネイション */
.pagination {
  margin: 0  auto;
  padding: 40px 0 20px;
  clear:both;
  text-align: center;
  font-size: 90%;
}
.pagination span, .pagination a {
  margin: 2px 2px 2px 0;
  padding:6px 9px 5px 9px;
  text-decoration:none;
  width:auto;
}
.pagination a,
.pagination .current {
  border: 1px solid #000;
} 
.pagination a:link,
.pagination a:visited {
  color: #000;
}
.pagination a:hover{
  color: #fff;
  background: #000;
}
 
.pagination .current{
  padding:6px 9px 5px 9px;
  background: #000;
  color:#fff;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.table_style2 {
  border-collapse: separate;
  border-spacing: 20px;
}
.table_style2 th,
.table_style2 td {
  vertical-align: top;
}
.table_style2 th {
  width: 18%;
  text-align: center;
}
.table_style2 th span {
  margin: 0 0 10px;
  padding: 13px 15px 8px;
  color: #fff;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  position: relative;
  background-color: #d4327c;
  overflow: visible;
  display: block;
}
.table_style2 th span:after {
  width: 0;
  height: 0;
  content: " ";
  text-align: left;
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 12px solid #d4327c;
  border-right: 12px solid transparent;
}
.table_style2 td {
  width: 32%;
  padding: 12px 0;
}



/* トップページ */
.home #content .hentry .entry-header {
  display: none;
}
#content_top_widget {
  margin: 0 0 30px;
  padding: 0;
  clear: both;
}
#content_top_widget #content_top_widget_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#text-3 {
  margin: 0 0 30px;
}
#recent-posts-plus-2 {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
}
#recent-posts-plus-2 h3 {
  margin: 0;
  padding: 20px 0;
  text-align: center;
  line-height: 1;
  font-size: 36px;
  font-weight: normal;
  font-family: "ag-Demi";
  border-bottom: 2px solid #222;
}
#recent-posts-plus-2 h3 span.sub {
  padding: 0 0 0 20px;
  color: #888;
  font-size: 14px;
  background: url(images/line1.png) no-repeat center top;
}

#recent-posts-plus-2 ul {
  width: 100%;
  margin: 0;
}
#recent-posts-plus-2 ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted #ccc;
}
#recent-posts-plus-2 ul li:last-child {
  border-bottom: 0;
}
#recent-posts-plus-2 ul li a {
  margin: 0;
  padding: 20px;
  display: block;
  text-decoration: none;
}
#recent-posts-plus-2 ul li a:hover,
#recent-posts-plus-2 ul li a:active {
  background-color: #f6f6f6;
}
#recent-posts-plus-2 ul li span.img {
  width: 18%;
  float: left;
  display: block;
}
#recent-posts-plus-2 ul li span.img img {
  margin: 0;
  max-width: 100%;
}
#recent-posts-plus-2 ul li span.txt_area {
  width: 77%;
  margin: 0;
  float: right;
  display: block;
}
#recent-posts-plus-2 ul li .time {
  margin: 0 0 5px;
  color: #888;
  font-size: 12px;
  display: block;
}
#recent-posts-plus-2 ul li span.title {
  margin: 0;
  display: inline-block;
  font-weight: bold;
}

#top_menu {
  padding: 30px 0 50px;
  background: url(images/top_menu_bg.png) repeat center;
}
#top_menu h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: normal;
  font-family: "ag-Demi";
}
#top_menu h2 span {
  padding: 21px 0 0;
  font-size: 18px;
  display: block;
  background: url(images/line1.png) no-repeat center top;
}
#top_menu #top_menu_inner1 {
  margin: 0 2%;
  padding: 0 2%;
  background: url(images/top_menu_bg2.png) repeat-y center top;
}
#top_menu #top_menu_inner2 {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}

#top_menu #menu_area {
  margin: 0;
}
#top_menu #menu_area .top_menu {
  width: 100%;
  margin: 0 0 50px;
  padding: 0 0 50px;
  border-bottom: 1px solid #ddd;
}
#top_menu #menu_area .top_menu .title_area {
  max-width: 495px;
  margin: 0 0 20px;
  padding: 0;
  display: inline-block;
  border-bottom: 2px solid #222;
  position: relative;
}
#top_menu #menu_area .top_menu .title_area .sub_title {
  margin: 0 0 5px;
  padding: 0;
  color: #808080;
  line-height: 1;
  font-size: 17px;
  display: block;
  font-family: 'ag-Md';
}
#top_menu #menu_area .top_menu .title_area .title {
  margin: 0 55px 0 0;
  color: #222;
  line-height: 1;
  font-size: 24px;
  font-family: 'ag-Demi';
  display: inline-block;
}
#top_menu #menu_area .top_menu .title_area .caps {
  margin-right: -2px;
  color: #d4327c;
  line-height: 1.3;
  text-align: left;
  font-size: 40px;
  font-weight: bolder;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
#top_menu #menu_area .top_menu .img_area {
  width: 100%;
  margin: 0 0 30px;
}
#top_menu #menu_area .top_menu .img_area img {
  max-width: 100%;
}
#top_menu #menu_area .top_menu .txt_area {
  width: 100%;
  font-size: 18px;
}
#top_menu #menu_area .top_menu .txt_area h3 {
  margin: 0 0 30px;
  padding: 0;
  letter-spacing: 0;
  line-height: 1.1;
  font-size: 36px;
  font-weight: bold;
}
#top_menu #menu_area .top_menu .txt_area h3 span {
  margin: 0 0 10px;
  font-size: 14px;
  display: block;
  letter-spacing: 0;
}
#top_menu #menu_area .top_menu .txt_area .sub_copy {
  margin: 0 0 30px;
  color: #d4327c;
  font-weight: bolder;
}

#top_menu #menu_area #menu1 .txt_area .link_detail {
  padding: 20px 0 0;
}
#top_menu #menu_area #menu1 .txt_area .link_detail img {
  max-width: 100%;
}
a.linkbox {
    background: #d5548f;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 5px;
    border-bottom: 5px solid #d52e7d;
    box-shadow: 0px 3px 3px 0px #ccc;
}
a.linkbox:hover {
opacity: 0.8;
}

#top_menu #fee_area {
  margin: 0;
}
#top_menu #fee_area .contents_title {
  margin: 0 auto 30px;
  padding: 0 0 40px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
#top_menu #fee_area .contents_title h3 {
  margin: 0;
  padding: 0 0 3px;
  line-height: 1;
  font-size: 30px;
  display: inline-block;
  border-bottom: 2px solid #222;
}
#top_menu #fee_area h3 span {
  padding-left: 20px;
}
#top_menu #fee_area .fee_table {
  width: 95%;
  margin: 0 2.5% 20px;
}
#top_menu #fee_area .fee_table table {
  width: 100%;
  margin: 0;
}
#top_menu #fee_area .fee_table table th,
#top_menu #fee_area .fee_table table td {
  padding: 10px 0 7px;
  text-align: center;
  letter-spacing: 0;
}
#top_menu #fee_area .fee_table table caption {
  width: 100%;
  margin: 0 0 10px;
  padding: 15px 0 12px;
  color: #d4327c;
  text-align: center;
  letter-spacing: 0;
  font-weight: bolder;
  background-color: #f8d2e3;
  display: table-caption;
}

#top_profile {
  margin: 0;
  padding: 40px 0;
  background: url(images/top_profile_bg.png) no-repeat right 170px;
  background-size: 45% auto;
}

#top_profile #top_profile_inner {
  width: 95%;
  margin: 0 2.5%;
}
#top_profile #profile_area {
  margin: 0 0 50px;
}
#top_profile #profile_area h2 {
  margin: 0 0 50px;
  padding: 0;
  line-height: 1;
  font-size: 32px;
  font-weight: normal;
  display: inline-block;
}
#top_profile #profile_area h2 span {
  margin: 18px 0 0;
  padding: 15px 200px 0 0;
  font-size: 16px;
  font-weight: bold;
  display: block;
  border-top:  2px solid #222;
}
#top_profile #profile_area .name_area {
  margin: 0 0 30px;
}
#top_profile #profile_area .name_area p {
  margin: 0;
  display: inline-block;
}
#top_profile #profile_area .name_area p.name {
  margin-right: 20px;
  color: #222;
  font-size: 38px;
}
#top_profile #profile_area .name_area p.name_kana {
  color: #b3b3b3;
  font-size: 18px;
}
#top_profile #profile_area .birth_area {
  margin: 0 0 45px;
  padding: 0 0 0 25px;
  background: url(images/top_profile_icn1.png) no-repeat left top;
}
#top_profile #profile_area .birth_area p:last-child {
  margin-bottom: 0;
}
#top_profile #profile_area .comment_area {
  margin: 0;
  padding: 15px 40px 10px;
  border-right: 10px solid #ff7bac;
  border-left: 10px solid #ff7bac;
  background-image: url(images/line2.png), url(images/line2.png), url(images/line2.png), url(images/line2.png);
  background-position: left top, right top, right bottom, left bottom;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-color: rgba(255, 255, 255, .7);
}
#top_profile #profile_area .comment_area p:last-child {
  margin-bottom: 0;
}

#top_profile #history_area {
  margin: 0;
  padding: 0;
}
#top_profile #history_area h3 {
  margin: 0 0 40px;
  padding: 0;
  text-align: center;
  font-size: 18px;
  background: url(images/line3.png) repeat-x left center;
}
#top_profile #history_area h3 span {
  padding: 0 20px;
  background-color: #fff;
}
#top_profile #history_area .txt_area {
  margin: 0;
  padding: 0;
}
#top_profile #history_area .txt_area #history1 {
  width: 100%;
  margin: 0;
}
#top_profile #history_area .txt_area #history2 {
  width: 100%;
  margin: -20px 0 0;
}

#top_about_area {
  margin: 0;
  font-size: 18px;
  background-color: #f2f2f2;
  display:block;
}
#top_about_area #about_area {
  width: 100%;
  box-shadow:rgb(219, 219, 219) 0px 5px 5px -5px inset;
  -webkit-box-shadow:rgb(219, 219, 219) 0px 5px 5px -5px inset;
  -moz-box-shadow:rgb(219, 219, 219) 0px 5px 5px -5px inset;
}
#top_about_area #about_area #about_area_inner {
  margin: 0;
  padding: 40px 5%;
}
#top_about_area #about_area h2 {
  margin: 0 0 50px;
  padding: 0;
  line-height: 1;
  font-size: 32px;
  font-weight: normal;
  display: block;
}
#top_about_area #about_area h2 span {
  margin: 18px 0 0;
  padding: 15px 0 0 0;
  font-size: 16px;
  font-weight: bold;
  display: block;
  border-top:  2px solid #222;
}

#top_about_area #map_area {
  width: 100%;
  float: right;
}
#top_about_area #map_area.top_about_tile.about_left {
    float: left;
}
#top_about_area #map_area #top_map {
  width: 100%;
  height: 100%;
}


/* works */
.works {
  margin: 0 0 30px;
}
#main .works .entry-header {
  margin: 0;
  text-align: center;
}

.works .works_cat_list {
  width: 95%;
  margin: 0 auto;
  padding: 5px;
  line-height: 2;
  font-size: 12px;
  border: 1px dotted #ccc;
}
.works .works_cat_list .works_cat_title {
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
  display: block;
  letter-spacing: 0;
}
.works .works_cat_list .parent_category {
  margin: 0 10px 0 0;
  display: inline-block;
}
.works .works_cat_list .child_cat_list {
  margin: 0;
  display: inline-block;
}

.works .work_list {
  width: 100%;
  font-size: 0;
}
.works .work_list li {
  width: 95%;
  margin: 0 2.5% 20px;
  padding: 0;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
}
.works .work_list li a {
  padding: 0 0 1px;
  display: block;
  text-decoration: none;
  background-color: #fff;
}
.works .work_list li a:link,
.works .work_list li a:visited {
  color: #222;
}
.works .work_list li a:hover {
  color: #222;
  background-color: #eee;
}
.works .work_list li img {
  max-width: 100%;
  -moz-transition: -moz-transform 0.2s linear;
  -webkit-transition: -webkit-transform 0.2s linear;
  -o-transition: -o-transform 0.2s linear;
  -ms-transition: -ms-transform 0.2s linear;
  transition: transform 0.2s linear;
}
.works .work_list li a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.works .work_list li span.img_area {
  display: block;
  background: url(images/works_noimage.png) no-repeat center transparent;
  overflow: hidden;
}
.works .work_list li span.txt_area {
  margin: 0 5px 5px;
  padding: 10px 10px 0;
  display: block;
  text-decoration: none;
  background-color: #fff;
}
.works .work_list li span.item_title {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.works .work_list li span.item_txt {
  margin: 0 0 15px;
  font-size: 12px;
  display: block;
}
.works .work_list li span.time {
  color: #888;
  font-size: 11px;
  display: block;
}


/* 酒粕マッサージ */
.page-id-45 #main_inner {
  width: auto;
}
#lees_massage_page .lees_cont_block {
  margin: 0 0 100px;
  text-align: center;
}
#lees_massage_page .lees_cont_block_inner {
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

#lees_massage_page #lees_cont1 .img_area {
  padding: 50px 0;
}
#lees_massage_page #lees_cont1 .txt_area {
  text-align: center;
}

#lees_massage_page .lees_cont_block {
  margin: 0 0 70px;
}
#lees_massage_page .lees_style .img_area {
  width: auto;
  text-align: center;
}
#lees_massage_page .lees_style .img_area img {
  max-width: 100%;
}
#lees_massage_page .lees_style .txt_area {
  width: auto;
}
#lees_massage_page .lees_style .txt_area .txt_area_inner {
  padding: 0 3%;
}
#lees_massage_page .lees_style .txt_area h2 {
  text-align: left;
  line-height: 1;
  font-size: 24px;
}

#lees_massage_page #lees_cont2 {
  background: url(images/lees_massage_cont2_bg.png) no-repeat left center / contain;
}






/* About US */
.page-id-5 #main_inner {
  width: 100%;
}
#about_page {
  width: 100%;
  margin: 0;
  position: relative;
}
#about_page .cont_block {
  position: relative;
}
#about_page .fixed_inner {
  padding: 20px;
  background-color: rgba(255, 255, 255, .75);
}
#about_page #first {
  width: 100%;
  height: 400px;
  background: url(images/about_bg1.jpg) no-repeat center fixed;
  background-size: cover;
}
#about_page .block_inner {
  width: 100%;
  height: 100%;
  background: url(images/overlay.png) repeat center fixed;
  overflow: hidden;
}
#about_page #first .fixed_inner {
  position: absolute;
  top: 20px;
  left: 5%;
  bottom: 20px;
  right: 5%;
}
#about_page table,
#about_page table th,
#about_page table td {
  padding: 10px 0;
  color: #111;
  background-color: transparent;
  border: 0;
}
#about_page table {
  margin-bottom: 0;
}
#about_page #first table th {
  width: 30%;
}
#about_page .handling_list {
  margin: 0;
}
#about_page .handling_list li {
  margin: 0 20px 0 0;
  display: inline-block;
}
#about_page .map_area {
  width: 90%;
  margin: 0 10% 0 0;
}
#about_page #access_area iframe {
  margin: 0;
  vertical-align: bottom;
}
#about_page #access_area .access_txt {
  padding: 3px 0;
  text-align: center;
  color: #fff;
  background-color: rgba(115, 114, 112, 0.8);
}


/* フォーム */
#inquiry_page #cont1 {
  text-align: center;
}
#inquiry_page #cont1 p {
  display: inline-block;
  text-align: left;
}
#inquiry_page .required_item {
  text-align: center;
}
#inquiry_page .required_item p {
  display: inline-block;
}
.mw_wp_form table,
.mw_wp_form table thead,
.mw_wp_form table tbody,
.mw_wp_form table tfoot,
.mw_wp_form table tr,
.mw_wp_form table th,
.mw_wp_form table td {
  max-width: 100%;
  display: block;
}
.mw_wp_form table th,
.mw_wp_form table td {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 0;
}
.mw_wp_form tfoot td {
  text-align: center;
}
.mw_wp_form input,
.mw_wp_form textarea {
  max-width: 90%;
  margin: 5px 5px 5px 0;
}

/*TOP追加コンテンツスペース*/
div#text-8 {
    width: 100%;
    float: left;
}

.spbox_box {
    position: relative;
    border: 1px solid #999;
    border-radius: 2px;
    padding: 2em;
    margin: 48px auto;
}

.spbox_ttl {
    font-size: 1.3em;
    color: #191970;
    position: absolute;
    top: -0.9em;
    left: 1em;
    background: #fff;
    padding: 0 8px;
}

.spbox_box p {
    font-size: 1.2em;
    letter-spacing: 0px;
    padding: 20px;
    background: #eee;
    border: 2px solid #fff;
    box-shadow: 0px 0px 0px 4px #eee;
}

.spbox_box span {
    color: #d4327c;
    font-weight: bold;
}

.spbox_box h3 {
    font-size: 1.2em;
    margin-bottom: 0.8em;
}

i.fa.fa-external-link {
    margin-right: 0.4em;
    font-size: 1.3em;
}

/*友の会*/
h3 span.c_box1 {
    background: #b90b5e;
    color: #fff;
    padding: 5px;
    margin: 1px;
    font-size: 24px;
}
h3 span.c_box2 {
    background: #fff;
    color: #b90b5e;
    padding: 5px;
    margin: 1px;
    font-size: 24px;
    border: 1px solid;
}
.site-content .entry-content h3.title {
}

.linkbox01 {
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.linkbox01 a {
    width: 100%;
    display: inline-block;
    padding: 7px 0;
    height: 50px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: unset;
    font-weight: 800;
    border: 5px solid #d52e7d;
    box-sizing: border-box;
    background: #d52e7d;
}


/* =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;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {

.linkbox01 {
display: none;
}
#top_about_area {
  display:flex;
}

  .author-avatar {
    float: left;
    margin-top: 8px;
    margin-top: 0.571428571rem;
  }
  .author-description {
    float: right;
    width: 80%;
  }
  .site {
    margin: 0 auto;
  }
  .site-content {
    float: left;
    width: 660px;
  }
  body.template-front-page .site-content,
  body.attachment .site-content,
  body.full-width .site-content {
    width: 100%;
  }
  .widget-area {
    float: right;
    width: 250px;
  }
  .site-header h1,
  .site-header h2 {
    text-align: left;
  }
  .site-header h1 {
    font-size: 26px;
    font-size: 1.857142857rem;
    line-height: 1.846153846;
    margin-bottom: 0;
  }
  .main-navigation ul.nav-menu,
  .main-navigation div.nav-menu > ul {
    display: inline-block !important;
    width: 100%;
  }
  .main-navigation ul {
    margin: 0;
    text-indent: 0;
  }
  .main-navigation li a,
  .main-navigation li {
    text-decoration: none;
  }
  .main-navigation li a {
    border-bottom: 0;
    white-space: nowrap;
  }
  .main-navigation li a:hover {
  }
  .main-navigation li {
    position: relative;
  }
  .main-navigation li ul {
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 1;
  }
  .main-navigation li ul ul {
    top: 0;
    left: 100%;
  }
  .main-navigation ul li:hover > ul {
    border-left: 0;
    display: block;
  }
  .main-navigation li ul li a {
    background: #efefef;
    border-bottom: 1px solid #ededed;
    display: block;
    font-size: 11px;
    font-size: 0.785714286rem;
    line-height: 2.181818182;
    padding: 8px 10px;
    padding: 0.571428571rem 0.714285714rem;
    width: 180px;
    width: 12.85714286rem;
    white-space: normal;
  }
  .main-navigation li ul li a:hover {
    background: #e3e3e3;
    color: #444;
  }

  .menu-toggle {
    display: none;
  }
  #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;
  }


  /* ========================================= */
  /* カスタマイズ */
  /* ========================================= */

  /* 横幅の調整 */
  #site-description p,
  #header_top,
  .breadcrumbs_inner,
  #main_inner {
    width: 1024px;
    margin-right: auto;
    margin-left: auto;
  }
  .home #main_inner {
    width: auto !important;
  }
  #header_inner {
    min-width: 1000px;
  }
  .site-content {
    width: 720px;
  }
  .widget-area {
    width: 250px;
  }


  /* title調整 */
  .archive.category-works .entry-header .entry-title {
    font-size: 36px;
  }

  /* header */
  .is_fixed {
    padding-top: 120px;
  }

  .is_fixed #header_outer {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    animation-duration: 1s;
    animation-name: fade-in;
    -moz-animation-duration: 1s;
    -moz-animation-name: fade-in;
    -webkit-animation-duration: 1s;
    -webkit-animation-name: fade-in;
  }
  @keyframes fade-in {
    0% {
      display: none;
      opacity: 0;
    }

    1% {
      display: block;
      opacity: 0;
    }

    100% {
      display: block;
      opacity: 1;
    }
  }
  #site-description {
    text-align: right;
  }
  .header_bottom-widget-area .widget-container {
    margin: 0;
  }
  #masthead {
    text-align: left;
  }
  #masthead #logo_area {
    width: 422px;
    height: 78px;
    margin: 0;
    float: left;
    text-align: center;
  }

  #masthead .widget-container {
    padding: 0;
    width: 100%;

  }
#masthead #widget_sp_image-3.widget-container {
    display: none;
}

  #masthead #logo_area .site-title a {
    padding-left: 0;
  }

  .header_sns ul {
    margin-right: -0.5%;
  }
  .header_sns ul li {
    padding: 0 0.5%;
  }
  #masthead .header-widget-area {
    width: 120px;
    float: right;
    position: static;
  }


  /* gnav */
  #header_inner {
    min-width: 1024px;
  }
  #gnav {
    width: 380px;
    margin: 0;
    padding: 20px 0 0;
    float: right;
  }
  #gnav #menu-gnavi {
    float: none;
    border: 0;
  }
  #gnav #menu-gnavi li {
    width: 47%;
    margin: 0 2% 0 0;
    font-size: 29px;
  }
  #gnav #menu-gnavi li {
    float: left;
    font-family: "ag-Bold";
  }
  #gnav #menu-gnavi li a {
    padding: 3px 0;
    color: #222;
    border: 0;
  }
  #gnav #menu-gnavi li a:link,
  #gnav #menu-gnavi li a:visited {
    color: #222;
  }
  #gnav #menu-gnavi li a:hover,
  #gnav #menu-gnavi li a:active {
    color: #888;
  }
  #gnav #menu-gnavi ul {
    width: 200px;
    margin: 0;
    background-color: #fff;
  }
  #gnav #menu-gnavi ul li {
    width: 100%;
  }
  #gnav #menu-gnavi ul li a {
    padding: 13px 10px 10px;
    background-color: #fff;
    border: 0;
  }
  #gnav #menu-gnavi ul li a:link,
  #gnav #menu-gnavi ul li a:visited {
    color: #222;
  }
  #gnav #menu-gnavi ul li a:hover,
  #gnav #menu-gnavi ul li a:active {
    color: #222;
    background-color: #e6e6e6;
  }

  /* secondary レスポンシブ時設定　解除 */
  #secondary {
    border-top: 0;
    padding-top: 0;
  }
  #secondary .widget_nav_menu {
    display: block;
  }

  /* パンくず */
  .breadcrumbs {
    margin: 0 auto;
    font-size: 12px;
  }
  .breadcrumbs .breadcrumbs_inner {
    padding: 0;
  }

  /* footer */
  #site_footer .widget_nav_menu {
    width: 60%;
    float: left;
  }
  #site_footer .widget_nav_menu ul {
    margin: 0;
  }
  #site_footer .widget_nav_menu ul li {
    width: auto !important;
    margin: 0 20px 0 0;
  }
  #site_footer .widget_nav_menu ul li a {
    padding: 0 0 0 10px;
    background: url(images/arrow2.png) no-repeat left center;
    display: block;
  }

  /* 詳細ページ */
  .single .entry-header {
    text-align: left;
  }

  /* ユーティリティ　共通設定 */
  #content .entry-utility .fl_l {
    width: 25%;
    float: left;
  }
  #content .entry-utility .fl_r {
    width: 75%;
    float: right;
  }

  /* title　設定 */
  .entry-header .entry-title,
  .site-content .entry-content h2 {
    text-align: center;
  }

  /* ページリンク用　高さ調整 */
  #text-4, #text-5, #text-6  {
    margin-top: -120px !important;
    padding-top: 120px !important;
  }

  /* top */
  .home #content_top_widget {
    padding: 30px 0 65px;
  }
  #text-3 {
    width: 475px;
    margin: 0;
    float: left;
  }
  #recent-posts-plus-2 {
    width: 475px;
    margin: 0;
    float: right;
    border-top: 1px solid #ddd;
  }
  #recent-posts-plus-2 h3 {
    padding: 25px 0 14px;
  }
  #content_top_widget #content_top_widget_inner {
    width: 1024px;
  }
  #top_menu {
    padding: 80px 0;
  }
  #top_menu h2 {
    margin: 0 0 80px;
  }
  #top_menu #top_menu_inner2 {
    max-width: 1024px;
    padding: 70px 0;
  }
  #top_menu #menu_area .top_menu .title_area {
    margin: 0 0 60px;
  }

  #top_menu #menu_area .top_menu .title_area .sub_title {
    font-size: 18px;
  }
  #top_menu #menu_area .top_menu .title_area .title {
    margin: 0 78px 0 0;
    font-size: 30px;
  }
  #top_menu #menu_area .top_menu .title_area .caps {
    font-size: 49px;
  }

  #top_menu #menu_area .top_menu .img_area {
    width: 47%;
    float: right;
    text-align: right;
  }
  #top_menu #menu_area .top_menu .txt_area {
    width: 495px;
    float: left;
  }
  #top_menu #menu_area .top_menu .txt_area h3 {
    font-size: 53px;
  }
  #top_menu #fee_area .fee_table {
    width: 47%;
    margin: 0 1.5%;
    float: left;
  }

  #top_profile {
    padding: 80px 0 40px;
    background: url(images/top_profile_bg.png) no-repeat right 5% top 50px;
    background-size: auto auto;
  }
  #top_profile #top_profile_inner {
    width: 1024px;
    margin: 0 auto;
  }
  #top_profile #history_area .txt_area #history1 {
    width: 512px;
    float: left;
    margin: 0;
  }
  #top_profile #history_area .txt_area #history2 {
    width: 512px;
    float: right;
    margin: 0;
  }

  #top_about_area #about_area {
    width: 50%;
    float: left;
    box-shadow:rgb(219, 219, 219) 0px 5px 5px -5px inset;
    -webkit-box-shadow:rgb(219, 219, 219) 0px 5px 5px -5px inset;
    -moz-box-shadow:rgb(219, 219, 219) 0px 5px 5px -5px inset;
  }
#top_about_area #about_area.top_about_tile.about_right {
    float: right;
}
  #top_about_area #about_area #about_area_inner {
    padding: 70px 10%;
  }
  #top_about_area #about_area h2 {
    display: inline-block;
  }
  #top_about_area #about_area h2 span {
    padding: 15px 240px 0 0;
  }

  #top_about_area #map_area {
    width: 50%;
    float: right;
  }

  /* works */
  .works .work_list li {
    width: 30%;
    margin: 0 1.5% 40px;
  }
  .works .works_cat_list .works_cat_title {
    width: 120px;
    float: left;
  }
  .works .works_cat_list .works_cat_title:after {
    content: '|';
    margin-left: 10%;
  }

  /* 酒粕マッサージ */
  #lees_massage_page .lees_cont_block_inner {
    width: 1024px;
  }
  #lees_massage_page .lees_style .img_area {
    width: 33%;
  }
  #lees_massage_page .lees_style .txt_area {
    width: 65%;
  }
  #lees_massage_page .lees_style1 .txt_area {
    float: right;
  }
  #lees_massage_page .lees_style2 .txt_area {
    float: left;
  }
  #lees_massage_page #lees_cont3 .img_area,
  #lees_massage_page #lees_cont5 .img_area {
    float: right;
  }
  #lees_massage_page #lees_cont4 .img_area {
    float: left;
  }
  #lees_massage_page .lees_style .txt_area h2 {
    font-size: 41px;
  }

  /* about us */
  #about_page #first .fixed_inner {
    right: 25%;
    left: 25%;
    text-align: center;
  }
  #about_page #first table {
    width: 80%;
    margin: 0 0 0 20%;
  }
  #about_page .map_area {
    width: 100%;
    margin: 0;
  }


  /* 問い合わせフォーム */
  .mw_wp_form table {
    display: table;
  }
  .mw_wp_form table thead {
    display: table-header-group;
  }
  .mw_wp_form table tbody {
    display: table-row-group;
  }
  .mw_wp_form table tfoot {
    display: table-footer-group;
  }
  .mw_wp_form table tr {
    display: table-row;
  }
  .mw_wp_form table th,
  .mw_wp_form table td {
    display: table-cell;
  }
  .mw_wp_form table th {
    width: 20%;
  }
  .mw_wp_form {
    width: 70%;
    margin: 0 auto;
  }

}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 1108px) {
  body {
    background-color: #fff;
  }
  body .site {
    padding: 0;
    margin: 0;
    box-shadow: 0 0 0 rgba(100, 100, 100, 0.3);
  }
  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;
  }


  /* ========================================= */
  /* カスタマイズ */
  /* ========================================= */

  /* gnav */
  #gnav {
    width: 560px;
    margin: 0;
    padding: 41px 0 0;
    float: right;
  }
  #gnav #menu-gnavi {
    text-align: left;
  }
  #gnav #menu-gnavi li {
    width: auto !important;
    margin: 0 3% 0 0;
  }
  #gnav #menu-gnavi li:last-child {
    margin-right: 0;
  }

}



/* =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;
  }
  .site-header {
    margin-bottom: 72px;
    margin-bottom: 5.142857143rem;
    text-align: left;
  }
  .site-header h1 {
    font-size: 21pt;
    line-height: 1;
    text-align: left;
  }
  .site-header h2 {
    color: #000;
    font-size: 10pt;
    text-align: left;
  }
  .site-header h1 a,
  .site-header h2 a {
    color: #000;
  }
  .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;
  }
  .singular .entry-header .entry-meta {
    position: static;
  }
  .singular .site-content,
  .singular .entry-header,
  .singular .entry-content,
  .singular footer.entry-meta,
  .singular .comments-title {
    margin: 0;
    width: 100%;
  }
  .entry-header .entry-title,
  .entry-title,
  .singular .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;
  }
}