@import url(base.css);

@charset "utf-8";

/* ============ 目次 ===============

    #ヘッダー
        ##モバイルナビ
    #メイン
    #サイドバー
        ##検索フォーム
        ##サイドバー目次
    #記事内
        ##商品リンク
        ##ページ送り
    #フッター

===================================*/


/* ============ #ヘッダー ============*/

h1.site-title {
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 0;
}

h1.site-title a {
    z-index:999;
}

h1.site-title a img {
    width: 300px;
}

p.site-disc {
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .45em;
    margin-top:0;
    padding-left: 25px;
    box-sizing: border-box;
}

.site-header {
    height: 100%;
    position: relative;
    background: url(bg.svg);
    padding-bottom:160px;
    z-index: -1;
}

.top-margin {
    width: 100%;
    height: 0;
}


/* ========== ##モバイルナビ ==========*/

.mobile-fixed {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.mobile-nav {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 999;
    width: 100%;
    padding: 8px 10px 6px;
    box-sizing: border-box;
}

.mobile-nav-inner {
    width: 100%;
    text-align: center;
    margin-left: -30px;
}

.mobile-nav-inner h1 {
    display: inline-block;
    margin: 0;
}

.nav-unshown {
  display:none;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
    float: left;
    padding-top: 5px;
}

.mobile-nav .fa-bars {
    font-size: 25px;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 60%;
  max-width: 330px;
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.mobile-nav .heading {
    background: #fff1cf;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
}

.mobile-nav .category_list {
    padding: 0 8px;
    box-sizing: border-box;
    margin-bottom: 0;
}

.mobile-nav .category_list a + a {
    border-top: 1px solid #eee;
}

.hidden_box {
    margin: 0;
    padding: 0;
}

.hidden_box label,
.rcm_link {
    padding: 15px 12px;
    background: #eee;
    cursor :pointer;
    transition: .5s;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
}

.rcm_link {
    color: #333;
    border-bottom: none;
}

.hidden_box label:after {
    display: inline-block;
    content: '\f078';
    font-family: 'FontAwesome';
    padding-right: 5px;
    transition: 0.2s;
    position: absolute;
    right: 5px;
}

.hidden_box label:hover,
.rcm_link:hover {
    background: #ccc;
}

.hidden_box input:checked ~ label:after {
     content: '\f00d';
     -ms-transform: rotate(360deg);
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
     color: #333;
}

.hidden_box input {
    display: none;
}

.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.hidden_box input:checked ~ .hidden_show {
    padding: 0;
    height: auto;
    opacity: 1;
}


/* ============ #メイン ============*/

.post-top {
    position:relative;
    margin-bottom: 60px;
}

.post-top .post-thumbnail img {
        width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
}

.post-top h2.entry-title {
    width: 90%;
    background: #fff;
    position:absolute;
    bottom:-45px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    box-sizing: border-box;
    padding: 20px 30px;
    text-align: center;
}

.post-top h2.entry-title a {
    color: #333;
    text-decoration: none;
}

.post-top h2.entry-title a:hover {
    text-decoration: underline;
}

.post-top .newIcon {
    position: absolute;
    top:20px;
    left:20px;
    width: 60px;
}

ul.article-list {
    width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin-left:0 !important;
    padding: 0 !important;
}

ul.article-list li {
    width: 48%;
    margin: 0 7px 20px 7px;
    border-radius: 1px;
}

ul.article-list li img {
    height: 200px;
    width:100%;
    -o-object-fit: cover;
    object-fit: cover;
}

ul.article-list li .article-card {
     margin: -6px 0 0;
    padding: 10px;
    background: #fff;
}

ul.article-list li h2.entry-title {
    font-weight: normal;
    font-size: 14px;
    margin: 0;
}

ul.article-list li h2.entry-title a {
    color: #333;
    text-decoration: none;
}

ul.article-list li h2.entry-title a:hover {
    text-decoration: underline;
}

ul.article-list li .cat-name {
    font-size: 6px;
    margin: 0 0 6px;
}

.top_article {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 1px;
    margin-bottom: 20px;
}

.article-card .fashion {
    color: #f0908d;
}

.article-card .accessory {
    color: #f0b551;
}

.article-card .goods {
    color: #c8d0a3;
}

.article-card .interior {
    color: #b2cfd2;
}

.article-card .kids-baby {
    color: #e3d099;
}

.article-card .handmade {
    color: #b4866b;
}

.article-card .beauty {
    color: #a59aca;
}

.trim2 {
    overflow: hidden;
    width: 30%;
    height: 160px;
    position: relative;
    border-radius: 1px;
    margin-right: 10px;
    float: left;
}

.trim5 {
    overflow: hidden;
    width: 100%;
    height: 210px;
    position: relative;
    border-radius: 1px;
}

.trim5 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}


/* ============ #サイドバー ============*/


/* ============ ##検索フォーム ============*/

#searchform {
    margin-bottom: 40px;
}

