/*
Theme Name: aimlog_イラストサイト
Description: aimlogサイト
Theme URI: aimlog.org
Author: aim
Version: 1.1.0
License: ライセンス
License URI: https://aimlog.org
*/

@charset "UTF-8";
/**
 * Clear fix
 */

.cf:before, .cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
 	*zoom: 1;
}

body {
	color: #444;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
	font-size: 16px;
	font-weight: 600;
	background: #eee;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

img[width="1"] {
	display: none;
}

img[width="0"] {
	display: none;
}

a {
	text-decoration: none;
	color: #444;
	cursor: pointer;
	transition: .3s;
}

a:hover {
	transition: .3s;
}

* {
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,div,p {
	line-height: 1.8;
	letter-spacing: 0.1em;
}

small {
	display: block;
	text-align: center;
	padding: 5px 0;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}

.profile-icon a,.pickup,.cate-right a,.column,.column-card {
	transition: .3s;
}

.profile-icon a:hover,.pickup:hover,.cate-right a:hover,.column:hover {
	-webkit-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	transform: translateY(-1px);
	box-shadow: 0 8px 25px -5px #ccc;
	transition: .3s;
}

.column-card:hover  {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px 0 #ccc;
	transition: .3s;
}

/*共通cssここまで*/


/*header.php*/
.header-wrap {
	width: 100%;
	background: #fff;
}

.logo {
	width: 150px;
	padding: 1em 0;
	margin: 0 auto;
}

/*ハンバーガーメニュー*/
.menu-btn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #fafafa;
	border-radius: 100px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #545454;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check {
	display: none;
}

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 80;
	background-color: #fafafa;
}
.menu-content ul {
	padding: 70px 30px 0;
}
.menu-content ul li {
	border-bottom: solid 1px #444;
	list-style: none;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	color: #444;
	text-decoration: none;
	padding: 25px 15px 26px 0;
	position: relative;
}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #444;
	border-right: solid 2px #444;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 36px;
}

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: #fafafa;
	transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
	left: 0;/*メニューを画面内へ*/
}
/*ハンバーガーメニュー終わり*/

/*index.php*/

/*mainビジュアル*/
.main-wrap {
	width: 100%;
	background: #fff;
}

.main-top {
	padding: 100px 0;
	margin: 0 auto;
}


.main-sub-top {
	padding: 100px 0;
	margin: 0 auto;
}

.main-cat {
	width: 100%;
}

.main-cat h2 {
	font-size: 40px;
	text-align: center;
	padding: 10px 0;
}

figure.main-sub-img {
	width: 60%;
	padding: 0 2%;
	margin: 0 auto;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
from {
		opacity: 0;
		transform: translateY(100px);
	}

to {
		opacity: 1;
		transform: translateY(0);
	}
}

.main {
	padding: 100px 0;
}

.main-content {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 40px 30px 30px;
	background: #fff;
	border-radius: 20px;
}

.pick-inner {
	position: absolute;
	top: -20px;
}

.pick-inner h2 {
	font-size: 25px;
}

.pickup {
	width: 98%;
	margin: 30px auto 0;
	background: #fff;
	/*padding: 15px;残しておく*/
	border-radius: 20px;
	box-shadow: 0 6px 20px -8px #ccc;
}

.pick-comment {
	margin: 0 auto;
}

.pickup a {
	background: #fafafa;
}

.pickup img {
	border-radius: 15px;
}

.pick-title {
	padding: 10px 0.5em 0;
	display: none;
}


/*mainカテゴリー*/
.main-cate {
	max-width: 98%;
	margin: 160px auto 0;
}

.cate-left {
	width: 95%;
	margin: 0 auto;
}

.cate-left-title span {
	font-size: 14px;
}

.cate-subtitle {
	font-size: 33px;
	margin: 10px 0 20px;
}

.cate-right {
	width: 95%;
	padding: 30px 15px 10px;
	border-radius: 20px;
	background: #fff;
	margin: 20px auto 0;
}

.cate-right a {
	width: 48%;
	background: #fff;
	margin-bottom: 20px;
	padding: 5px 20px;
	border-radius: 20px;
	box-shadow: 0 6px 20px -8px #ccc;
}

.cate-right p {
	text-align: center;
	padding: 10px 0 0;
	font-size: 16px;
}

