@charset "utf-8";
/*
Theme Name: pajolis
Theme URI:
Description:
Version:
Author:
Author URI:
*/

/*------------ 基本＆共通部スタイル / base_pc.css ------------*/
/*ヘッダーNEW*/
#header img {
	width: 100%;
}

#header.add .inner{/*アニメーション用*/
	padding:5px 0;

	}
#header.add .header_logobox{/*アニメーション用*/
	width:320px;
    margin-top: 20px;
	}
#header .gnav {
	/*margin-top:50px;*/
    transition:0.2s;
}
#header.add .gnav {/*アニメーション用*/
	/*margin-top:30px*/
}
#header .gnav ul {
	width: 420px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .gnav ul li {
	width: 60px;
}
#header .gnav ul li:nth-last-child(1) {
	width: 120px;
	margin-left: 5px;
}
.center_img{
	text-align:center;
	}
/*ヘッダーNEW*/
/*ヘッドラインデザイン*/
.headline h2 {
	font-weight: bold;
	font-size: 26px;
	padding-bottom: 4px;
	padding-left: 4px;
	border-bottom: 1px #222222 solid;
}
.headline h2 span {
	margin-left: 14px;
	font-size: 16px;
	color: #444444;
}
/*スライド*/
#slide {
	width: 100%;
	margin: 180px 0 60px;
}
/*ヘッダー調整*/
#wrapper {
	width: 1200px;
	margin: 180px auto 50px auto;
	overflow: hidden;
}
/*PCコンテンツ*/
#contents {
	width: 900px;
	margin-left: 40px;
	float: left;
}
/*以下コンテンツ一覧*/
#all_contents .all_article {
	margin-bottom: 10px;
}
#all_contents .all_article {
	width: 100%;
	display: flex;
	justify-content: space-between;
    margin-top: 40px;
}
#all_contents .all_article li {
	width: 150px;
}
#all_contents .all_shopping {
	display: flex;
	justify-content: start;
}
#all_contents .all_shopping li {
	width: 150px;
	margin-right: 25px;
}
/*▼以下フッター▼*/


#footer_01 .footer_contact {
	width: 600px;
}
#footer_01 h3 {
	width: 250px;
	border-radius: 10px;
	background: #0a1612;
	text-align: center;
	color: #FFF;
	margin-bottom: 20px;
}
#footer_01 .footer_imgbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer_01 .footer_contact p {
	margin-bottom: 15px;
}
#footer_01 .footer_contact img.footer_tell {
	margin-right: 15px;
}
#footer_01 .footer_member {
	width: 330px;
}
#footer_01 .footer_cal {
	width: 250px;
}
#footer_01 .footer_cal iframe {
	width: 250px;
	height: 210px;
}

#footer_02 img.footer_logo {
	width: 100%;
	margin-bottom: 20px;
}
#footer_02 a {
	color: #FFFFFF;
}
#footer_02 .f_navi_box {
	width: 20%;
}
#footer_02 .f_navi_box h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #FFFFFF;
}
#footer_02 .sitemap {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#footer_02 .f_navi_box ul li {
	line-height: 1.8;
}
#footer_02 address {
	font-style: normal;
	margin-bottom: 20px;
	color: #FFFFFF;
}
#footer_02 .icon_sns h3 {
	display: none;
}
#footer_02 .icon_sns ul {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
#footer_02 .icon_sns ul li {
	width: 16%;
    padding: 0 10px;
}
#footer_02 .icon_sns ul li img {
	width: 100%;
}
#footer small {
	display: block;
	text-align: center;
	padding: 10px 0;
	color: #FFF;
}
/*▼以下ページトップ用▼*/
.pagetop {
	display: block;
	position: fixed;
	bottom: -100px;
	right: 20px;
	z-index: 1001;
}
.pagetop:after {
	content: '';
	width: 20px;
	height: 20px;
	border: 0px;
	border-top: solid 1px #ffffff;
	border-right: solid 1px #ffffff;
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	position: absolute;
	top: 60%;
	left: 50%;
}
.pagetop a {
	display: block;
	width: 60px;
	height: 60px;
	background: #777777;
	opacity:0.7;
}
.pagetop:hover {
	opacity: 0.4;
	cursor: pointer;
}