.s{
    margin: 0;
    width: 200px;
    box-sizing: border-box;
    padding: 4px 0 4px 10px;
    height: 30px;
    line-height: 30px;
    background: #887f7a;
    color: #fff;
    border-width: 0;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #fff;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.s:focus {
    background: #887f7a;
}

.s::placeholder {
    color: #fff;
}

.searchsubmit{
    background: #887f7a;
    padding: 4px 20px;
    color: #fff;
    box-sizing: border-box;
    font-size: 12px;
    height: 30px;
    line-height: 10px;
    border-width: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    transition: .3s;
}

.searchsubmit:hover {
    background: #ccc;
}

/* ===================================*/


.sponsor {
    width :100%;
    height: auto;
    margin-bottom: 30px;
    margin-top: 2em;
}

.sponsor_p {
    display: none;
}

.fa-chevron-right {
    float: right;
}

ul.category-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

ul.category-list li {
    background: #fff;
    box-sizing: border-box;
    margin-bottom:10px;
    border-radius: 1px;
}

ul.category-list li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
}

ul.category-list li a:before {
    display: inline-block;
    content: '';
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

ul.category-list .cat-item-1 a:before {
    background-image: url(../torinoco/img/icon-fashion.png);
    width:25px;
    height:25px;
    margin-right: 4px;
}

ul.category-list .cat-item-30 a:before {
    background-image: url(../torinoco/img/icon-acce.png);
    width:20px;
    height:25px;
    margin-right: 6px;
    margin-left: 2px;
}

ul.category-list .cat-item-2 a:before {
    background-image: url(../torinoco/img/icon-ie.png);
    width:20px;
    height:25px;
    margin-right: 6px;
    margin-left: 2px;
}

ul.category-list .cat-item-5 a:before {
    background-image: url(../torinoco/img/icon-hana.png);
    width:28px;
    height:25px;
}

ul.category-list .cat-item-166 a:before {
    background-image: url(../torinoco/img/icon-beauty.png);
    width:30px;
    height:25px;
}

ul.category-list .cat-item-20 a:before {
    background-image: url(../torinoco/img/icon-baby.png);
    width:20px;
    height:25px;
        margin-left: 4px;
    margin-right: 4px;
}

ul.category-list .cat-item-79 a:before {
    background-image: url(../torinoco/img/icon-ribbon.png);
    width:25px;
    height:25px;
    margin-left: 2px;
    margin-right: 4px;
}

.popular_posts {
    margin-bottom: 40px;
}

.reccomend_article {
    margin-bottom: 20px;
    box-sizing: border-box;
    position: relative;
}

.reccomend_article:hover {
    background: #fff1cf;
    -webkit-transition: .3s;
    transition: .3s;
}

.reccomend_article p,
.latest_article p {
    font-size: 12px;
    text-decoration: none;
    color: #333;
    margin: 6px 0 0 0;
}

.reccomend_article:hover {
    opacity: 0.8;
}

.reccomend_article img {
    object-fit: cover;
    width: 100%;
    height: 120px;
    margin-bottom: -2px;
}

.recommend-wrap {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.15);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
}

.recommend-wrap p {
    position: absolute;
    bottom: 5px;;
    color: #fff;
}

.latest_article {
    overflow: hidden;
    margin-top: 10px;
    box-sizing: border-box;
    background: #fff;
    padding: 0 10px 0 0;
}