/*pagination-ページネーション */
.pagination {
	padding: 20px 0;
	font-size: 14px;
	text-align: center;
	width: 100%;
}

.pagination .current {
	color: #666;
	border: 1px solid #666;
}

.pagination .current {
	color: #666;
	background: #fff;
}

.pagination .current, .pagination span, .pagination a {
	width: 38px;
	height: 38px;
	line-height: 38px;
	display: inline-block;
	border: 1px solid #666;
	text-align: center;
	border-radius: 50%;
	margin: 2px 2px 2px 0;
	vertical-align: middle;
}

.pagination a {
	background: #666;
	border: 1px solid #666;
}

.pagination span, .pagination a {
	color: #fff;
	background: #666;
}

.pagination a:hover {
	color: #666;
	background: #fff;
}

.pagination a:hover {
	color: #666;
	border: 1px solid #666;
}

/*NEW POSTS*/
.post-wrap {
	background: #fff;
	margin: 160px auto 0;
	padding: 0 1em;
}

.post-inner {
	max-width: 98%;
	padding: 100px 0;
	margin: 0 auto;
}

.top-title {
	font-size: 30px;
	letter-spacing: 0.2em;
}

.post-inner p {
	font-size: 14px;
	padding: 15px 5px;
}

.column,.blog-card,.column-card {
	width: 100%;
	background: #fff;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 20px;
	box-shadow: 0 6px 20px -8px #ccc;
}

.column a,.blog-card a,.column-card a {
	display: table;
}

.column figure,.column-card figure {
	display: table-cell;
	width: 40%;
	vertical-align: middle;
}

.column img,.blog-card-thumbnail img,.column-card img {
	border-radius: 20px;
	width: 100%;
	height: 100px;
	object-fit: cover;
}

.column h2,.blog-card-title,.column-card h2,.relatedTitle {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 15px;
	font-size: 14px;
	color: #545454;
}

.all-button {
	text-align: center;
}

.all-button a {
	display: inline-block;
	margin: 40px auto 0;
	padding: 15px 30px;
	background: #545454;
	border-radius: 100px;
	color: #fff;
}

.profile-wrap {
	padding: 160px 0;
	background: #fff;
}

.profile-wrap h2 {
	position: relative;
	display: block;
	margin-bottom: 3em;
	text-align: center;
	font-size: 25px;
}

.profile-wrap h2:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: black;
	border-radius: 2px;
}

.profile-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1em;
}

.profile-left {
	width: 95%;
	margin: 0 auto 20px;
	background: #fff;
	padding: 0 20px;
	border-radius: 20px;
}

.profile-left p {
	text-align: center;
	padding: 20px 0 10px;
	font-size: 20px;
}

.profile-right {
	width: 95%;
	margin: 0 auto;
}

.profile-icon a {
	width: 48%;
	margin-bottom: 20px;
	font-size: 14px;
	text-align: center;
	background: #fff;
	padding: 0 5px 5px;
	border-radius: 15px;
	box-shadow: 0 6px 20px -8px #ccc;
}

.profile-balloon {
	position: relative;
	background: #fff;
	padding: 30px 20px;
	border-radius: 13px;
	background: #f5f5f5;
}

.profile-balloon:before {
	border-right: 18px solid #f5f5f5;
	border-bottom: 18px solid transparent;
	border-top: 18px solid transparent;
	top: -25px;
	content: "";
	position: absolute;
	left: 48%;
	transform: rotate(90deg);
}

.profile-icon {
	margin-top: 15px;
}

/*footer*/
footer {
	width: 100%;
	background: #fff;
	/*padding: 1em 0 0;
	margin-top: 40px;*/
}

.common-section {
	width: 100%;
}

.commonTitle {
	margin-bottom: 20px;
	padding: 1em;
	font-size: 18px;
}

.footer-bottomsection {
	background: #f5f5f5;
	padding: 5px 0;
}

.footer-bottomsection div {
	text-align: center;
	margin: 0 auto;
	width: 80%;
}

.footer-bottomsection li {
	display: inline-block;
	font-size: 12px;
}

.footer-bottomsection li:last-child:after {
	content: '';
}

.footer-bottomsection li:after {
	content: ' ｜';
}

small {
	background: #666;
	display: block;
	text-align: center;
	color: #fff;
	padding: 10px 0;
}

.footer-wrap {
	max-width: 1000px;
	margin: 40px auto;
}

