@charset "UTF-8";
/*------------------------------------*\
 * Table of Contents
 *
 * 1.0 - リセット
 *   1.1 - テキスト位置
 *   1.2 - フロート
 *   1.3 - クリアフィックス
 * 2.0 - レイアウト
 * 3.0 - ヘッダー
 * 4.0 - ナビゲーション
 *   4.1 - グローバルナビゲーション
 *   4.2 - メニューナビゲーション
 *   4.3 - 投稿ナビゲーション
 *   4.4 - ページネーション
 *   4.5 - パンくず
 * 5.0 - メニューコンテンツ
 *   5.1 - メニューアーカイブ
 *   5.2 - メニュー詳細ページ
 * 6.0 - サイドバーコンテンツ
 * 7.0 - フッター
 * 8.0 - フォーム
 *   8.1 - 検索フォーム
 *   8.2 - お問い合わせフォーム
 *   8.3 - ボタン
 * 9.0 - 投稿コンテンツ
 *   9.1 - 見出し
 *   9.2 - 段落
 *   9.3 - 定義リスト
 *   9.4 - その他
 *   9.5 - ブログアーカイブ
 *   9.6 - 投稿メタ
 * 10.0 - コメントフォーム
 * 11.0 - WordPress デフォルトスタイル
 * 12.0 - トップページ
 */

@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700);

/**
 * 1.0 - リセット
 *
 * HTML要素デフォルトスタイルを定義
 * normalize.css http://necolas.github.io/normalize.css/
 */

article,aside,details,figcaption,
figure,hgroup,main,
nav,section,summary {
    display: block;
    vertical-align: middle;
}








a {
    color: #2E9F74;
    background: transparent;
}

a:focus {
    color: #2E9F74;
    outline: 0 none;
}

a:active,
a:hover {
    color: #2E9F74;
    outline: 0;
}

/*h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    display: block;
}*/



abbr[title] {
    border-bottom: 1px dotted;
}

b,strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

hr {
    display: block;
    -moz-box-sizing: content-box;
         box-sizing: content-box;
    height: 0;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 2px solid #ccc;
}

mark {
    color: #000;
    background: #ff0;
}

code,kbd,pre,samp {
    font-family: monospace, serif;
    font-size: 1em;
}

pre {
    white-space: pre-wrap;
}

q {
    quotes: '\201C' '\201D' '\2018' '\2019';
}