.latest_article img {
    float: left;
    margin-right: 10px;
    width:60px;
    height:60px;
    object-fit: cover;
}

.latest-over {
    overflow: hidden;
}

.latest-over h3 {
    display: inline-block !important;
}

.latest-over a {
    display: block;
    float: right;
    color: #333;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 12px;
}

.latest-over a:hover {
    background: #666;
    color: #fff;
}

.latest_article:hover {
    background: #fff1cf;
}


/* ========== ##サイドバー目次 ==========*/

.toc_widget_list {
    background: #fff !important;
    box-sizing: border-box;
    padding: 15px !important;
    border-radius: 1px;
}

.toc_widget_list.no_bullets li {
    line-height: 2em;
}

.toc_widget_list.no_bullets li a {
    color: #626262;
    font-weight: bold;
}

.toc_widget_list.no_bullets li a:hover {
    text-decoration: underline;
}

.toc_widget_list.no_bullets li ul li a {
    color: #888888;
    font-weight: normal;
}

.toc_widget_list.no_bullets span.toc_depth_2:before,
.toc_widget_list.no_bullets span.toc_depth_3:before{
            padding-right: 5px;
    color: silver;
    font-family: FontAwesome;
    content: "\f105";
}

.toc_widget_list.no_bullets span.toc_depth_3 {
    margin-left: 10px;
}


/* ============ #記事内 ============*/

.single-content ul,ol {
    border: 3px solid #eee;
    border-radius: 1px;
    padding: 10px 10px 10px 30px !important;
    margin: 20px auto;
    width:80%;
    font-size: 15px;
}

#single ul li {
      line-height: 1.5;
  padding: 0.5em 0 0;
}

.article_thumb img {
    object-fit: cover;
    width: 100%;
    height: 400px;
}

.article_data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

ul.post-categories,
ul.post-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

ul.post-categories li,
ul.post-tags li,
.related_word li {
    list-style: none;
    font-size: 11px;
}

ul.post-categories a,
ul.post-tags a,
.related_word a {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 8px;
    color: #666 !important;
    text-decoration: none !important;
}

ul.post-categories a:before,
ul.post-tags a:before,
.related_word a:before {
    font-family: "Font Awesome 5 Free";
    font-size: .88em;
    margin-right: .3em;
    position: relative;
    top: -1px;
    font-weight:600;
}

ul.post-categories a:before {
    content: "\f07b";
}

ul.post-tags a:before {
    content: "\f290";
}

.related_word a:before {
    content: "\f02b";
}

ul.post-categories a:hover,
ul.post-tags a:hover,
.related_word a:hover {
    color: #666;
    background: #fff1cf;
    text-decoration: none;
}

#single h1 {
    font-size: 22px;
    margin: 0;
}

#single .articledate {
    font-size: 12px;
    color: #aaa;
    margin : 10px 8px 0 0 ;
    display: inline-block;
    float: left;
}

#single .articledate:first-of-type:before {
    font-family: "Font Awesome 5 Free";
    font-size: .88em;
    position: relative;
    top: -1px;
    font-weight: normal;
    content: "\f274";
}

#single ul.post-categories,
#single ul.post-tags {
    margin-top: 0;
        border: 0 !important;
    border-radius: 0px;
    padding: 0 !important;
}

#single ul.post-categories a,
#single ul.post-tags a {
    color: #666;
    text-decoration: none;
}

#breadcrumb {
    width: 100%;
    height: auto;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 12px;
    color: #aaa;
}

.category #breadcrumb,
.tag #breadcrumb{
	border: none;
	margin-bottom: 0;
}

#breadcrumb a {
    color: #aaa !important;
    text-decoration: none !important;
}

#breadcrumb a:hover {
    text-decoration: underline !important;
}

.fa-angle-right {
    margin-right: 5px;
}

img.size-full {
    max-width: 100%;
    height: auto;
}

blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    background: #efefef;
    color: #555;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    vertical-align: middle;
    content: "\f10d";
    font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 30px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

ol{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em !important;
    border: 3px solid #eee;
    border-radius: 1px;
}
ol li{
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #aaa;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align:center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

}