.footer-section {
	width: 100%;
	padding: 0 1%;
	margin-bottom: 40px;
}

.footer-title {
	margin-bottom: 20px;
	padding: 0.8em;
	font-size: 18px;
	border-left: 5px solid #666;
}

.footer-section .textwidget img {
	margin: 0 auto;
	width: 80%;
}

/*------ここからsingle.php------*/
.main-sub {
	margin: 40px auto;
	max-width: 1000px;
	padding: 0 0.5em;
}

.article {
	margin: 20px auto;
}

.item {
	text-align: center;
	display: block;
}

.time {
	font-size: 12px;
	margin-bottom: 20px;
	color: #aaa;
	text-align: center;
	display: block;
}

/* パンくずリスト */
#breadcrumb {
	max-width: 600px;
	margin: 0 auto;
	font-size: 12px;
	padding: 20px 1em 0;
}

#breadcrumb * {
	color: #aaa;
}

#breadcrumb:before {
	font-family: "Font Awesome 5 Free";
	content: '\f3c5';
	/*font-weight: 900;*/
	color: #aaa;
	transition: .5s;
	margin-right: 5px;
}

#breadcrumb ul {
	display: inline;
}

#breadcrumb li {
	display: inline;
	margin-right: 5px;
}

#breadcrumb a {
	text-decoration: underline;
}

.article-wrap {
	background: #fff;
	padding: 2.5em 1.5em;
	border-radius: 20px;
	margin-bottom: 30px;
}

.container {
	width: 100%;
	margin: 0 0 30px;
}

.container-single {
	width: 100%;
	margin: 0 auto;
}

.column-title {
	font-size: 18px;
	text-align: center;
	padding: 1em 0;
}

.archive-title {
	font-size: 18px;
	text-align: left;
	padding: 10px 1em;
	margin-bottom: 20px;
	border-left: 5px solid #666;
}

/*--- single_投稿ページ ---*/
.post-thumb {
	box-shadow: 0 5px 10px #ddd;
	margin-bottom: 40px;
	border-radius: 20px;
}

.post-thumb img {
	border-radius: 20px;
}

.post-content * {
	letter-spacing: 2px;
}

.post-content h2 {
	margin-bottom: 20px;
	padding: 1.2em 1em;
	background: #f5f5f5;
	border-bottom: 3px solid #aaa;
	font-size: 20px;
	border-left: 5px solid #545454;
}

.post-content h3 {
	margin-bottom: 20px;
	padding: 1.2em 1em;
	background: #f5f5f5;
	font-size: 18px;
	border-left: 5px solid #666;
	border-radius: 0 20px 20px 0;
}

.post-content h4 {
	font-size: 18px;
	padding: 20px 0 30px;
}

.post-content h4:before {
	font-family: "Font Awesome 5 Free";
	content: '\f058';
	font-weight: 600;
	margin-right: 10px;
}

.post-content h5 {
	border-bottom: 1px solid #aaa;
	margin-bottom: 20px;
	padding: 10px;
}

.post-content p {
	margin-bottom: 60px;
	font-weight: 400;
	color: #333;
}

.post-content a {
	color: #337ab7;
	font-weight: bold;
}

.post-content a:hover {
	text-decoration: underline;
}

.post-content p iframe {
	width: 100%;
}

.aligncenter {
 	margin: 0 auto;
}

.alignright {
	margin: 0 0 0 auto;
}

/*-----single_tag-----*/
blockquote {
	position: relative;
	padding: 3.5em 1.5em 2em;
	background: #f5f5f5;
	border-radius: 10px;
	color: #666;
	margin-bottom: 60px;
}

blockquote:before {
	font-family: "Font Awesome 5 Free";
	content: '\f10d';
	font-weight: 600;
	position: absolute;
	top: 5px;
	left: 10px;
	color: #ddd;
	font-size: 30px;
}

blockquote p {
	margin-bottom: 0!important;
}

cite {
	font-size: 14px;
	margin-top: 15px;
	color: #aaa;
	font-style: italic;
	display: block;
	text-align: right;
}