/*▼以下左サイトアコーディオン▼*/
#leftside .accordion {
	width: 220px;
}
#leftside .accordion h4 {
	padding: 10px;
	border-bottom: 1px solid #ccc;
	position: relative;
	line-height: 30px;
}
#leftside .accordion h4:hover {
	cursor: pointer;
	text-decoration: underline;
}
#leftside .accordion ul {
	display: none;
}
#leftside .accordion ul li {
	border-bottom: 1px #ccc solid;
}
#leftside .accordion ul li a {
	display: block;
	line-height: 30px;
	padding: 10px 10px 10px 20px;
}
#leftside .accordion a:hover {
}
#leftside .accordion h4:after {
	content: "";
	width: 1px;
	height: 11px;
	background: #CCC;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
#leftside .accordion h4:before {
	content: "";
	width: 11px;
	height: 1px;
	background: #CCC;
	position: absolute;
	right: 11px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
#leftside .accordion h4.open:after {
	transform: translateY(-10px);
	opacity: 0;
}
#leftside .menu {
	cursor: pointer;
}
#leftside .sns_leftside h3{
	background: #0a1612;
	color: #FFF;
	margin-bottom: 10px;
	padding:4px;
	}
#leftside .sns_leftside ul {
	display: flex;
	justify-content: space-around;
	align-items: center;

}
#leftside .sns_leftside ul li {
	float: left;
	vertical-align: middle;
	width: 20%;
	padding: 1%;
}
#leftside .sns_leftside ul li img{
max-width: 36px;
}
/*▼以下左サイド　ピックアップバナー▼*/
#banner_leftside h3{
	background: #0a1612;
	color: #FFF;
	margin: 40px 0 10px;
	padding: 4px;
}
#banner_leftside ul li{
	margin: 8px 0;
}

/*▼以下右サイド▼*/
#rightside {
	width: 200px;
	float: right;
}
#rightside .banner_rightside li {
	margin-bottom: 20px;
}
#rightside .ranking {
	margin-bottom: 50px;
}
#rightside .ranking h3 {
	text-align: center;
	font-size: 18px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #222222;
}
#rightside .ranking h3 i {
	margin-bottom: 5px;
}
#rightside .ranking h3 img {
	width: 30px;
}
/*▼CMS用▼*/
#rightside .wpp-list li {
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}
#rightside .wpp-list li img {
	width: 100%;
}
#rightside .wpp-list li:before {
	position: absolute;
	left: 5px;
	top: 0;
	z-index: 3;
	color: #FFF;
}
#rightside .wpp-list li:nth-of-type(1):before {
	content: "1";
}
#rightside .wpp-list li:nth-of-type(2):before {
	content: "2";
}
#rightside .wpp-list li:nth-of-type(3):before {
	content: "3";
}
#rightside .wpp-list li:after {
	content: "";
	position: absolute;
	left: -25px;
	top: -25px;
	width: 50px;
	height: 50px;
	background: #222;
	transform: rotate(45deg);
	z-index: 2;
}
/*------------ ECトップ ------------*/
/*▼以下コンテンツボタンデザイン▼*/
.button {
	width: 130px;
	height: 40px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.button:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: #222222;
}
.button:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #222222;
}
.button a {
	position: absolute;
	display: block;
	right: 3px;
	bottom: 3px;
	width: 100%;
	height: 100%;
	border: 1px solid #222222;
	transition: 0.2s;
	text-decoration: none;
	line-height: 40px;
}
.button a:hover {
	background: #222222;
	color: #FFFFFF;
}
.button a:active {
	right: 0px;
	bottom: 0px;
}
/*▼以下新着情報▼*/
#news_banner {
	margin-bottom: 55px;
}
#news {
	margin-bottom: 50px;
}
.newscontents {
    margin-top: 45px;
}

#news .newscontents ul li {
	line-height: 2.4;
	padding-left: 20px;
}
#news .newscontents ul li time {
	width: 80px;
	margin-right: 5px;
}
#news .newscontents ul li {
	border-bottom: 1px solid #F4F4F4;
}
/*▼以下人気商品＿タブパネル▼*/
#picup {
	margin-bottom: 55px;
}
#tab {
	margin-bottom: 55px;
}
#tab ul {
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
}
#tab ul li {
}
.tabbutton {
	width: 105px;
	padding: 7px;
	border: 1px solid #222222;
	cursor: pointer;
	outline: none;
	appearance: none;
	border-radius: 20px;
	margin: 0 10px;
	background: transparent;
}
.tabPanel {
	display: flex;
}
.tabPanel img {
	width: 200px;
	margin: 0 15px;
}
#tab_contents {
	padding: 0 15px;
}
.is-active {
	background: #222222;
	color: #FFF;
}
.tabPanel {
	display: none;
}
/*記事エリア*/
.column1 {
    margin-top: 45px;
}
.column1-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column1-box li {
    max-width: 230px;
    padding-bottom: 30px;
}
.column1-box li img {
    max-width: 230px;
}
.column1-size {
    font-size: 13px;
}
.column-day {
    font-size: 10px;
    font-weight: bold;
    padding: 1px 8px;
    margin: 0px 4px 0 0;
    color: #331515;
    background: #fff;
    border: solid 1px #331515;
    border-radius: 4px;
    vertical-align: middle;
}
.display-non {
    display: none;
}
/*記事エリア*/