#single h2 {
    font-size: 20px;
    margin: 3.2em 0 1.8em;
    padding-bottom: 8px;
    border-bottom: 3px solid #887f7a;
}

#single h3 {
    font-size: 18px;
    margin: 2em 0 1em;
}

#single h3:before {
    font-family: 'Font Awesome 5 Free';
  content: "\f111";
  color: #887f7a;
    margin-right: 5px;
    font-weight: 500;
    font-size: 14px;
}

#single h4 {
    font-size: 17px;
    color : #626262;
}

#single h4:before {
      font-family :'Font Awesome 5 Free';
  content: "\f138";
  color: #887f7a;
    margin-right: 5px;
}

/*
#single b,#single strong {
    background: -webkit-linear-gradient(transparent 70%, #fff1cf 30%);
    background: linear-gradient(transparent 70%, #fff1cf 30%);
}
*/

#single p {
    line-height: 1.4em;
    font-size: 15px;
}

.wp-caption-text {
    text-align: center;
    font-size: 12px !important;
    color: #999;
    margin-top: 0;
}

.single-content a {
    color: #ae7c58;
    text-decoration: underline;
}

.single-content a:hover {
    text-decoration: none;
}

#single a[target="_blank"]:after {
    font-family: 'Font Awesome 5 Free';
    content: '\f35d';
    font-size: 0.9em;
    margin: 0 3px 0 2px;
    font-weight: 600;
}


/* =========== ##商品リンク =========== */


.cstmreba {
	width:100%;
	height:auto;
	margin:36px 0;
	font-family:'Lucida Grande','Hiragino Kaku Gothic ProN',Helvetica, Meiryo, sans-serif;
	line-height: 1.5;
	word-wrap: break-word;
	box-sizing: border-box;
	display: block;
}
.cstmreba a {
	-webkit-transition: 0.8s ;
	transition: 0.8s ;
	color:#285EFF; /* テキストリンクカラー */
}
.cstmreba a:hover {
	color:#FFCA28; /* テキストリンクカラー(マウスオーバー時) */
}
.booklink-box, .kaerebalink-box, .tomarebalink-box {
	width: 100%;
	background-color: #fff; /* 全体の背景カラー */
	overflow: hidden;
	border-radius: 1px;
	box-sizing: border-box;
	padding: 20px;
    border: 6px double #ddd;
}
/* サムネイル画像ボックス */
.booklink-image,
.kaerebalink-image,
.tomarebalink-image {
	width:150px;
	float:left;
	margin:0 14px 0 0;
	text-align: center;
	background: #fff;
}
.booklink-image a,
.kaerebalink-image a,
.tomarebalink-image a {
	width:100%;
	display:block;
}
.booklink-image a img, .kaerebalink-image a img, .tomarebalink-image a img {
	margin:0 ;
	padding: 0;
	text-align:center;
	background: #fff;
}
.booklink-info, .kaerebalink-info, .tomarebalink-info {
	overflow:hidden;
	line-height:170%;
	color: #333;
}
/* infoボックス内リンク下線非表示 */
.booklink-info a,
.kaerebalink-info a,
.tomarebalink-info a {
	text-decoration: none;
}
/* 作品・商品・ホテル名 リンク */
.booklink-name>a,
.kaerebalink-name>a,
.tomarebalink-name>a {
	border-bottom: 1px solid ;
	font-size:16px;
}
/* powered by */
.booklink-powered-date,
.kaerebalink-powered-date,
.tomarebalink-powered-date {
	font-size:10px;
	line-height:150%;
}
.booklink-powered-date a,
.kaerebalink-powered-date a,
.tomarebalink-powered-date a {
	color:#333;
	border-bottom: none ;
}
.booklink-powered-date a:hover,
.kaerebalink-powered-date a:hover,
.tomarebalink-powered-date a:hover {
	color:#333;
	border-bottom: 1px solid #333 ;
}
/* 著者・住所 */
.booklink-detail, .kaerebalink-detail, .tomarebalink-address {
	font-size:12px;
}
.kaerebalink-link1 div img, .booklink-link2 div img, .tomarebalink-link1 div img {
	display:none !important;
}
.booklink-link2 {
	display: inline-block;
	width: 100%;
	margin-top: 5px;
}
.booklink-link2>div,
.kaerebalink-link1>div,
.tomarebalink-link1>div {
	float:left;
	width:24%;
	min-width:128px;
	margin:2px 5px;
}
/***** ボタンデザインここから ******/
.booklink-link2 a,
.kaerebalink-link1 a,
.tomarebalink-link1 a {
	width: 100%;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
	margin: 1px 0;
	padding:3% 0.5%;
	border-radius: 3px;
	font-size: 13px;
	font-weight: bold;
	line-height: 180%;
	color: #fff;
}