.markerYellow {
	background: linear-gradient(transparent 50%, #ffe37f 50%);
	font-weight: 700;
}

.btnYellow a {
	padding: 20px 10px;
	width: 100%;
	display: block;
	margin-bottom: 60px;
	text-align: center;
	background: #ffe37f;
	box-shadow: 0 5px 15px -5px #aaa;
	color: #545454;
	border-radius: 10px;
	-webkit-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	transform: translateY(-1px);
}

.btnYellow a:hover {
	text-decoration: none;
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
	box-shadow: 0 5px 10px -8px #aaa;
	transition: .3s;
}

strong {
	font-weight: 700;
	color: #222;
}

/*読者の悩み*/
.worrybox {
	position: relative;
	padding: 6%;
	margin-bottom: 60px;
}

.worrybox::before,
.worrybox::after {
	position: absolute;
	content: '';
	width: 20px;
	height: 50px;
}

.worrybox::before {
	top: 0;
	left: 0;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
}

.worrybox::after {
	bottom: 0;
	right: 0;
	border-bottom: 1px solid #555;
	border-right: 1px solid #555;
}
/*/読者の悩み*/
/*E-A-Tを出すプロフィール*/
.writerbox {
	position: relative;
	padding: 20px;
	border: 2px solid #ccc;
	border-radius: 20px;
	margin-bottom: 60px;
}

.writerinner {
	color: #aaa;
	font-size: 12px;
	display: block;
}

.writername {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 5px;
}

.writerword {
	font-size: 14px;
	font-weight: 500;
}

.writericon {
	width: 45%;
	margin: 0 auto 20px;
}

.writericon img {
	box-shadow: 0 5px 15px #eee;
}

.borderBox {
	background: #f5f5f5;
	padding: 2em 2em;
	margin-bottom: 60px;
	border-radius: 20px;
}

.bracketsBox {
	position: relative;
	padding: 6%;
	margin-bottom: 60px;
}

.bracketsBox::before,
.bracketsBox::after {
	position: absolute;
	content: '';
	width: 20px;
	height: 50px;
}

.bracketsBox::before {
	top: 0;
	left: 0;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
}

.bracketsBox::after {
	bottom: 0;
	right: 0;
	border-bottom: 1px solid #555;
	border-right: 1px solid #555;
}

.list-circle {
	background: #f5f5f5;
	padding: 2em 1em 2em 2.7em;
	margin-bottom: 60px;
	border-radius: 20px;
}

.list-circle li {
	position: relative;
	line-height: 1.5;
	padding: 0.5em 0;
}

.list-circle li:before {
	content: '・';
	position: absolute;
	left: -18px;
}

.ollist {
	background: #f5f5f5;
	counter-reset: my_counter;
	list-style: none;
	padding: 2em 1em 2em 4em;
	margin-bottom: 60px;
	border-radius: 20px;
}

.ollist li {
	position: relative;
	padding-bottom: 1em;
}

.ollist li:before {
	position: absolute;
	top: 0;
	content: counter(my_counter);
	counter-increment: my_counter;
	width: 20px;
	height: 20px;
	padding: 2px 2px 5px 3px;
	margin-left: -35px;
	text-align: center;
	font-size: 14px;
	border-radius: 5px;
	color: #fff;
	background: #666;
}

.ollist li:last-child {
	padding-bottom: 0;
}

.imgshadow img {
	box-shadow: 0 5px 10px #ddd;
	margin-bottom: 60px;
	border-radius: 20px;
}

.imgborder img {
	border: 1px solid #aaa;
	margin-bottom: 60px;
}

.blog-card {
	position: relative;
	margin: 100px 0 60px;
}

.blog-card-thumbnail{
	display: table-cell;
	width: 30%;
	vertical-align: middle;
}

.blog-card:before {
	content: "関連記事";
	position: absolute;
	top: -40px;
	left: 0;
	width: 100px;
	background: #666;
	padding: 8px 20px;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	box-shadow: 0 5px 10px -8px #000;
}

.blog-card:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 57px;
	border: 12px solid transparent;
	border-right: 12px solid #666;
	transform: rotate(-90deg);
}

/* 吹き出し */
.lballoon {
	overflow: hidden;
}

.lballoon .faceicon {
	float: left;
	margin-right: -90px;
	width: 80px;
}

.lballoon .faceicon img {
	border: 2px solid #f5f5f5;
	border-radius: 50%;
}

.says {
	display: inline-block;
	position: relative;
	margin: 5px 0 0 100px;
	padding: 17px 13px;
	border-radius: 10px;
	background: #f5f5f5;
	font-weight: 600!important;
	color: #545454!important;
}