small {
    font-size: 80%;
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border: 0;
    outline: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

iframe {
    max-width: 100%;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

textarea {
    resize: vertical;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/** 1.1 - テキスト位置 **/
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/** 1.2 - フロート **/
.f-left {
    float: left;
}
.f-right {
    float: right;
}

/** 1.3 - クリアフィックス **/
.clearfix:before,
.container:before,
.clearfix:after,
.container:after {
    display: table;
    content: ' ';
}

.clearfix:after,
.container:after{
    clear: both;
}


table {
    width: 100%;
    border-collapse: collapse;
}
table textarea,
table input[type='text'] {
    width: 100%;
}
table th {
    padding-left: 1em;
    text-align: left;
}
.text-danger{
    color: #ae0000;
}
/**
 * 2.0 - レイアウト
 */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.wp-block-heading {
	text-align: left;
	font-size: 1.2rem;
	border-bottom: 1px solid #efefef;
	color: #6FB5D3;
}

@media screen and (max-width: 640px) {
    .container {
        float: none;
        max-width: 94%;
        margin-right: auto;
        margin-left: auto;
    }
}

.row {
    margin-right: -12px;
    margin-left: -12px;
}

/** 2カラム時 **/
.l-two-column {
    padding: 0;
}

/** メインカラム **/
.l-two-column .l-main {
    float: left;
    width: 72.6%;
    padding-top: 24px;
}

@media screen and (max-width: 640px) {
.l-two-column .l-main {
    width: 94%;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    float: none;
}
}

/** サイドバー **/
.l-sidebar {
    float: right;
    width: 100%;
    max-width: 25%;
    padding-top: 24px;
}

@media screen and (max-width: 640px) {
    .l-sidebar {
        float: none;
        max-width: 94%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}

/** ワンカラム **/
.l-one-column {
    padding-top: 2em;
    padding-bottom: 2em;
    background: #ffffff;
}

.l-one-column .l-main {
    width: 100%;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

/*.l-one-column .entry-header .entry-title,
.l-one-column .entry-header .blog .archive-title,
.blog .l-one-column .entry-header .archive-title {
    background-image: url(images/common/bg-entry-title-one-column.png);
}*/



@media screen and (max-width: 640px) {
    .header-navigation {
        float: none;
        width: 100%;
    }
}

.header-navigation li {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.header-navigation li:hover {
    background-color: #f5f5f5;
}

@media screen and (max-width: 640px) {
    .header-navigation li {
        float: none;
        width: 49%;
        text-align: center;
    }
}

.header-navigation span,
.header-navigation a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: inline-block;
    padding-right: 16px;
    padding-left: 28px;
    -webkit-transition: background ease-in 0.2s;
            transition: background ease-in 0.2s;
    text-decoration: none;
    letter-spacing: 2.2px;
    color: #686868;
    border-radius: 2px;
    background-image: url(images/icons/arrow-middle.png);
    background-repeat: no-repeat;
    background-position: 12px 14px;
}

.header-navigation .sub-menu {
    position: absolute;
    z-index: 99999;
    left: 0;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    padding: 0;
    border: 1px solid #e8e8e8;
    border-top: 0;
    background-color: #f5f5f5;
}

.header-navigation .sub-menu li {
    display: block;
    overflow: hidden;
    width: 200px;
    text-align: left;
}

.header-navigation .sub-menu li a {
    display: block;
}

.header-navigation .sub-menu li a:hover {
    background-color: #fff;
}

@media screen and (max-width: 640px) {
    .header-navigation .sub-menu {
        float: none;
    }
    .header-navigation .sub-menu li {
        width: 100%;
    }

}

.header-navigation .sub-menu ul {
    top: 0;
    left: 100%;
    width: 100%;
    border-left: 0;
}

.header-navigation li:hover > .sub-menu,
.header-navigation .sub-menu li:hover > .sub-menu,
.header-navigation .focus > .sub-menu {
    overflow: visible;
    clip: inherit;
    width: inherit;
    height: inherit;
}

@media screen and (max-width: 640px) {
    .header-navigation li:hover > .sub-menu,
    .header-navigation .sub-menu li:hover > .sub-menu,
    .header-navigation .focus > .sub-menu {
        width: 100%;
    }
}

/** 4.1 - メニューナビゲーション **/

.menu-navs {
    margin-bottom: 24px;
}

.menu-navs ul {
    overflow: hidden;
}

.menu-navs ul li {
    display: block;
    float: left;
    margin-right: 16px;
}

.menu-navs ul li a {
    display: inline-block;
    padding-right: 16px;
    padding-left: 16px;
    text-decoration: none;
    color: #454545;
    border: 1px solid #e8e8e8;
}

.menu-navs ul li a:hover {
    background: #e8e8e8;
}

@media screen and (max-width: 640px) {
    .menu-navs ul li {
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .menu-navs ul li a {
        padding-right: 8px;
        padding-left: 8px;
    }
}

/** 4.3 投稿ナビゲーション **/
.post-navigation,
.paging-navigation {
    font-weight: 300;
    padding: 20px 0;
    color: #fff;
    background-color: #fff;
    overflow: hidden;
}

.post-navigation .nav-links,
.paging-navigation .nav-links {
    margin: 0 7px;
}

.post-navigation .nav-links a,
.paging-navigation .nav-links a {
    position: relative;
    display: inline-block;
    width: 214px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #7d5031;
    background-image: -webkit-linear-gradient(224deg, rgba(211, 120, 120, 0.25) 0%, rgba(149, 36, 129, 0.25) 50%, rgba(185, 199, 39, 0.25) 100%);
    background-image:         linear-gradient(-134deg, rgba(211, 120, 120, 0.25) 0%, rgba(149, 36, 129, 0.25) 50%, rgba(185, 199, 39, 0.25) 100%);
}

@media screen and (max-width: 640px) {
    .post-navigation .nav-links a,
    .paging-navigation .nav-links a {
        display: block;
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
    .post-navigation .nav-next,
    .paging-navigation .nav-next
    .post-navigation .nav-previous,
    .paging-navigation .nav-previous {
        float: none;
    }
}

.post-navigation a[rel='next'] {
    float: right;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .post-navigation a[rel='next'] {
        float: none;
    }
}

.post-navigation .nav-previous,
.paging-navigation .nav-previous {
    float: left;
    padding: 8px;
    border: 1px solid #e8e8e8;
}

.post-navigation .nav-next,
.paging-navigation .nav-next {
    float: right;
    padding: 8px;
    border: 1px solid #e8e8e8;
}


@media screen and (max-width: 640px) {
    .post-navigation .nav-next,
    .paging-navigation .nav-next,
    .post-navigation .nav-previous,
    .paging-navigation .nav-previous {
        float: none;
        margin-bottom: 10px;
    }
}

/** 4.4 - ページネーション **/
.pagination {
    font-weight: bold;
    clear: both;
    overflow: hidden;
    margin: 20px 0 80px 20px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline;
    list-style: none;
}

.pagination a.page-numbers {
    display: inline-block;
    padding: 3px 10px;
    text-decoration: none;
    color: #585858;
    background-color: #f6f6f6;
}

.pagination span.current,
.pagination a.page-numbers:hover {
    display: inline-block;
    padding: 3px 10px;
    text-decoration: none;
    color: #fff;
    background-color: #338F60;
}

/** 4.5 - パンくず */
ul.bread_crumb {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
}

ul.bread_crumb li {
    font-size: 0.9em;
    display: inline-block;
}

ul.bread_crumb li.sub:before {
    content:' > ';
}

@media screen and (max-width: 640px) {
    ul.bread_crumb {
        padding-left: 20px;
    }
}

/**
 * 5.0 - メニューコンテンツ
 */

/** 5.1 - メニューアーカイブ **/

.menu-block {
    width: 46.5%;
    margin-right: 12px;
    margin-bottom: 24px;
    margin-left: 12px;
    padding: 16px;
    text-align: center;
    vertical-align: top;
    border: 1px solid #e8e8e8;
    display: inline-block;
}
@media screen and (max-width: 940px) {
    .menu-block {
        float: none;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
}

.menu-block .menu-thumbnail {
    overflow: hidden;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    padding: 1.6em;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
}

.menu-block .menu-desc{
    min-height: 112px
}

.menu-block .menu-more a {
    padding: 2px;
}

.menu-block .menu-more a:hover {
    opacity: 0.8;
    color: #fff;
}

.menu-title {
    font-size: 18px;
}

/** 5.2 - メニュー詳細ページ */
.menu-detail {
    overflow: hidden;
}

.menu-detail .menu-thumbnail {
    float: left;
    width: 256px;
    margin-right: 24px;
    padding: 5px;
    border: 1px solid #e8e8e8;
}

.menu-detail .menu-thumbnail img {
    max-width: 100%;
}

@media screen and (max-width: 940px) {
    .menu-detail .menu-thumbnail {
        float: none;
        width: 100%;
    }
}

.menu-detail .menu-content {
    float: right;
    width: 431px;
}

.menu-detail .menu-content p {
    margin-bottom: 2em;
}

@media screen and (max-width: 940px) {
    .menu-detail .menu-content {
        float: none;
        width: 100%;
    }
}


/**
 * 6.0 - サイドバーコンテンツ
 */

.widget-title {
    font-size: 18px;
    font-weight: normal;
    line-height: 2em;
    margin-bottom: 16px;
    color: #454545;
    background-image: url(images/common/bg-widget-title.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.widget {
    margin-bottom: 24px;
}

.widget_categories ul {
    border: 1px solid #e8e8e8;
    border-bottom: none;
}

.widget_categories ul li {
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
}

.widget_categories ul li a {
    font-weight: bold;
    line-height: 3.4em;
    display: block;
    padding-left: 1.7em;
    text-decoration: none;
    color: #454545;
    background-image: url(images/icons/arrow-large.png);
    background-repeat: no-repeat;
    background-position: 220px center;
}

.widget_categories ul li a:hover {
    background-color: #f5f5f5;
}

.widget_categories ul li a:active {
    background-color: #e8e8e8;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
    .widget_categories {
        width: 250px;
        margin-right: auto;
        margin-left: auto;
    }
}









/** 8.1 - 検索フォーム **/
#searchform #s {
    width: 180px;
    margin-right: -5px;
}
#searchform #searchsubmit {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6em;
    width: 70px;
    margin-right: 0;
    margin-left: 0;
    letter-spacing: 3px;
    color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 0 5px 5px 0;
    background: #7d5031;
    background-image: -webkit-linear-gradient(224deg, rgba(211, 120, 120, 0.25) 0%, rgba(149, 36, 129, 0.25) 50%, rgba(185, 199, 39, 0.25) 100%);
    background-image:         linear-gradient(-134deg, rgba(211, 120, 120, 0.25) 0%, rgba(149, 36, 129, 0.25) 50%, rgba(185, 199, 39, 0.25) 100%);
    background-image: -webkit-linear-gradient(269deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.21) 100%);
    background-image:         linear-gradient(-179deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.21) 100%);
}




/** 8.3 - ボタン **/


.btn-more {
    width: 100%;
    max-width: 222px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-image: url(images/common/bg-btn-more.png);
    background-repeat: no-repeat;
    background-position: center center;
}

/**
 * 9.0  - 投稿コンテンツ
 */

/** 9.1 - 見出し */

/** 投稿タイトル **/
.page-header .entry-title,
.entry-header .entry-title,
.page-header .archive-title,
.page-header .blog .archive-title,
.archive .page-header .archive-title,
.page-header .archive .archive-title,
.archive .page-header .archive-title {
	width: 100%;
	margin-top: 0;
	margin-bottom: 30px;
	letter-spacing: 2px;
	background-image: url(images/common/bg-entry-header.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

.entry-content h1 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 24px;
    padding-bottom: 16px;
    letter-spacing: 4px;
    background-image: url(images/common/bg-entry-header.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.entry-content h2 {
    font-size: 20px;
    line-height: 1.5em;
    margin-top: 24px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    color: #454545;
    border-bottom: 1px solid #e8e8e8;
}

.entry-content h3 {
    font-size: 18px;
    line-height: 27px;
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e8e8e8;
}

.entry-content h3:before {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    margin-left: 8px;
    content: '';
    border-radius: 50%;
    background: #ffcfae;
    background-image: -webkit-linear-gradient(224deg, rgba(211, 120, 120, 0.5) 0%, rgba(149, 36, 129, 0.5) 50%, rgba(185, 199, 39, 0.5) 100%);
    background-image:         linear-gradient(-134deg, rgba(211, 120, 120, 0.5) 0%, rgba(149, 36, 129, 0.5) 50%, rgba(185, 199, 39, 0.5) 100%);
}

/*.entry-content h4 {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.entry-content h4:before {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    content: '・';
}*/

.entry-content h5 {
    font-size: 14px;
    font-weight: 700;
}

.entry-content h6 {
    font-size: 14px;
    font-weight: 100;
}

/** 9.2 - 段落 **/
.entry-content p {
    line-height: 2em;
    margin-top: 0;
    margin-bottom: 8px;
}

/** 9.3 - 定義リスト **/
.entry-content dl dt {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.14297em;
    border-bottom: 1px dashed #e8e8e8;
}

.entry-content dl dd {
    margin-bottom: 1.14297em;
    margin-left: 1.14297em;
}

/** 9.4 - その他 **/
.entry-content small {
    font-size: 0.8em;
}

.entry-content strong {
    font-weight: bold;
    color: #338F60;
}

.entry-content pre {
    padding: 16px;
    background: #e8e8e8;
}

.entry-content code {
    display: inline;
    padding: 2px 5px;
    background: #e8e8e8;
}

.entry-content table th,
.entry-content table td {
    line-height: 2em;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.entry-content table th {
    font-weight: normal;
    padding-left: 0;
    background: #f7f7f7;
}

.entry-content .thumbnail {
    margin-bottom: 2em;
}

.entry-footer span {
    display: inline-block;
    padding: 2px 16px;
    padding-left: 28px;
    border: 1px solid #e8e8e8;
}

.entry-footer span a {
    text-decoration: none;
}

.entry-footer span.comments-link {
    background-image: url(images/icons/icon-chat.png);
    background-repeat: no-repeat;
    background-position: 7px center;
}

.entry-footer span.tag-links {
    min-height: 29px;
    vertical-align: bottom;
    background-image: url(images/icons/icon-tag.png);
    background-repeat: no-repeat;
    background-position: 7px center;
}

/** 9.5 - ブログアーカイブ **/

.blog .hentry,
.archive .hentry {
    overflow: hidden;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid #e8e8e8;
}

.blog .page-header,
.archive .page-header {
    overflow: hidden;
}

.blog .entry-title,
.blog .archive-title,
.archive .entry-title,
.archive .archive-title  {
	width: 100%;
    font-size: 16px;
    float: left;
    margin-bottom: 16px;
    padding-bottom: 0;
    letter-spacing: 0;
    border-bottom: none;
    background: none;
}

@media screen and (max-width: 640px) {
    .blog .entry-title,
    .blog .archive-title,
    .archive .entry-title,
    .archive .archive-title  {
        float: none;
    }
}

.blog .entry-title a,
.blog .archive-title a,
.archive .entry-title a,
.archive .archive-title a {
    text-decoration: none;
    color: #2E9F74;
}

.blog .entry-title a:hover,
.blog .archive-title a:hover,
.archive .entry-title a:hover,
.archive .archive-title a:hover {
    color: #2E9F74;
}

.blog .entry-content,
.archive .entry-content {
    overflow: hidden;
}

.blog .entry-content .entry-header,
.archive .entry-content .entry-header {
    display: inline-block;
    width: 100%;
}

.blog .entry-content .thumbnail,
.archive .entry-content .thumbnail {
    float: left;
    margin-right: 16px;
}

/** 9.6 - 投稿メタ **/

.entry-meta {
    margin-bottom: 24px;
    text-align: right;
}

.entry-meta span {
    display: inline-block;
    padding: 2px 16px;
}

.entry-meta .author {
    float: left;
    padding-left: 28px;
    background-image: url(images/icons/icon-author.png);
    background-repeat: no-repeat;
    background-position: 8px center;
}

.entry-meta .date {
    padding-left: 28px;
    border: 1px solid #e8e8e8;
    background-image: url(images/icons/icon-date.png);
    background-repeat: no-repeat;
    background-position: 5px center;
}

.entry-meta .categories-links {
    margin-left: 16px;
    padding-left: 28px;
    border: 1px solid #e8e8e8;
    background-image: url(images/icons/icon-category.png);
    background-repeat: no-repeat;
    background-position: 8px center;
    background-color: #6FB5D3;
    color: #fff;
}

.entry-meta .categories-links a {
    font-size: 12px;
    text-decoration: none;
    color: #fff;
}

.entry-meta .categories-links a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 640px) {
    .entry-meta .author {
        float: none;
    }
    .entry-meta span {
        display: block;
        margin-bottom: 8px;
        text-align: center;
    }

    .entry-meta .categories-links {
        margin-right: 0;
        margin-left: 0;
    }
}

/**
 * 10.0 - コメントフォーム
 */

#reply-title {
    margin-top: 0;
    background: none;
}

.comments-area {
    margin-top: 1em;
    padding: 0 16px 16px;
    border: 1px solid #e8e8e8;
}

.comments-area input[type=text],
.comments-area input[type=url],
.comments-area input[type=email] {
    float: right;
    width: 430px;
}

.comments-area label {
    display: inline-block;
    min-width: 230px;
}

.comments-area .form-allowed-tags {
    font-size: 12px;
}

.comments-area .form-submit {
    text-align: center;
}

.comments-area p {
    overflow: hidden;
    margin-bottom: 1em;
}

.comments-area p label {
    float: left;
}

.comments-area p small {
    font-size: 0.8em;
}

.comments-area textarea {
    width: 100%;
    margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
    .comments-area input[type=text],
    .comments-area input[type=url],
    .comments-area input[type=email],
    .comments-area textarea {
        width: 100%;
    }
}

.comments-area #submit {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

#respond h3 {
    clear: both;
}

.comment-author {
    left: 0;
    float: left;
    margin-right: 30px;
}

.commentlist {
    padding-left: 0;
    list-style: none;
}

.commentlist li {
    position: relative;
    margin-bottom: 1em;
}

.commentlist .children {
    margin-left: 1.8em;
}

.commentlist .children .comment-body {
    margin-bottom: 1em;
    padding-top: 1em;
    padding-left: 1em;
    border-top: 1px solid #e8e8e8;
}

.commentlist .comment-body {
    margin-bottom: 1em;
    padding-top: 1em;
    padding-left: 1em;
}

.commentlist .comment-reply-link {
    font-size: 0.8em;
    display: inline-block;
    padding-right: 0.5em;
    padding-left: 0.5em;
    text-decoration: none;
    color: #fff;
    border: 1px solid #905643;
    background: #905643;
}

.commentlist .comment-meta {
    display: inline;
}

.visual img {
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
/**
 * 11.0 WordPress デフォルトスタイル
 */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.wp-caption {
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    width: auto;
    max-width: 98.5%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0 none;
}

.wp-caption .wp-caption-text {
    font-size: 11px;
    font-style: normal;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

/**
 * 12.0 - トップページ
 */

