/*
Theme Name: StuOne Blog
Author: Studio One Fukuda
Author URI: http://www.studio-one.co.jp
Description: スタワン専用ブログテーマ
*/


input,
textarea,
select,
button {
	box-sizing: border-box;
	font-size: 1.6rem; /* 16px */
	line-height: 1.4;
}
input,
textarea,
.select select,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="search"], 
textarea {
	width: 100%;
	padding: 7px 10px;
	border: 1px solid #d8d6d0;
	border-radius: 4px;
}

input[type="file"] {
	max-width: 100%;
	cursor: pointer;
	vertical-align: middle;
	overflow: hidden;
}

.select {
	position: relative;
	border: 1px solid #d8d6d0;
	border-radius: 4px;
	background: #fff;
}
.select::before {
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 15px;
	height: 15px;
	margin-top: -12px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	content: "";
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.select select {
	position: relative;
	width: 100%;
	padding: 7px 10px;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 10;
}
.select select::-ms-expand { /* IE対策 */
	display: none;
}
.select option {
	line-height: 1;
}

ul.radio, 
ul.check {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -5px 0;
	font-size: 1.6rem; /* 16px */
}
.radio li, 
.check li {
	position: relative;
	list-style-type: none;
}
.radio input, 
.check input {
	position: absolute;
	opacity: 0;
}
.radio label, 
.check label {
	position: relative;
	padding: 10px 10px 10px 35px;
	cursor: pointer;
}
.radio label::before, 
.check label::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 16px;
	height: 16px;
	margin-top: -10px;
	border: 2px solid #999;
	background: #fff;
	content: "";
}
.radio label::before {
	border-radius: 50%;
}
.check label::before {
	border-radius: 4px;
}
.radio label::after, 
.check label::after {
	display: block;
	position: absolute;
	opacity: 0;
	top: 50%;
	left: 0;
	content: "";
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
.radio label::after {
	width: 10px;
	height: 10px;
	margin: -5px 0 0 15px;
	border-radius: 50%;
	background: #a57f58;
}
.check label::after {
	width: 5px;
	height: 10px;
	margin: -10px 0 0 17px;
	border-right: 5px solid #a57f58;
	border-bottom: 5px solid #a57f58;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type="radio"]:checked + label::after, 
input[type="radio"]:checked + input + label::after, 
input[type="checkbox"]:checked + label::after, 
input[type="checkbox"]:checked + input + label::after {
	opacity: 1;
}

textarea {
	width: 100% !important;
	height: auto !important;
}

button {
	-webkit-transition: all ease .3s; /* Safari */
	transition: all ease .3s;
	padding: 10px;
	border: 0;
	border-radius: 4px;
	font-size: 1.8rem; /* 18px */
	text-align: center;
	cursor: pointer;
}


/*======================================================================*
 *  [ blogWrap / blogInner ] 
 *======================================================================*/

.blogWrap {
	padding: 40px 25px;
	background: #f7f6f3;
	text-align: center;
}

.blogInner {
	display: -webkit-flex;
	display: flex;
	max-width: 980px;
	margin: 0 auto;
	text-align: left;
}


/*======================================================================*
 *  [ blogMain | メインコンテンツ ] 
 *======================================================================*/

.blogMain {
	width: 75%;
	margin-bottom: 50px;
	padding-right: 10px;
	box-sizing: border-box;
}


/*======================================================================*
 *  [ page-header | 記事（一覧用） ] 
 *======================================================================*/

.blogMain .page-header {
	margin-bottom: 40px;
	padding: 15px 20px;
	background: #efe8e0;
}

.blogMain .page-header h1 {
	color: #966731;
	font-size: 1.8rem; /* 18px */
	font-weight: normal;
	text-align: center;
}
.blogMain .page-header p {
	margin-top: 15px;
}


/*======================================================================*
 *  [ listType | 記事（一覧用） ] 
 *======================================================================*/

article.listType {
	position: relative;
	margin-bottom: 20px;
	background: #fff;
	font-size: 1.4rem; /* 14px */
}
article.listType::before, 
article.listType::after {
	position: absolute;
	width: 17px;
	height: 17px;
	content: "";
}
article.listType::before {
	top: -5px;
	left: -5px;
	border-top: 8px solid #ded1c1;
	border-left: 8px solid #ded1c1;
}
article.listType::after {
	right: -5px;
	bottom: -5px;
	border-right: 8px solid #ded1c1;
	border-bottom: 8px solid #ded1c1;
}
article.listType:hover::before, 
article.listType:hover::after {
	border-color: #c0a493;
}

article.listType a {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
	padding: 20px;
	color: #464646;
	text-decoration: none;
}

/* [ ヘッダー ] */
article.listType .entry-header {
	margin-bottom: 15px;
}
article.listType .entry-header time {
	color: #999;
}
article.listType .entry-header h2 {
	margin-top: 5px;
	font-size: 1.6rem; /* 16px */
	line-height: 1.2;
}
article.listType a:hover .entry-header h2, 
article.listType a:active .entry-header h2 {
	color: #966731;
	text-decoration: underline;
}

/* [ 内容 ] */
article.listType .entry-content {
	position: relative;
	width: 70%;
	padding-bottom: 30px;
}
article.listType .entry-content > p {
	line-height: 1.6;
}
article.listType .entry-content > span {
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	color: #966731;
	font-size: 1.2rem; /* 12px */
	font-weight: bold;
	text-align: right;
}
article.listType .entry-content .icon-more {
	width: 12px;
	height: 12px;
	margin-right: 5px;
	margin-bottom: 2px;
}

/* [ アイキャッチ ] */
article.listType .entry-eyechache {
	width: 30%;
	padding-right: 20px;
	box-sizing: border-box;
}


/*======================================================================*
 *  [ articleType | 記事（詳細用） ] 
 *======================================================================*/

article.articleType {
	position: relative;
	margin-bottom: 50px;
}
article.articleType + article.articleType {
	padding-top: 75px;
}
article.articleType + article.articleType::before {
	position: absolute;
	top: -.5em;
	width: 100%;
	color: #ded1c1;
	font-size: 3rem;
	text-align: center;
	content: "● ● ● ● ●";
}

/* [ ヘッダー ] */
article.articleType .entry-header {
	margin-bottom: 30px;
	line-height: 1.2;
}
article.articleType .entry-header .category, 
article.articleType .entry-header .date {
	display: inline-block;
	vertical-align: middle;
}
article.articleType .entry-header .category {
	padding: 3px 10px;
	background: #47302a;
	color: #fff;
	font-size: 1.2rem; /* 12px */
}
article.articleType .entry-header .date {
	color: #999;
	font-size: 1.4rem; /* 14px */
}
article.articleType .entry-header h2 {
	margin-top: 20px;
	font-size: 2.6rem; /* 26px */
	font-weight: normal;
}

/* [ アイキャッチ ] */
article.articleType .entry-eyechache {
	margin: 15px 0;
}

/* [ 中身 ] */
article.articleType .entry-content {
	margin-bottom: 30px;
	line-height: 1.6;
	overflow: hidden;
}
article.articleType .entry-content img {
	margin: 20px 0;
	width: auto;
	max-width: 100%;
}
article.articleType .entry-content img.aligncenter { display: block; margin: 20px auto; }
article.articleType .entry-content img.alignright  { float: right; margin: 20px 0 20px 20px; }
article.articleType .entry-content img.alignleft   { float: left; margin: 20px 20px 20px 0; }
article.articleType .entry-content p {
	margin: 15px 0;
}
article.articleType .entry-content p em {
	font-style: italic;
}
article.articleType .entry-content ul {
	list-style-type: none;
	margin: 20px;
}
article.articleType .entry-content ul li {
	padding-left: 1em;
	text-indent: -1em;
}
article.articleType .entry-content ul li + li {
	margin-top: 10px;
}
article.articleType .entry-content ul li:before {
	color: #966731;
	content: "● ";
}
article.articleType .entry-content ul[style] li {
	margin-left: 1em;
	padding-left: 0;
	text-indent: 0;
}
article.articleType .entry-content ul[style] li:before {
	display: none;
}
article.articleType .entry-content ol {
	margin: 20px 20px 20px 45px;
}
article.articleType .entry-content ol li + li {
	margin-top: 10px;
}
article.articleType .entry-content blockquote {
	padding: 20px;
	background: #fff;
}
article.articleType .entry-content blockquote p {
	margin: 0;
}
article.articleType .entry-content blockquote p + p {
	margin-top: 15px;
}
article.articleType .entry-content table, 
article.articleType .entry-content th, 
article.articleType .entry-content td {
	border: 1px solid #d8d6d0;
	box-sizing: border-box;
}
article.articleType .entry-content table {
	margin: 20px 0;
	max-width: 100%;
	border-collapse: collapse;
}
article.articleType .entry-content th, 
article.articleType .entry-content td {
	padding: 10px;
}
article.articleType .entry-content th {
	background: #ded1c1;
	color: #966731;
}

/* [ フッター ] */
article.articleType .entry-footer {
	color: #999;
	font-size: 1.2rem; /* 12px */
	line-height: 1.2;
}
article.articleType .entry-footer a {
	display: inline-block;
	color: #999;
	text-indent: 0;
}
article.articleType .entry-footer p {
	padding-left: 6em;
}
article.articleType .entry-footer p + p {
	margin-top: 5px;
}
article.articleType .entry-footer p.category {
	text-indent: -6em;
}
article.articleType .entry-footer p.tag {
	text-indent: -3em;
}
article.articleType .entry-footer .sns {
	text-align: right;
}
article.articleType .entry-footer p + .sns {
	margin-top: 10px;
}


/*======================================================================*
 *  [ page-numbers | ページネーション ] 
 *======================================================================*/

ul.page-numbers {
	margin: 50px 0;
	border: 1px solid #d8d6d0;
	text-align: center;
}
ul.page-numbers li, 
ul.page-numbers a, 
ul.page-numbers span {
	display: inline-block;
	padding: 5px;
}
ul.page-numbers a {
}
ul.page-numbers span {
	font-weight: bold;
}


/*======================================================================*
 *  [ not-found | Not found ] 
 *======================================================================*/

.pointBox.not-found {
}

/* [ テキスト ] */
.pointBox.not-found p {
	margin: 15px 0;
}

/* [ 検索フォーム ] */
.pointBox.not-found form {
	display: -webkit-flex;
	display: flex;
	width: 100%;
	margin: 15px 0;
}
.pointBox.not-found .search-form label {
	display: block;
	width: 80%;
	padding-right: 5px;
	box-sizing: border-box;
}
.pointBox.not-found .search-form .screen-reader-text {
	display: none;
}
.pointBox.not-found .search-submit {
	display: block;
	width: 20%;
	padding: 5px 10px;
	border: none;
	border-radius: 4px;
	background: #47302a;
	color: #fff;
	font-size: 1.4rem; /* 14px */
	cursor: pointer;
}
.pointBox.not-found .widget_search .search-submit:hover, 
.pointBox.not-found .widget_search .search-submit:active {
	background: #978580;
}


/*======================================================================*
 *  [ blogSide | サイドバー ] 
 *======================================================================*/

.blogSide {
	width: 25%;
	padding-left: 10px;
	box-sizing: border-box;
	font-size: 1.4rem; /* 14px */
	line-height: 1.2;
}
.blogSide section + section {
	margin-top: 50px;
}

/* [ 見出し ] */
.blogSide h3 {
	margin-bottom: 15px;
	font-size: 2rem; /* 20px */
	font-weight: normal;
	text-align: center;
}
.blogSide h3 span {
	display: inline-block;
	border-bottom: 1px solid #464646;
}

/* [ 共通 ] */
.blogSide .widget a {
	display: inline-block;
}
.blogSide .widget li {
	list-style-type: none;
}

/* [ 汎用：リスト ] */
.blogSide .widget > ul {
	border-top: 1px solid #d8d6d0;
}
.blogSide .widget > ul > li {
	padding: 12px 10px;
	border-bottom: 1px solid #d8d6d0;
}
.blogSide .widget > ul > li > ul {
	margin: 12px 0 0 10px;
}
.blogSide .widget > ul li a {
	text-decoration: none;
}
.blogSide .widget > ul li a:hover, 
.blogSide .widget > ul li a:active {
	text-decoration: underline;
}

/* [ 個別：不要なラベル ] */
.blogSide .widget .screen-reader-text {
	display: none;
}

/* [ 個別：普通のselect ] */
.blogSide .widget .screen-reader-text + select {
	width: 100%;
}

/* [ 個別：タグ ] */
.blogSide .widget_tag_cloud .tagcloud {
	text-align: center;
}

/* [ 個別：検索 ] */
.blogSide .widget_search .search-form {
	display: -webkit-flex;
	display: flex;
	width: 100%;
}
.blogSide .widget_search label {
	display: block;
	width: 80%;
	padding-right: 5px;
	box-sizing: border-box;
}
.blogSide .widget_search .screen-reader-text {
	display: none;
}
.blogSide .widget_search .search-submit {
	display: block;
	width: 20%;
	padding: 5px 10px;
	border: none;
	border-radius: 4px;
	background: #47302a;
	color: #fff;
	font-size: 1.4rem; /* 14px */
	cursor: pointer;
}
.blogSide .widget_search .search-submit:hover, 
.blogSide .widget_search .search-submit:active {
	background: #978580;
}

/* [ 個別：カレンダー ] */
.blogSide .widget_calendar table, 
.blogSide .widget_calendar th, 
.blogSide .widget_calendar td {
	box-sizing: border-box;
}
.blogSide .widget_calendar table {
	width: 100%;
	text-align: center;
	line-height: 2;
}
.blogSide .widget_calendar caption {
	color: #966731;
	font-weight: bold;
}
.blogSide .widget_calendar thead th, 
.blogSide .widget_calendar tbody td {
	border: 1px solid #d8d6d0;
}
.blogSide .widget_calendar thead th {
	color: #47302a;
	background: #d8d6d0;
}
.blogSide .widget_calendar tbody td {
	background: #fff;
}
.blogSide .widget_calendar a {
	display: block;
}

/* [ PHP：画像リスト ] */
.blogSide .execphpwidget .image {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blogSide .execphpwidget .image li {
	width: 50%;
}
.blogSide .execphpwidget .image li a {
	display: block;
}

/* [ PHP：リンクリスト ] */
.blogSide .execphpwidget .link {
	border-top: 1px solid #d8d6d0;
}
.blogSide .execphpwidget .link li {
	border-bottom: 1px solid #d8d6d0;
}
.blogSide .execphpwidget .link li a {
	display: block;
	padding: 12px 10px;
	color: #464646;
	text-decoration: none;
}
.blogSide .execphpwidget .link li a:hover, 
.blogSide .execphpwidget .link li a:active {
	background: #fff;
}


/*+ [ 768px 以下 ] +++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media screen and (max-width: 768px) {

/*======================================================================*
 *  [ blogWrap / blogInner ] 
 *======================================================================*/

.blogWrap {
	padding: 40px 20px;
}

.blogInner {
	display: block;
}


/*======================================================================*
 *  [ blogMain | メインコンテンツ ] 
 *======================================================================*/

.blogMain {
	width: 100%;
	padding: 0;
}


/*======================================================================*
 *  [ page-header | 記事（一覧用） ] 
 *======================================================================*/

.blogMain .page-header {
	margin: -40px -20px 40px -20px;
}

.blogMain .page-header h1 {
	font-size: 1.6rem; /* 16px */
}


/*======================================================================*
 *  [ blogSide | サイドバー ] 
 *======================================================================*/

.blogSide {
	width: 100%;
	padding: 0;
}

/* [ PHP：画像リスト ] */
.blogSide .execphpwidget .image li {
	width: 25%;
}


} /* */


/*+ [ 568px 以下 ] +++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media screen and (max-width: 568px) {

/*======================================================================*
 *  [ listType | 記事（一覧用） ] 
 *======================================================================*/

article.listType a {
	padding: 15px;
}

/* [ ヘッダー ] */
article.listType .entry-header {
	margin-bottom: 10px;
}

/* [ アイキャッチ ] */
article.listType .entry-eyechache {
	padding-right: 15px;
}


/*======================================================================*
 *  [ articleType | 記事（詳細用） ] 
 *======================================================================*/

article.articleType .entry-header h2 {
	font-size: 2.2rem; /* 22px */
}


/*======================================================================*
 *  [ blogSide | サイドバー ] 
 *======================================================================*/

/* [ PHP：画像リスト ] */
.blogSide .execphpwidget .image li {
	width: 33.33333333%;
}


} /* */