.says:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 18px;
	left: -24px;
	border: 12px solid transparent;
	border-right: 12px solid #f5f5f5;
}

.rballoon {
	margin-bottom: 60px;
}

.rballoon .faceicon {
	float: right;
	width: 80px;
}

.rballoon .faceicon img {
	width: 100%;
	height: auto;
	border: solid 2px #eee;
	border-radius: 50%;
	box-shadow: 0 0;
}

.rsays {
	display: inline-block;
	position: relative;
	padding: 17px 13px;
	border-radius: 10px;
	background: #fff;
	width: 70%;
	border: 3px solid #aaa;
	font-weight: 600!important;
	margin-bottom: 0!important;
	color: #545454!important;
}

.rsays:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 18px;
	right: -24px;
	border: 12px solid transparent;
	border-right: 12px solid #aaa;
	transform: rotate(-180deg);
}

/*目次*/
/**目次**/
.mokuzi {
	display: block;
	text-align: center;
}

.outline {
	background: #f5f5f5;
	margin-bottom: 60px;
	padding: 40px 1.5em 40px 2em;
	border-radius: 20px;
}

.outline__toggle {
	display: none;
}

.outline__switch + .outline__list {
	overflow:hidden;
	width:0;
	height:0;
	margin-top:0;
	transition: 0.2s;
} 

.outline__toggle:checked + .outline__switch + .outline__list {
	width: 100%;
	height: auto;
	transition: 0.2s;
}

a.outline-link,.list a {
	color: #545454;
	transition: .5s;
	border-bottom: 1px solid #ccc;
	display: block;
	padding: 10px 0;
	font-weight: 600;
}

a.outline-link {
	position: relative;
}

a.outline-link:hover {
	color:#aaa!important;
	transition: .5s;
}

label.outline__switch {
	position: relative;
	float: right;
}

.outline__item {
	padding: 10px 20px 0;
	font-size: 14px;
	transition: .5s;
}

.outline__item a:before {
	font-family: "Font Awesome 5 Free";
	content:'\f0da';
	font-weight: 600;
	transition: .5s;
	margin-right: 5px;
	position: absolute;
	left: -15px;
}

/* SNSシェアボタン */
.snsArea {
	margin-bottom: 30px;
}

.snsArea a {
	font-size: 16px;
	padding: 10px 13px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0 #ccc;
	transition: .3s;
}

.snsArea ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 300px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.twitter a {
	background: #55acee;
}

.facebook a{
	background: #3b5998;
}

.hatena a{
	background: #008fde;
	padding: 10px;
}

.fa-hatena:before {
	content: "B!";
	font-family: Verdana;
	font-weight: bold;
}

.google-plus a{
	background: #dd4b39;
}

.pocket a{
	background: #ea5a6c;
}

.snsArea a:hover {
	background: #fff;
	color: #666;
}

/*全体*/
.hidden_box {
	margin: 2em 0;/*前後の余白*/
	padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
	padding: 15px 20px;
	font-weight: bold;
	cursor: pointer;
	background: #eee;
	box-shadow: 0 4px 0 #ccc;
	border-radius: 5px;
	color: #666;
}

/*ボタンホバー時*/
.hidden_box label:hover {
	background: #efefef;
}

.hidden_box label:after {
	font-family: "Font Awesome 5 Free";
	content: '\f107';
	font-weight: 700;
	margin-left: 5px;
}

/*チェックは見えなくする*/
.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: 40px 20px 0;
	height: auto;
	opacity: 1;
	background: #fafafa;
	border-radius: 10px;
}

/*-----sidebar-----*/
.sidebar {
	margin: 0;
	width: 100%;
}

.common-section {
	border-radius: 20px;
	background: #fff;
	margin-bottom: 40px;
}

.common-section .menu {
	padding: 0 2em 2em;
}

.side-title {
	position: relative;
	padding: 30px 0 20px;
	text-align: center;
	display: block;
}

.side-title:before,.side-title:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 10%;
	height: 2px;
	background: #666;
}

.side-title:before {
	left: 10%;
}

.side-title:after {
	right: 10%;
}

span.inner-span {
	display: block;
	text-align: center;
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: bold;
}

.sns-wrap {
	text-align: center;
	margin-bottom: 20px;
}