/*▼以下新着記事と新商品▼*/
#column2 {
	margin-bottom: 55px;
	display: flex;
	justify-content: space-between;
}
.column2_left {
	width: 350px;
}
.article_cover article {
	margin-bottom: 20px;
}
.article_cover article time {
	font-size: 10px;
}
.column2_left img {
	float: left;
	margin-right: 10px;
	max-width: 150px;
}
.column2_left .article_box {
	width: 190px;
	float: right;
}
.column2_right {
	width: 350px;
}
.column2_right .item_cover article {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}
.column2_right .item_cover img {
	width: 100px;
	margin-right: 10px;
}
.column2_right .item_box {
	width: 240px;
}
#coverstory {
	margin-bottom: 55px;
}
.column3 {
    margin-top: 45px;
}
#coverstory .column3 img {
	width: 230px;
}
#coverstory .column3 ul {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}
#coverstory .column3 ul li {
	width: 230px;
	margin: 0 5px;
}
#coverstory .column3 ul li span {
	display: block;
	/*text-align: center;*/
}
/*▼以下DIY写真▼*/
#diy {
	margin-bottom: 55px
}
/*▼以下おすすめ商品▼*/

#recommend ul li {
	margin-bottom: 24px;
}
.recommend-cat {
    margin-top: 45px;
}

/*▼以下シーン提案▼*/
/*#proposedscene {
	margin-bottom: 55px;
}*/
#proposedscene .column2 {
	width: 350px;
	float: left;
	margin: 5px;
	margin-bottom: 30px;
}
#proposedscene .column2_cat{
    margin-top: 45px;
}
#proposedscene .column2 h3 {
	background: #d7d7d7;
    font-weight: bold;
	padding: 5px;
	margin-bottom: 24px;
	text-align: center;
}
#proposedscene .column2_box {
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 16px;
	margin-bottom: 16px;
}
#proposedscene .column2_box:nth-child(2) {
	border-bottom: none;
}
#proposedscene .column2_box img {
	float: left;
	max-width: 150px;
	width: 100%;
}
#proposedscene .column2_box p {
	float: right;
	width: 190px;
}

/*------------ youtube項目 ------------*/
#yt-video {
    padding-bottom: 60px;
}

#yt-video .fs-pt-column__heading {
    font-size: 15px;
}

#yt-video .fs-pt-column__description {
    font-size: 14px;
}


/*------------ 読みものトップ ------------*/

/*コンテンツ部*/
#contents_top {
	width: 720px;
	margin: 0 30px;
	float: left;
}
.new_entry_title {
	font-size: 14px;
}
.home_area {
	margin-bottom: 40px;
}
.home_area section {
	width: 720px;
}
.home_area section .thumb_box {
}
.home_area section .thumb_box img {
	width: 720px;
	height: auto;
	margin-bottom: 5px;
}
.block-list {
	margin-right: -20px;
	overflow: hidden;
	font-size: 0;
}
.block-list .bunki, .block-list .bunki2 {
	margin-bottom: 40px;
	width: 350px;
	display: inline-block;
	margin-right: 20px;
	padding: 0;
	vertical-align: top;
}
.block-list .bunki .thumb_box img, .block-list .bunki2 .thumb_box img {
	width: 350px;
	height: auto;
	margin-bottom: 5px;
}
.pager {
	margin-top: 50px;
	text-align: center;
}
.pager a {
	display: inline-block;
}
.pager .page-numbers {
	border: 1px #CEC1C1 solid;
	padding: 5px 10px;
}
.pager .current {
	background-color: #F9F4F4;
}
.entry_box .meta-time, .bunki .meta-time, .bunki2 .meta-time {
	font-size: 12px;
	color: #998A8A;
}
/*------------ 読みもの記事ページ ------------*/