.kaerebalink-link1 a:after {
    content:'で見る' !important;
}

.shoplinka8 a:after {
	font-family: 'Font Awesome 5 Free' !important;
    content: '\f35d' !important;
    font-size: 0.9em !important;
    margin: 0 3px 0 2px !important;
}

.o_kaereba .price {
    font-size: 15px;
    color: #666;
    letter-spacing: .05em;
}

/* カエレバ */
.kaerebalink-link1 .shoplinkyahoo a {background:#ff0033; border: 2px solid #ff0033;} /* Yahoo!ショッピング */
.kaerebalink-link1 .shoplinkbellemaison a { background:#84be24 ; border: 2px solid #84be24;}	/* ベルメゾン */
.kaerebalink-link1 .shoplinkcecile a { background:#8d124b; border: 2px solid #8d124b;} /* セシール */
.kaerebalink-link1 .shoplinkkakakucom a {background:#314995; border: 2px solid #314995;} /* 価格コム */
/* カエレバ・ヨメレバ共通 */
.kaerebalink-link1 .shoplinkamazon a, .booklink-link2 .shoplinkamazon a {
	background:#e6aa5c;
	border: 2px solid #e6aa5c;
} /* Amazon */
.kaerebalink-link1 .shoplinkrakuten a, .booklink-link2 .shoplinkrakuten a {
	background: #e37e7b;
	border: 2px solid #e37e7b;
} /* 楽天 */
.kaerebalink-link1 .shoplinkseven a, .booklink-link2 .shoplinkseven a {
	background:#225496;
	border: 2px solid #225496;
} /* 7net */
/****** ボタンカラー ここまで *****/

/***** ボタンデザイン　マウスオーバー時ここから *****/
.booklink-link2 a:hover,
.kaerebalink-link1 a:hover,
.tomarebalink-link1 a:hover {
	background: #fff;
    color: #666 !important;
}

/* カエレバ */
.kaerebalink-link1 .shoplinkyahoo a:hover {color:#ff0033;} /* Yahoo!ショッピング */
.kaerebalink-link1 .shoplinkbellemaison a:hover { color:#84be24 ; }	/* ベルメゾン */
.kaerebalink-link1 .shoplinkcecile a:hover { color:#8d124b; } /* セシール */
.kaerebalink-link1 .shoplinkkakakucom a:hover {color:#314995;} /* 価格コム */
/* カエレバ・ヨメレバ共通 */
.kaerebalink-link1 .shoplinkamazon a:hover, .booklink-link2 .shoplinkamazon a:hover {
	color:#FF9901; } /* Amazon */
.kaerebalink-link1 .shoplinkrakuten a:hover , .booklink-link2 .shoplinkrakuten a:hover {
	color: #bf0000; } /* 楽天 */
.kaerebalink-link1 .shoplinkseven a:hover, .booklink-link2 .shoplinkseven a:hover {
	color:#225496;} /* 7net */
/***** ボタンデザイン　マウスオーバー時ここまで *****/
.booklink-footer {
	clear:both;
}

.o_kaereba,
.yyi-rinker-contents,
.booklink-box, .kaerebalink-box, .tomarebalink-box{
    width: 100%;
    margin: 36px 0;
    background-color: #fff;
    overflow: hidden;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #ccc !important;
}

.yyi-rinker-contents {
    box-shadow: none !important;
}

.yyi-rinker-title {
    margin-bottom: 15px;
}

div.yyi-rinker-detail .credit {
    display: none;
}

div.yyi-rinker-contents div.yyi-rinker-detail {
    padding-left: 0 !important;
}

div.yyi-rinker-contents div.yyi-rinker-detail .price-box .price {
    font-size: 15px;
    color: #666;
    letter-spacing: .05em;
}

div.yyi-rinker-contents div.yyi-rinker-detail .price-box .price_at {
    font-size: 10px;
}

div.yyi-rinker-contents div.yyi-rinker-detail,
div.yyi-rinker-contents div.yyi-rinker-detail a{
    color: #ddd !important;
}

div.yyi-rinker-contents div.yyi-rinker-title a {
    font-weight: bold;
}

div.yyi-rinker-contents ul.yyi-rinker-links {
    padding: 0 !important;
}

div.yyi-rinker-contents ul.yyi-rinker-links li {
    padding: 3px 0 !important;
}

div.yyi-rinker-contents ul.yyi-rinker-links li a {
    font-size: 13px !important;
}

div.yyi-rinker-contents ul.yyi-rinker-links li.amazonlink {
    background: #e6aa5c !important;
}

div.yyi-rinker-contents ul.yyi-rinker-links li.rakutenlink {
    background: #e37e7b !important;
}

.o_over {
    overflow: hidden;
}

.o_kaereba a {
    line-height: 170%;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: bold;
}

.o_kaereba a:hover {
    text-decoration: underline !important;
}

.o_img {
        width: 150px;
    float: left;
    margin: 0 14px 0 0;
    text-align: center;
    background: #fff;
}

.o_img a::after {
    display: none;
}

.kaerebalink-link1 .shoplinkelle a,
.booklink-link2 .shoplinkelle a {
	background: #f09199;
	border: 2px solid #f09199;
}

.kaerebalink-link1 .shoplinkelle a:hover ,
.booklink-link2 .shoplinkelle a:hover {
    background: #fff;
    color: #666 !important;
}

.kaerebalink-link1 .shoplinka8 a,
.booklink-link2 .shoplinka8 a {
	background: #f09199;
	border: 2px solid #f09199;
}

.shoplinka8 {
    width: 60% !important;
}

.kaerebalink-link1 .shoplinka8 a:hover ,
.booklink-link2 .shoplinka8 a:hover {
    background: #fff;
    color: #666 !important;
}

span.a8ad a::after {
    display: none;
}


/* =========== ##ページ送り =========== */

.page-nav {
    width: 100%;
    height: auto;
    margin: 50px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-numbers {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #f8f8f8;
    font-family: 'Montserrat',sans-serif;
    font-size: 14px;
    line-height: 50px;
    color: #666;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    border-radius: 2px;
}

.page-numbers:hover {
    background: #666;
    color: #fff;
}

.page-nav .current {
    background: #666;
    color: #fff;
}

.page-nav .next,
.page-nav .prev {
    color: #444;
    box-sizing: border-box;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

.page-nav .pn-info {
    font-size: 14px;
    color: #aaa;
}

.page-nav .next {
    margin-left: auto;
}

.page-nav .prev {
    margin-right: auto;
}

.page-nav .next:hover,
.page-nav .prev:hover{
    color: #666;
}

.page-nav .dots {
    background: #fff;
}

.page-nav .dots:hover {
    color: #666;
}

.latest-posts {
    margin-top: 10px;
    margin-bottom: 40px;
}


/* =========== #フッター =========== */

.footer_category {
    width: auto;
    height: auto;
    margin-right: 20px;
    font-size: 14px;
}

.footer_category p {
    border-bottom: 1px solid #333;
    width: 100%;
    margin: 0;
}

.footer_cat1 {
    width: auto;
    max-width: 130px;
    height: auto;
    margin-right: 20px;
    box-sizing: border-box;
    line-height: 1.9em;
}

.footer_cat1 a {
    display: block;
    color: #333;
}

.footer_cat1 a:hover {
    text-decoration: underline;
}

.initial {
    font-weight: bold;
    color: #999;
    margin-top: 6px !important;
    text-decoration: none;
    border-bottom: 0 !important;
}

.cat_parent {
    margin-top: 10px;
}

.cat_child:before {
    font-family: "fontawesome";
    content: "\f105";
    font-size: .88em;
    margin-right: .3em;
    position: relative;
    top: -1px;
}

p.bland {
    margin-bottom: 10px;
}

.copyright {
    margin: 0;
    font-size: 12px;
    text-align: center;
    color: #999;
    display: block;
    background: #c6bdb4;
    padding: 10px 0;
}

.copyright a {
    color: #aaa;
}

.copyright a:hover {
    text-decoration: underline;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.kaerebalink-name img,
.kaerebalink-image img {
    width: auto !important;
    height: auto !important:
}

.category_name {
    width: 100%;
    height: auto;
    padding: 15px;
    margin-bottom: 30px;
    background: #fff;
    box-sizing: border-box;
}

.category_name p {
    margin: 0;
    line-height: 1.8em;
    letter-spacing: 0.05rem;
}

.tagTitle {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #999;
    padding-bottom: 8px;
    margin-bottom: 15px !important;
    color:#666 !important;
}

.tagDiscription {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    font-size: 14px;
    color: #999;
}

.tagDiscription img {
    vertical-align: middle;
    width: 100px;
    height: auto;
    margin-right: 10px;
    float: left;
}

.leftText {
    overflow: auto;
}


.kaerebalink-image a[target="_blank"]:after {
    content: none !important;
}

div.yyi-rinker-contents ul.yyi-rinker-links li {
    padding: 3px 15px !important;
    border-radius :3px !important;
    box-shadow: none !important;
}

#single table {
        margin: 1.5em 0;
    border: 2px solid #eee;
     border-collapse: collapse;
    width: 100%;
    height: auto;
    font-size: 15px;
}

#single table th, #single table td {
  border: solid 2px #eee;
  /*実線 1px 黒*/
}

#single table td {
    padding: 10px;
}

#single table p {
    margin-bottom: 0 !important;
}

#single br {
    display: none;
}

.pximg {
    width: auto !important;
}

.point-box {
    width: 80%;
    padding: 1em;
    margin: 2em auto;
    color: #232323;
    background: #ffebe9;
    border-radius: 2px;
    box-sizing: border-box;
}

.point-title {
    margin-bottom: 5px;
    color: #ff7d6e;
    font-size: 1.2em;
    font-weight: 700;
}

.point-title:before {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 3px 0 0;
    border-radius: 50%;
    background: #ff7d6e;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    content: "\f0eb";
}

.ref {
    display: table;
    position: relative;
    margin: 0 auto;
    width: 100%;
    border-radius: 1px;
}

.ref-article {
    margin: 1em 0;
    font-size: .95em;
    background: white;
    display: block;
    width: 99.5%;
    border: solid 2px #e5e5e5;
    text-decoration: none !important;
    color: #333 !important;
}

.ref-article:hover {
    background: #eee;
}

.ref-img {
    overflow: hidden;
    width: 100px;/* トリミングしたい枠の幅 */
    height: 100px;/* トリミングしたい枠の高さ */
    position: relative;
    display: table-cell;
    vertical-align:middle;
}

.ref-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
    max-width: none !important;
  height: 100% !important;
}

.ref-article .ref-title {
    display: table-cell;
    vertical-align: middle;
    padding: 0 1em;
}

.ref-title p {
    margin: 0 !important;
}

.ref-label {
    display: inline-block;
    font-size: 10px;
    background: #c6bdb4;
    color: #fff;
    padding: 3px 6px;
    margin-top: -15px;
    position: absolute;
    top: 40px;
}

#toc_container {
    width: 80% !important;
    height: auto;
    margin: 50px auto 1em;
    background: #f7f4f4 !important;
        border: none !important;
    box-sizing: border-box;
    border-radius: 1px;
}

#toc_container li, #toc_container ul {
    border: 0 !important;
}

#toc_container p.toc_title {
    color: #888;
    text-align: left !important;
    margin: 10px !important;
}

#toc_container p.toc_title:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f03a";
    color: #888;
    margin-right: 8px;
}

ul.toc_list {
    padding-left: 10px !important;
	width: 100% !important;
}

ul.toc_list ul {
    margin: 0 !important;
    padding: 0 !important;
}

ul.toc_list li a {
    color: #333;
    font-weight: bold;
}

ul.toc_list li ul li a {
    font-weight: normal;
    color: #999 !important;
}

ul.toc_list li ul li a:before,
.toc_widget_list li ul li a:before {
        padding-right: 5px;
    color: silver;
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    font-weight:900;
}

ul.toc_widget_list li ul {
    padding-left: 30px !important;
}

ul.toc_list li ul {
    padding: 0 0 0 20px !important;
}

#toc_container a {
    color: #666;
}

#toc_container span.toc_toggle {
    background: #ccc;
    color: #fff;
    font-size: 12px !important;
    padding: 3px 5px;
    border-radius: 2px;
    float: right;
}

#toc_container span.toc_toggle a {
    color: #fff;
}

span.toc_depth_1 {
    display: none;
/*
    display: inline-block;
    background: #887f7a;
    border-radius: 50%;
    line-height: 1.5em;
    width: 1.5em;
    height: 1.5em;
    font-weight: bold;
    text-align: center;
    color: #fff;
*/
}

span.toc_depth_2 {
    display: none;
}

.toc_list li a:before,
.toc_widget_list li a:before{
    font-family: 'Font Awesome 5 Free';
    content: "\f111";
    color: #887f7a;
    margin-right: 5px;
    font-weight: 500;
    font-size: 14px;
}

.related_img {
    width: auto !important;
}

.related_word {
    border-top: 1px solid #eee;
    margin-top: 80px;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.related_posts {
    border: 0 !important;
    overflow: hidden;
}

.border {
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 40px;
    margin-top: 40px;
}

/* 広告 */
.ttk-h2-before {
margin: 4em 0;
}

.ttk-article-bottom {
margin: 3em 0;
}

.ttk-ad-wrap {
text-align: center;
width: 100%;
}

.ttk-ad-label {
text-align: center;
font-size: .85em;
color: #555;
margin-bottom: .5em;
}

.ttk-ad-inner br {
display: none;
}

div.yyi-rinker-contents ul.yyi-rinker-links img, div.yyi-rinker-contents div.yyi-rinker-title img, div.yyi-rinker-contents div.yyi-rinker-image a + img {
    display: none !important;
}

.yyi-rinker-link:after {
    content: 'で見る';
}

.category-header {
    position: relative;
}

.category-header img {
    -webkit-filter: brightness(0.5);
     -moz-filter: brightness(0.5);
     -o-filter: brightness(0.5);
     -ms-filter: brightness(0.5);
    filter: brightness(0.5);
    width: 100%;
    border-radius: 1px;
	height: 300px;
	object-fit:cover;
}

.category-header .cat-over-name {
    position: absolute;
    top:50%;
    left:50%;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    padding-bottom: 10px;
    border-radius: 1px;
}

.category-page-category-list {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 20px !important;
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}
.category-page-category-list li {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 4px;
    text-decoration: none;
}

.category-page-category-list li a {
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

p.cate-article-head {
    text-align: center;
    font-weight: bold;
    margin-top: 3.5em;
    font-size: 18px;
}

p.cate-article-head:before,
p.cate-article-head:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f111";
    color: #887f7a;
    font-weight: 500;
    font-size: 14px;
}

p.cate-article-head:before {
    margin-right: 8px;
}

p.cate-article-head:after {
    margin-left: 8px;
}

#page_top,
#page_home{
  width: 55px;
  height: 55px;
  position: fixed;
  background: #887f7a;
  opacity: 0.7;
  border-radius: 50%;
    right: 2em;
}

#page_top{
  bottom: 6em;
}

#page_home {
  bottom: 2em;
}

#page_top a,
#page_home a{
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  text-decoration: none;
}
#page_top:hover,
#page_home:hover{
    opacity:1;
    transition: .3s;
}

#page_top a::before,
#page_home a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_home a::before {
    left:-2px;
}

#page_top a::before {
    content: '\f106';
}

#page_home a::before {
    content: '\f015';
}

.fa-calendar-check-o {
    font-weight: normal;
}

@import url(icomoon/style.css);
@import url(sp-style.css);