.sns-wrap a {
	display: inline-block!important;
	border-bottom: 0!important;
	color: #545454!important;
	font-size: 25px;
	padding: 0 10px;
}

.sns-wrap a:hover {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	transition: .3s;
}

/*検索search*/
#sideForm {
	padding: 0 1em 1em 1em;
}

#lBox,#wp-block-search__input-1 {
	float: left;
	height: 50px;
	padding: 0 10px;
	background: #fff;
	width: 80%;
	-webkit-appearance: none;
	border: 1px solid #fafafa;
	border-radius: 10px 0 0 10px;
}

#sbtn,.wp-block-search__button {
	float: left;
	width: 20%;
	height: 50px;
	background: #666!important;
	color: #fafafa!important;
	font-size: 20px;
	border-radius: 0 10px 10px 0;
	margin-left: 0!important;
	cursor: pointer;
}

/* サイドバーのカテゴリーCSS */
.common-section > ul,
.menu-contents-container,
.tagcloud {
	padding: 0 2em 2em;
	text-align: left;
}

.common-section li {
	font-size: 14px;
}

.common-section .children {
	padding: 0 0 0 2em;
}

.common-section li a {
	position: relative;
	display: block;
	padding: 1em 0 1em 20px;
	border-bottom: 1px dotted #aaa;
}

.common-section li a:hover {
	color: #aaa;
}

/* サイドバーのカテゴリー装飾 */
.common-section li a:before {
	font-family: "Font Awesome 5 Free";
	content: '\f105';
	font-weight: 700;
	transition: .5s;
	position: absolute;
	left: 4px;
	padding-left: 2px;
	top: 1em;
}

/* サイドバーのテキストエリア */
.common-section .textwidget img {
	margin: 0 auto;
}

/* サイドバーの著者名 */
.author {
	text-align: center;
	padding: 20px 0;
	font-size: 18px;
}

/* サイドバーのバナー */
.common-section a img {
	width: 100%;
}

/* サイドバーのタグ */
.tagcloud a {
	border: 1px solid #666;
	display: inline-block;
	padding: 3px 5px;
	margin-bottom: 5px;
	font-size: 12px!important;
}

.profile-list {
	padding: 0 2em 1em;
}

.profile-list img {
	width: 80%;
	margin: 0 auto;
}

.profile-list p {
	font-size: 12px;
	font-weight: 500;
}

.profile-list .all-button a {
	margin: 20px auto 15px;
}

/*----categoryページ----*/
.main-cat h1 {
	font-size: 40px;
	display: block;
	padding-bottom: 10px;
	letter-spacing: 0.1em;
	text-align: center;
}

.main-cat span {
	text-align: center;
	display: block;
}

.main-cat p {
	margin: 0 auto 30px;
	font-size: 14px;
	max-width: 300px;
}