/*パンくず*/
.pankuzu {
	font-size: 12px;
	text-align: left;
	padding:5px;
}
.pankuzu a {
	text-decoration: none;
}
.pankuzu a:hover {
	text-decoration: underline;
}
div#breadcrumb {
	clear: both;
}
div#breadcrumb div {
	display: inline;
	font-size: 12px;
}
cite {
}
cite:before {
	content: "出典："
}
#contents_page {
	width: 720px;
	margin-left: 30px;
	float: left;
}
#contents_page a {
	color: #703939;
	text-decoration: none;
}
#contents_page a:hover {
	color: #705E5D;
	text-decoration: underline;
}
#contents_page img {
	text-align: center;
}
#contents_page h1 {
	font-size: 22px;
	font-weight: bold;
}
#contents_page h2 {
	font-size: 20px;
	font-weight: bold;
	margin: 30px 0 10px;
}
#contents_page h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 30px 0 0 0;
}
#contents_page h2.headline_search {
	margin: 0 0 20px 0;
}
/*-------------記事内表示設定-------------*/

.meta_box {
	border-top: 1px #F9F4F4 solid;
	border-bottom: 1px #F9F4F4 solid;
	overflow: hidden;
	margin: 30px 0;
	padding: 10px;
}
.meta_box span {
	margin-left: 10px;
	float: right;
	text-align: right;
	color: #331515 !important;
}
.meta_box a {
	text-decoration: none !important;
	color: #331515 !important;
}
.meta-time:before {
	content: "\f303";
	font: normal 16px Genericons;
	top: 3px;
	margin-right: 5px;
	position: relative;
}
.meta-cate:before {
	content: "\f302";
	font: normal 16px Genericons;
	top: 3px;
	margin-right: 5px;
	position: relative;
}
.meta-author:before {
	content: "\f304";
	font: normal 16px Genericons;
	top: 3px;
	margin-right: 5px;
	position: relative;
}
.button_sns {
	margin: 0;
	padding: 0;
	line-height: 1.0;
}
.button_sns div, .button_sns a {
	vertical-align: top;
}
div.edit {
	font-size: 12px;
	text-align: right;
	margin: 0;
	padding: 0;
}
#relations {
	margin-top: 50px;
}
#relations h3 {
	font-size: 26px;
	margin-bottom: 8px;
}
#relations .headline_border {
	height: 6px;
	margin-bottom: 20px;
	-webkit-background-size: 6px 6px;
	-moz-background-size: 6px 6px;
	background-size: 6px 6px;
	background-color: #ffffff;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #f4f4f4), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #f4f4f4), color-stop(.75, #f4f4f4), color-stop(.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(-45deg, #f4f4f4 25%, transparent 25%, transparent 50%, #f4f4f4 50%, #f4f4f4 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(-45deg, #f4f4f4 25%, transparent 25%, transparent 50%, #f4f4f4 50%, #f4f4f4 75%, transparent 75%, transparent);
	background-image: -ms-linear-gradient(-45deg, #f4f4f4 25%, transparent 25%, transparent 50%, #f4f4f4 50%, #f4f4f4 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(-45deg, #f4f4f4 25%, transparent 25%, transparent 50%, #f4f4f4 50%, #f4f4f4 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #f4f4f4 25%, transparent 25%, transparent 50%, #f4f4f4 50%, #f4f4f4 75%, transparent 75%, transparent);
}
#relations .related_post_title {
	display: none;
	margin: 0;
	padding: 0;
}
#relations ul {
	margin-top: 0 !important;
	margin-right: -15px !important;
	padding: 0 !important;
	overflow: hidden !important;
}
#relations ul li {
	width: 230px !important;
	display: inline-block !important;
	margin-top: 0 !important;
	margin-right: 15px !important;
	padding: 0 !important;
	vertical-align: top !important;
}
#relations ul li img {
	width: 230px !important;
	height: auto !important;
	margin-bottom: 10px !important;
}
#contents_page .like-box {
	padding: 30px 10px;
	border: 1px solid #969696;
	margin-bottom: 10px;
	border-radius: 5px;
}
#contents_page .like-box img {
	width: 240px;
	height: auto;
	margin-right: 20px;
	float: left;
}
#contents_page .like-box .title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
#contents_page .sns-box {
}
#contents_page .sns-box a {
	display: inline-block;
	margin: 30px 10px;
}
hr {
	height: 1px;
	border: none;
	border-top: 1px #CEC1C1 dotted;
	margin-bottom: 30px;
}
/*-------画像----------------------*/

#article_body p {
	margin-top: 5px;
	margin-bottom: 15px;
	padding: 0;
}
#article_body p img {
	display: block;
	max-width: 100% !important;
	height: auto;
	margin: 0;
}
#article_body p.single-i img {
	width: 720px;
	height: auto;
	margin: 20px 0;
	padding: 0;
}
#article_body p {
	margin-top: 5px;
	margin-bottom: 15px;
	padding: 0;
}
#article_body .alignright {
	float: right;
	margin: 5px 0 5px 20px;
}
#article_body .alignleft {
	float: left;
	margin: 5px 20px 5px 0;
}
#article_body .aligncenter {
	display: block;
	margin: 5px auto 5px;
}
#article_body img.float-left {
	float: left;
	margin: 5px 20px 5px 0;
}
#article_body img.float-right {
	float: right;
	margin: 5px 0 5px 20px;
}
#contents_page .wp-caption-text {
	margin: 0;
}
/*--------------ブログカードのスタイル--------------*/

.blog-card {
	padding: 20px;
	margin: 10px 0;
	border: 1px solid #CEC1C1;
	word-wrap: break-word;
	max-width: 100%;
	/*width:474px;*/
	border-radius: 5px;
}
.blog-card-thumbnail {
	float: left;
}
.blog-card-content {
	margin-left: 130px;
	line-height: 120%;
}
.blog-card-title {
	margin-bottom: 20px;
}
.blog-card-title a {
	font-weight: bold;
	text-decoration: none;
}
.blog-card-excerpt {
	font-size: 90%;
}
.blog-card-footer {
	font-size: 70%;
}
.clear {
	clear: both;
}
iframe.wp-embedded-content {
	width: 100%;
	height: 183px;
}
blockquote.wp-embedded-content {
	display: none;
}
/*--------------記事内関連商品--------------*/
iframe.itemcard {
	width: 350px;
	height: 122px;
	padding: 0;
	display: inline-block;
	vertical-align: top;
}
#related-item {
	/*margin-top:40px;*/
	font-size: 0;
}
#related-item .title {
	width: 265px !important;
	height: auto !important;
	margin-top: 40px;
}
#related-item img {
	margin-bottom: 10px !important;
}
#related-item p {
	margin: 0 !important;
	padding: 0 !important;
}
#related-item iframe.itemcard {
	margin-bottom: 10px;
}
#related-item iframe.itemcard:nth-of-type(even) {
	margin-left: 15px;
}
/*iframe.itemcard:last-of-type {
	margin-bottom:40px;
}*/

/*記事内引用*/
blockquote {
	background-color: #eee;
	padding: 2em 3em 1em;
	position: relative;
	margin: 5px 0 15px;
}
blockquote:before {
	content: "“";
	font-size: 600%;
	line-height: 1em;
	font-family: Times New Roman, "ＭＳ Ｐゴシック", sans-serif;
	color: #ccc;
	position: absolute;
	left: 0;
	top: 0;
}
blockquote:after {
	content: "”";
	font-size: 600%;
	line-height: 0em;
	font-family: Times New Roman, "ＭＳ Ｐゴシック", sans-serif;
	color: #ccc;
	position: absolute;
	right: 0;
	bottom: 0;
}
/*リンクボタン*/
.link-button {
	text-align: center;
}
#article_body p.link-button a {
	background-color: #ff9933;
	border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	padding: 10px 30px 10px;
	text-decoration: none;
	color: #fff;
}
#article_body p.link-button a:hover {
	background-color: #FC0;
	color: #333;
}
.link-button a {
	color: #333;
}
/*記事内カート*/
/*.wp-fs-cart img {
	width: 150px;
	float: left;
	margin-right: 20px;
	padding: 5px;
	border: solid 3px #cec1c1;
}
#article_body div.wp-fs-cart p {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.wp-fs-cart span.FS2_special_price, .wp-fs-cart span.FS2_itemPrice_addition {
	font-size: 12px;
}
.wp-fs-cart span.itemPrice {
	color: #701418;
	font-weight: bold;
	padding: 0 5px 0;
}
.wp-fs-button input {
	width: 220px;
	height: 40px;
	background-image: url(https://www.pajolis.com/shop/item/paintshop/design/template03/btn/InCartButton.gif);
	border: none;
	margin-bottom: 20px;
}
.wp-fs-cart {
	display: block;
	min-height: 166px;
}*/
/*ウィジェット用*/
.widget_add img {
	width: 100%;
}
.widget_add ul li {
	margin-bottom: 20px;
}
.widget_add_single img {
	width: 100%;
}

/*インスタグラム用*/

.insta-imges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 60px;
}
.insta {
    padding-bottom: 60px;
}


/*フッターSNS用*/
.sns-cate {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sns-tag {
    width: 33.333%;
    padding: 2px;
}