/*--- 画面の幅が768px以上になったら ---*/
@media screen and (min-width:760px) {
	.hamburger-menu {
	    display: none;
	}
	
	.main-top {
		display: table;
		max-width: 600px;
	}

	.main-sub-top {
		display: table;
		max-width: 600px;
	}

	.main-cat {
		width: 30%;
		display: table-cell;
		vertical-align: middle;
	}

	.main-cat span {
		text-align: left;
	}

	figure.main-on {
		width: 30%!important;
		margin: 0 auto;
	}

	figure.main-sub-img  {
		display: table-cell;
		width: 25%;
		padding: 0 2%;
		vertical-align: middle;
	}

	.main-content {
		max-width: 960px;
		padding: 40px 30px 30px;
	}

	.pick-inner {
		position: absolute;
		top: -20px;
	}

	.pick-inner h2 {
		font-size: 25px;
	}

	.pickup {
		width: 32%;
	}

	.pick-comment {
		margin: 0;
		padding-left: 10px;
	}

	/*mainカテゴリー*/
	.main-cate {
		max-width: 900px;
		margin: 160px 2em 0;
	}

	.cate-left {
		width: 33%;
		margin: 0 0;
	}

	.cate-right {
		width: 62%;
		padding: 30px 35px 10px;
		margin: 20px 0 0;
	}

	.cate-right a {
		width: 29%;
	}

	.cate-right a {
		width: 29%;
		padding: 5px 15px;
	}

	.cate-right p {
		padding: 18px 0 0;
		font-size: 14px;
	}

	/*NEW POSTS*/
	.post-wrap {
		background: #fff;
		margin: 160px auto 0;
	}

	.post-inner {
		max-width: 900px;
		padding: 160px 2em;
	}

	.top-title {
		font-size: 30px;
		letter-spacing: 0.2em;
	}

	.post-inner p {
		font-size: 14px;
		padding: 15px 5px;
	}

	.column {
		width: 49%;
	}

	.column-card {
		width: 49%;
		background: #fff;
		padding: 10px;
		margin-bottom: 20px;
		border-radius: 20px;
		box-shadow: 0 6px 20px -8px #ccc;
	}

	.column-card a {
		display: block;
	}

	.column-card figure {
		display: inline-block;
		width: 100%;
	}

	.column-card img {
		border-radius: 20px;
		width: 100%;
		height: 180px;
		object-fit: cover;
	}

	.column-card h2,.relatedTitle {
		padding: 15px 15px 5px 15px;
		font-size: 14px;
		color: #545454;
		display: block;
	}

	.profile-wrap {
		padding: 160px 0;
		background: #fff;
	}

	.profile-wrap h2 {
		position: relative;
		display: block;
		margin-bottom: 3em;
		text-align: center;
	}

	.profile-wrap h2:before {
		content: '';
		position: absolute;
		bottom: -15px;
		display: inline-block;
		width: 60px;
		height: 2px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: black;
		border-radius: 2px;
	}

	.profile-inner {
		max-width: 800px;
		margin: 0 auto;
	}

	.profile-left {
		width: 28%;
		margin: 0 0 0;
	}

	.profile-left p {
		text-align: center;
		padding: 20px 0 10px;
		font-size: 20px;
	}

	.profile-right {
		width: 70%;
		margin: 0 0;
	}

	.profile-icon a {
		width: 23%;
		margin-bottom: 0;
	}

	.profile-balloon:before {
		border-bottom: 18px solid transparent;
		border-top: 18px solid transparent;
		top: 30%;
		content: "";
		position: absolute;
		left: -15px;
		transform: rotate(0deg);
	}

	.profile-icon {
		margin-top: 15px;
	}

	/*footer*/
	.footer-wrap {
		max-width: 1000px;
		/*margin: 40px auto;*/
	}

	.footer-section {
		width: 32%;
		margin-bottom: 0;
	}

	/*----categoryページ----*/
	.main-cat h1 {
		text-align: left;
	}

	.main-cat p {
		margin: 0 0;
	}

	/*-----single-----*/
	.container {
		width: 80%;
		margin: 0 auto;
	}

	.container-single {
		width: 80%;
		margin: 0 auto;
	}

	.column-title {
		font-size: 21px;
		padding: 1em;
	}

	.main-sub {
		padding: 0 0;
	}

	.article-wrap {
		margin-bottom: 0;
		padding: 2.5em 3em;
	}

	/*single_tag*/
	.writer {
		display: table;
	}

	.writericon {
		width: 20%;
		padding-right: 20px;
		display: table-cell;
	}

	.writerword {
		width: 50%;
		display: table-cell;
		vertical-align: middle;
	}

	.writername {
		text-align: left;
	}

	.list-circle {
		padding: 2em 1em 2em 3em;
	}

	.outline {
		padding: 40px 2em 40px 2.7em;
	}

	.ollist li:before {
		padding: 2px 1px 6px 4px;
	}

	.rsays {
		margin: 5px 0 0 13%;
	}

	/*-----sidebar-----*/
	.sidebar {
		width: 28%;
		display: none;
	}
}


/*--- 画面の幅が768px以上になったら ---*/
@media screen and (min-width:960px) {
	.main-top {
		display: table;
		max-width: 800px;
		padding: 120px 0;
	}

	.main-sub-top {
		display: table;
		max-width: 800px;
		padding: 100px 0;
	}

	figure.main-sub-img {
		width: 20%;
		padding: 0 2%;
	}

	.main-cate {
		margin: 160px auto 0;
	}

	.post-inner {
		padding: 160px 0;
	}

	.cate-right p {
		padding: 10px 0 0;
	}

	/*-----sidebar-----*/
	.sidebar {
		width: 28%;
		display: inline-block;
	}
	
	.container {
		width: 68%;
		margin: 0;
	}

	#breadcrumb {
		max-width: 1000px;
	}

}