/*
Theme Name: Deepspace
Author: YURIKO
Version: 2.0
*/
@import url("//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.css");
@charset "UTF-8";
/*============================================================
サイト内共通
============================================================*/
@font-face {
	font-family: MidashiFont;
	src: url("/wp-content/themes/deepspace2.0/font/font.woff2") format("truetype");
	}
body {
	margin: 0;
	-ms-font-feature-settings: "normal";
	font-family: "MidashiFont","メイリオ","Hiragino Kaku Gothic Pro","sans-serif";
	color: #fff;
	background-image: url("/wp-content/themes/deepspace2.0/image/bgimg.jpg");
	background-repeat: no-repeat;
	background-position: center 80%;
	background-attachment: fixed;
	-webkit-background-size: auto auto;
	background-size: auto auto;
	}
@media screen and (min-width: 1921px) {
body {
	background-color: rgb(28 73 131 / 1);
	background-position: center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	}
}	
@media screen and (max-width: 949px) {
body {
	position: relative;
	}
body::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 120%;
	height: 120vh;
	background-repeat: no-repeat;
	background-position: 60% bottom;
	background-image: url("/wp-content/themes/deepspace2.0/image/bgimg.jpg");
	background-size: cover;
	}	
}

/* wrapper */
#wrapper {
	overflow: hidden;
	}
	
/* --------------- TOPに戻るボタン --------------- */
/* page_top_btn */
#page_top_btn {
	padding: 0;
	width: 45px;
	position: fixed;
	bottom: 8px;
	right: 50px;
	z-index: 9999;
	}
#page_top_btn a {
	width: 45px;
	height: auto;
	display: block;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all  0.7s ease;
	}
#page_top_btn a:hover {
	opacity: 0.8;
	}
#page_top_btn img {
	width: 60px;
	height: auto;
	display: block;
	}
@media screen and (max-width: 949px) {
#page_top_btn {
	padding: 0;
	width: 40px;
	position: fixed;
	bottom: 1px;
	right: 0;
	}
#page_top_btn a {
	width: 40px;
	height: auto;
	display: block;
	}
#page_top_btn a:hover {
	opacity: 0.8;
	}
#page_top_btn img {
	width: 40px;
	height: auto;
	display: block;
	}
}

/* --------------- ヘッダー --------------- */
/* header */
.header {
	margin: 0;
	padding: 10px 0 0 0;
	background-color: rgb(0 0 0 / 0.8);
	text-align: center;
	}
.header img {
	display: block;
	width: 100%;
	max-width: 200px;
	margin: -10px auto 0 auto;
	padding: 10px 0 30px 0;
	}
@media screen and (max-width: 949px) {
.header {
	margin: 0 0 20px 0;
	}	
.header img {
	padding: 10px 0 22px 0;
	}
}
p.catch {
	margin: 0 auto;
	padding: 10px 0 6px 0;
	font-size: 13px;
	font-weight: bold;
	}

/* header_box */
.header_box {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 0 0 30px 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	}
.header_box_inner {
	width: 100%;
	margin: 0;
	padding: 20px;
	background-color: rgb(0 0 0 / 0.6);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 12px;
	}
.header_box p {
	margin: 0 0 5px 0;
	padding: 0;	
	font-size: 13px;
	text-align: left;
	}
@media screen and (max-width: 949px) {
.header_box {
	margin-top: -5px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	}
.header_box_inner {
	padding: 10px 15px;
	}	
.header_box p {
	font-size: 12px;
	}
}

/* --------------- ハンバーガーメニュー --------------- */
/* nav_drawer */
.nav_unshown {
	display: none;
	}
@media screen and (min-width: 950px) {		
#nav_drawer {
	display: none;
	}
}
#nav_drawer {
	position: relative;
	}
#nav_open {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	width: 38px;
	height: 38px;
	right: 0;
	top: 10px;
	z-index: 98;
	}
#nav_close {
	cursor: pointer;
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .7s ease-in-out;
	}
#nav_x {
	cursor: pointer;
	display: none;
	position: fixed;
	z-index: 99;
	width: 38px;
	height: 38px;
	right: 0;
	top: 10px;
	}
#nav_contents {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 80%;
	max-width: 350px;
	height: 100%;
	background-color: #fff;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	}
#nav_input:checked ~ #nav_close {
	display: block;
	opacity: 0.7;
	}
#nav_input:checked ~ #nav_x {
	display: block;
	opacity: 0.7;
	}
#nav_input:checked ~ #nav_contents {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgb(0 0 0 / 0.15);
	}

/* hamburger_kiji_menu */
.hamburger_kiji_menu {
	text-align: center;
	border-top: #333 1px solid;
	border-bottom: #333 1px solid;
	margin: 0 0 10px 0;
	padding: 20px 0;
	}
.hamburger_kiji_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}
.hamburger_kiji_menu ul:after {
	content: "";
	display: block;
	clear: both;
	}
.hamburger_kiji_menu ul li {
	display: inline;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;	
	float: left;
	width: 33.333333%;
	margin: 0;
	padding: 0;
	text-align: center;
	display: block;
	color: #333;
	line-height: 1.5em;
	text-decoration: none;	
	font-size: 13px;
	}
.hamburger_kiji_menu ul li a {
	color: #333;
	text-decoration: none;
	}
.hamburger_kiji_menu ul li:nth-child(1):before {
	display: block;
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f015';
	color: #333;
	font-size: 200%;
	margin-bottom: 8px; 
	}
.hamburger_kiji_menu ul li:nth-child(2):before {
	display: block;
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f040';
	color: #333;
	font-size: 200%;
	margin-bottom: 8px; 
	}
.hamburger_kiji_menu ul li:nth-child(3):before {
	display: block;
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f1c5';
	color: #333;
	font-size: 200%;
	margin-bottom: 8px; 
	}

/* hamburger */
.hamburger {
	margin: 0;
	padding: 10px;
	font-weight: 600;
	letter-spacing: -0.01em;
	}
.hamburger dl {
	margin: 0;
	padding: 0;
	border: #333 solid 1px;
	}	
.hamburger dt {
	margin: 0;
	padding: 5px;
	color: #fff;
	background-color: #333;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	}
.hamburger dd {
	margin: 0;
	padding: 0 0 10px 0;
	}

/* hamburger_cat */
ul.hamburger_cat {
	margin: 0;
	padding: 5px 10px 0 10px;
	list-style-type: none;
	list-style: none;
	list-style-image: none;
	}
ul.hamburger_cat li {
	background-image: url("/wp-content/themes/deepspace2.0/image/sankaku_black.png");
	background-size: auto 15px;
	-webkit-background-size: auto 15px;
	background-position: center right 5px;
	background-repeat: no-repeat;
	border-bottom: #ccc 1px dotted;
	}
ul.hamburger_cat li:last-child {
	border-bottom: none;
	}
ul.hamburger_cat li a {
	display: block;
	color: #333;
	font-size: 13px;
	line-height: 1.5em;
	margin: 0;
	padding: 8px 10px;	
	text-decoration: none;
	}
ul.hamburger_cat li a:hover {
	opacity: 0.5;
	}

/* hamburger_tag */
ul.hamburger_tag {
	margin: 0;
	padding: 15px 5px 5px 10px;
	list-style: none;
	text-align: center;
	}
ul.hamburger_tag li {
	display: inline-block;	
	margin-bottom: 15px;
	}
ul.hamburger_tag li a {
	border : #333 solid 1px;
	border-radius: 50px;
	padding: 2px 5px 4px 12px;
	margin: 0 4px 0 0;
	font-size: 12px;
	color: #333;
	text-decoration: none;
	background-image:url("/wp-content/themes/deepspace2.0/image/tag_black.png");
	background-size: auto 14px;
	-webkit-background-size: auto 14px;
	background-position: center left 4px;
	background-repeat: no-repeat;
	}
ul.hamburger_tag li a:hover {
	opacity: 0.8;
	}

/* hamburger_profbox */
.hamburger_profbox {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #333;
	}
.hamburger_profbox p {
	margin: 0;
	padding: 10px;
	font-size: 12px;
	line-height: 1.95em;
	}
.hamburger_profbox p a {
	color: #333;
	}

/* hamburger_widgetbox */
dd.hamburger_widgetbox ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style: none;
	list-style-image: none;
	}
dd.hamburger_widgetbox ul.wp-block-archives {
	margin: 0;
	padding: 5px 10px 0 10px;
	}
dd.hamburger_widgetbox ul.wp-block-archives li {
	background-image: url("/wp-content/themes/deepspace2.0/image/sankaku_black.png");
	background-size: auto 15px;
	-webkit-background-size: auto 15px;
	background-position: center right 5px;
	background-repeat: no-repeat;
	border-bottom: #ccc 1px dotted;
	}
dd.hamburger_widgetbox ul.wp-block-archives li:last-child {
	border-bottom: none;
	}
dd.hamburger_widgetbox ul.wp-block-archives li a {
	display: block;
	color: #333;
	font-size: 13px;
	line-height: 1.5em;
	margin: 0;
	padding: 8px 10px;	
	text-decoration: none;
	}
dd.hamburger_widgetbox ul.wp-block-archives li a:hover {
	opacity: 0.5;
	}

/* --------------- コンテンツ --------------- */
/* contents */		
.contents {
	padding: 30px 0;
	margin: 0;
	}
@media screen and (min-width: 1000px) {
.contents {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	}
}
@media screen and (max-width: 949px) {
.contents {
	background: none;
	padding: 10px 10px 0 10px;
	}
}

/* --------------- フッター --------------- */
/* footer */
.footer {
	margin: 0;
	padding: 30px 15px;
	background-color: rgb(0 0 0 / 0.8);
	text-align: center;
	color: #fff;
	}
.footer p {
	font-size: 12px;
	padding: 0;
	margin: 0;
	}
.footer a {
	color: #fff;
	}

/* --------------- テキスト・画像装飾 --------------- */
a:link {
	color: #fff;
	}
a:visited {
	color: #fff;
	}
a:active {
	color: #fff;
	}	

/* span */
p {
	font-size: 15px;
	line-height: 2.0em;
	margin-bottom: 22px;
	}
span.noma {
	margin: 0;
	padding: 0 2px;
	font-size: 70%;
	}
span.ttlnoma {
	margin: 0;
	padding: 0;
	font-size: 70%;
	}
span.bold {
	font-weight: bold;
	}
p.img_txt {
	margin: -20px 0 20px 0;
	text-align: center;
	font-size: 12px !important;
	}

/* img */
img {
	border: none;
	max-width: 100%;
	}
img.kiji_img {
	display: block;
	width: 60%;
	height: auto;
	margin: 20px auto;
	}
@media screen and (min-width: 950px) {	
img.kiji_img {
	width: 45%;
	}
}
img.kiji_img_full {
	display: block;
	width: 100%;
	height: auto;
	margin: 20px auto;
	}
@media screen and (min-width: 950px) {	
img.kiji_img_full {
	width: 80%;
	}
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	}
	
/*============================================================
トップページ
============================================================*/
/* --------------- メインビジュアル --------------- */
/* mainvisual */
.mainvisual {
	width: 100%;
	}
.slider {
	width: 100%;
	margin: 30px auto;
	}
.slide_img {
	width: 100%;
	max-width: 300px;
	margin: 0 5px;
	}
.slide_img img {
	width: 100%;
	}
@media screen and (max-width: 949px) {	
.slide_img {
	max-width: 200px;
	}
}
.slide_img a {
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	}
.slide_img a:hover {
	text-decoration: underline;
	}
@media screen and (max-width: 949px) {	
.slide_img a {
	font-size: 14px;
	}
}

/* slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	}
.slick-list {
	position: relative;
	display: block;
	overflow: visible;
	margin: 0;
	padding: 0;
	}
.slick-list:focus {
	outline: none;
	}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
	}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
	}
.slick-track:after {
	clear: both;
	}
.slick-loading .slick-track {
	visibility: hidden;
	}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
	}
[dir='rtl'] .slick-slide {
	float: right;
	}
.slick-slide img {
	display: block;
	}
.slick-slide.slick-loading img {
	display: none;
	}
.slick-slide.dragging img {
	pointer-events: none;
	}
.slick-initialized .slick-slide {
	display: block;
	}
.slick-loading .slick-slide {
	visibility: hidden;
	}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
	}
.slick-arrow.slick-hidden {
	display: none;
	}
.slick-dotted.slick-slider {
	margin-bottom: 30px;
	}
.slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
	}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
	}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
	}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
	}
.slick-dots li button:before {
	font-family: "slick";
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "●";
	text-align: center;
	opacity: .25;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}
.slick-dots li.slick-active button:before {
	opacity: 0.75;
	color: #fff;
	}
img.pickup_img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 10px auto;
	}

/* --------------- インフォエリア・見出し --------------- */
/* info_area */
.info_area {
	margin: 0 0 30px 0;
	padding: 20px;
	background-color: rgb(0 0 0 / 0.8);
	border-radius: 12px;
	}
@media screen and (max-width: 949px) {
.info_area {
	padding: 10px;
	}
}
/* h1 */
.info_area h1 {
	position: relative;
	text-align: center;
	display: block;
	width: fit-content;
	line-height: 1.2;
	margin: 25px auto 35px auto;
	padding: 0 1rem;
	font-size: 20px;
	letter-spacing: -0.05em;
	}
.info_area h1::before, .info_area h1::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 2px;
	height: 1.2rem;
	background-color: rgb(255 255 255 / 1);
	}
.info_area h1::before {
	transform: rotate(-30deg);
	left: 0;
	}
.info_area h1::after {
	transform: rotate(30deg);
	right: 0;
	}
@media screen and (max-width: 949px) {
.info_area h1 {
	font-size: 18px;
	}
}

/* --------------- 新着記事一覧 --------------- */
/* kiji_list */
section.kiji_list {
	margin: 0;
	padding: 10px 0 0 0;
	border-top: #E6E1FB 1px dotted;
	}
section.kiji_list a:hover {
	opacity: 0.6;
	}
.kiji_link {
	display: flex;
	display: -moz-flex;
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	}
.kiji_link:after {
	content: "";
	display: block;
	clear: both;
	}
.kiji_link_left {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
	width: 20%;
	order: 1;	
	}
.kiji_link_right {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: right;
	width: 80%;
	padding-left: 25px;
	order: 2;	
	}
@media screen and (max-width: 949px) {
.kiji_link_left {
	width: 35%;
	}
.kiji_link_right {
	width: 65%;
	padding-left: 10px;
	}
}
.kiji_link {
	margin: 0 0 10px 0;
	padding: 5px 0 10px 0;
	border-bottom: #E6E1FB 1px dotted;
	}
.kiji_link_right h2 {
	font-size: 17px;
	padding: 0 0 -2px 0;
	margin: 0 0 10px 0;
	font-weight: normal;
	letter-spacing: -0.02em;
	}
.kiji_link_cat ul {
	padding: 0;
	margin: 0;
	}
.kiji_link_cat ul li {
	display: inline-block;
	border: #fff solid 1px;
	border-radius: 4px;
	padding: 3px 5px 5px 5px;
	margin: 0 2.5px 5px 0;
	font-size: 12px;
	}
.kiji_link_cat ul li a {
	color: #fff;
	text-decoration: none;
	}
@media screen and (max-width: 949px) {
.kiji_link {
	margin: 0 0 10px 0;
	padding: 5px 0 10px 0;
	}
.kiji_link_right h2 {
	font-size: 16px;
	line-height: 1.5em;
	margin-top: -4px;
	}
}
.kiji_link_right h2 a {
	color: #fff;
	}
.kiji_link_right time {
	font-size: 12px;
	background-image: url("/wp-content/themes/deepspace2.0/image/tokei.png");
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-background-size: auto 41%;
	background-size: auto 41%;
	margin: -3px 0 5px 0;
	padding: 10px 0 10px 20px;
	display: inline-block;
	}
.kiji_link_left img {
	height: auto;
	max-height: 200px;
	object-fit: cover;	
	}

/* new_btn */
.new_btn {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	margin: 30px auto;
	padding: 15px;
	border: #fff solid 1px;
	border-radius: 30px;
	width: 80%;
	max-width: 250px;
	}
.new_btn:hover {
	opacity: 0.6;
	}

/* wpulike */	
.wpulike-default .count-box:before {
	border-bottom-color: #fff !important;
	border-left-color: #fff !important;
	background: #000 !important;
	}
.wpulike-default .count-box {
	background-color: #000 !important;
	color: #fff !important;
	box-shadow: 0 0 0 1px #fff inset !important;
	line-height: 25px !important;
	font-size: 12px !important;
	padding: 0 8px !important;
	}
.wpulike-default button.wp_ulike_btn {
	background-color: rgb(255 255 255 / 0) !important;
	min-height: 28px !important;
	min-width: 28px !important;
	}
.wpulike {
	padding: 30px 0 0 0 !important;
	text-align: right;
	}
.wp_ulike_btn.wp_ulike_put_image:after {
	width: 27px !important;
	height: 27px !important;
	}
.wp_ulike_btn.wp_ulike_put_image.wp_ulike_btn_is_active:after {
	width: 27px !important;
	height: 27px !important;
	}

/* top_good */	
.top_good .wpulike-default .count-box:before {
	border: none !important;
	background: none !important;
	}
.top_good .wpulike-default .count-box {
	background: none !important;
	color: #fff !important;
	box-shadow: none !important;
	line-height: 20px !important;
	font-size: 12px !important;
	padding: 0 !important;
	margin: 0 5px!important;
	}
.top_good .wpulike-default button.wp_ulike_btn {
	background-color: rgb(255 255 255 / 0) !important;
	min-height: 14px !important;
	min-width: 14px !important;
	}
.top_good .wpulike {
	margin: -12px 0 0 1px;
	padding: 0 !important;
	text-align: left;
	}
@media screen and (min-width: 950px) {
.top_good {
	margin-left: -1px;
	}
}
@media screen and (max-width: 949px) {
.top_good .wpulike {
	margin: -18px 0 0 1px;
	}
}
.top_good .wpulike button {
	margin: 0 !important;
	padding: 0 !important;
	}	
.top_good .wp_ulike_btn.wp_ulike_put_image:after {
	width: 16px !important;
	height: 16px !important;
	}
.top_good .wp_ulike_btn.wp_ulike_put_image.wp_ulike_btn_is_active:after {
	width: 16px !important;
	height: 16px !important;
	}

/* pagination */
.pagination {
	margin: 30px auto;
	padding: 0;
	text-align: center !important;
	max-width: 700px;
	}
.page-numbers {
	display: inline-block;
	margin-right: 8px;
	padding: 3px 8px;
	color: #fff;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 50px;
	font-size: 13px !important;
	}
span.page-numbers {
	margin-right: 8px;
	padding: 3px 8px;
	color: #000;
	background-color: rgb(255 255 255 / 1) !important;
	border: 1px solid #fff;
	border-radius: 50px;
	font-size: 13px !important;
	}
.page-numbers.dots {
	background-color: rgb(255 255 255 / 0) !important;
	box-shadow: none;
	border: none;
	color: #fff; 
	padding: 0;
	}
a.page-numbers {
	text-decoration: none !important;
	}	

@media screen and (max-width: 949px) {
.page-numbers,
span.page-numbers {
	margin-right: 2px;
	margin-left: -5px;
	padding: 1px 8px 3px 8px;
	}
.page-numbers.dots {
	margin-right: 2px;
	padding: 1px 0 2px 0;
	}
}
ul.list {
	margin: 50px 0 50px -35px;
	list-style: none;
	}
ul.list li {
	background-image: url("/wp-content/themes/deepspace/image/h2_bg.png");
	background-position: top 8px left;
	background-repeat: no-repeat;
	-webkit-background-size: 8px auto;
	background-size: 8px auto;
	margin: 0 0 15px 0;
	padding: 0 0 0 13px;
	}

/* kiji_menu */
.kiji_menu {
	text-align: center;
	border-top: #fff 1px dotted;
	border-bottom: #fff 1px dotted;
	margin: 30px 0;
	padding: 20px 0;
	}
.kiji_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}
.kiji_menu ul li {
	display: inline;
	margin: 0 10px;
	padding: 0;
	font-size: 14px;
	}
.kiji_menu ul li a {
	color: #fff;
	text-decoration: none;
	}
.kiji_menu ul li a:hover {
	text-decoration: underline;
	}
.kiji_menu ul li:nth-child(1):before {
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f015';
	color: #fff;
	}
.kiji_menu ul li:nth-child(2):before {
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f040';
	color: #fff;
	margin-right: 2px;
	}
.kiji_menu ul li:nth-child(3):before {
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f1c5';
	color: #fff;
	margin-right: 2px;
	}
@media screen and (max-width: 949px) {
.kiji_menu {
	margin: 30px 0;
	padding: 25px 0 18px 0;
	}
.kiji_menu ul:after {
	content: "";
	display: block;
	clear: both;
	}	
.kiji_menu ul li {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;	
	float: left;
	width: 33.333333%;
	margin: 0;
	padding: 0;
	text-align: center;
	display: block;
	color: #fff;
	line-height: 1.5em;
	text-decoration: none;
	}
.kiji_menu ul li:nth-child(1):before {
	display: block;
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f015';
	color: #fff;
	font-size: 200%;
	margin-bottom: 8px; 
	}
.kiji_menu ul li:nth-child(2):before {
	display: block;
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f040';
	color: #fff;
	font-size: 200%;
	margin-bottom: 8px; 
	}
.kiji_menu ul li:nth-child(3):before {
	display: block;
	font-family: FontAwesome;
	vertical-align: middle;
	content: '\f1c5';
	color: #fff;
	font-size: 200%;
	margin-bottom: 8px; 
	}
}

/*============================================================
メインカラム - 投稿ページ・個別ページ共通
============================================================*/
.main_column {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0;
	margin: 0;
	}

/* --------------- 記事エリア・見出し --------------- */
/* kiji_area */
.kiji_area {
	margin: 0;
	padding: 20px;
	background-color: rgb(0 0 0 / 0.8);
	border-radius: 12px;
	}
@media screen and (max-width: 949px) {
.kiji_area {
	padding: 10px;
	}
}

/* h1 */
.kiji_area h1 {
	display: block;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: -0.05em;
	padding: 10px 0 20px 0;
	margin: 0 0 30px 0;
	border-bottom: #ccc 1px dashed;
	text-align: center;
	}
@media screen and (max-width: 949px) {
.kiji_area h1 {
	font-size: 20px;
	}
}
/* h2 */
.kiji_area h2.kiji_h2 {
	display: block;
	font-weight: bold;
	text-align: left;
	font-size: 20px;
	color: #fff;
	background-image: url("/wp-content/themes/deepspace2.0/image/h2_bg.png");
	background-position: top 31px left 1px;
	background-repeat: no-repeat;
	-webkit-background-size: auto auto;
	background-size: 12px auto;	
	padding: 20px 0 2px 19px;
	margin: 45px 0 15px 0;
	clear: both;
	text-shadow: #000 2px 2px 0;
	letter-spacing: -0.02em;
	}
@media screen and (max-width: 949px) {
.kiji_area h2.kiji_h2 {
	background-position: top 32px left 1px;
	padding: 20px 0 2px 19px;
	margin: 45px 0 15px 0;
	clear: both;
	text-shadow: #000 2px 2px 0;
	}
}

/* --------------- 投稿日 --------------- */
/* postinfo */
.postinfo {
	margin: -10px 0 23px 0;
	font-size: 13px;
	}
.postinfo a	{
	color: #fff;
	text-decoration: none;
	}
.postinfo ul {
	padding: 0;
	margin: 0;
	}
.postinfo ul li {
	display: inline-block;
	border: #fff solid 1px;
	border-radius: 4px;
	padding: 3px 5px 5px 5px;
	margin: 0 2.5px 5px 0;
	}
.postinfo ul li a:hover {
	opacity: 0.6;
	}
	
/* posttime */
.posttime {
	margin-top: -68px;
	text-align: right;
	}
time {
	font-size: 13px;	
	background-image: url("/wp-content/themes/deepspace2.0/image/kijiinfo.png");
	background-position: right center;
	background-repeat: no-repeat;
	-webkit-background-size: auto 50%;
	background-size: auto 50%;
	margin: 0 0 5px 0;
	padding: 12px 20px 8px 0;
	display: inline-block;
	}

/* pagenav */
.pagenav {
	overflow: hidden;
	margin-top: 70px;
	margin-bottom: 30px;
	clear: both;
	}
@media screen and (max-width: 949px) {
.pagenav {
	margin-top: 70px;
	margin-bottom: 30px;
	}
}
.pagenav a {
	border: solid 1px #fff;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	}
.pagenav a:hover {
	opacity: 0.6;
	}
span.old a	{
	float: left;
	background-image: url("/wp-content/themes/deepspace2.0/image/yajirushi_left.png"); 
	background-position: left -2px center;
	background-repeat: no-repeat;
	-webkit-background-size: auto 15px;
	background-size: auto 15px;
	margin: 0;
	padding: 3px 5px 5px 12px;
	display: inline-block;
	}
span.new a	{
	float: right;
	background-image: url("/wp-content/themes/deepspace2.0/image/yajirushi_right.png"); 
	background-position: right -2px center;
	background-repeat: no-repeat;
	-webkit-background-size: auto 15px;
	background-size: auto 15px;
	margin: 0;
	padding: 3px 12px 5px 5px;
	display: inline-block;
	}
.top_pagenav {
	overflow: hidden;
	margin: 15px 0 5px 0;
	clear: both;
	}
.top_pagenav a {
	border: solid 1px #fff;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	}
.top_pagenav a:hover {
	opacity: 0.6;
	}

/* --------------- コメントを送信する --------------- */
/* comment */
.comment {
	display: block;
	margin: 40px 0 0 0;                  
	padding: 0 20px 20px 20px;
	border: 1px solid #fff;
	position: relative;
	border-radius: 2px;
	}
.comment span.ttl {
	display: inline-block;
	background: #fff;
	border-radius: 2px;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	padding: 1px 5px 3px 5px;
	position: absolute;
	top: -10px;
	left: 8px;
	}
.wpcf7-form textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;	
	margin: 10px 0 5px 0;
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	font-size: 15px;
	background-color: #fff;
	color: #000;
	font-family: MidashiFont;
	src: url("/wp-content/themes/deepspace2.0/font/font.ttf") format("truetype");
	}
.wpcf7-form textarea {
	height: 100px;
	resize: vertical;
	}
.wpcf7-form input[type="submit"] {
	font-family: MidashiFont;
	src: url("/wp-content/themes/deepspace2.0/font/font.ttf") format("truetype");
	border: #fff 1px solid;
	border-radius: 30px;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	padding: 5px 10px 7px 10px;
	cursor: pointer;
	font-weight: normal;
	}
.submit_btn {
	margin: -10px 0;
	text-align: center;
	}
.wpcf7-form input[type="submit"]:hover {
	opacity: 0.6;
	}
.wpcf7-spinner {
	display: none !important;
	}
.wpcf7 form.sent .wpcf7-response-output {	
	background-color: #20A779;
	color: #ffffff;
	font-size: 14px;
	padding: 10px 15px 12px 59px;
	border: none;
	border-radius: 4px;
	line-height: 1.75em;
	background-image: url("/wp-content/themes/deepspace2.0/image/send.png"),url("/wp-content/themes/deepspace2.0/image/send_bg.png");
	background-repeat: no-repeat,no-repeat;
	background-position: center left 11px,top left;
	-webkit-background-size: auto auto,49px 100%;
	background-size: auto auto,49px 100%;
	}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	background-color: #007BC3;
	color: #ffffff;
	font-size: 14px;
	padding: 10px 15px 12px 59px;
	border: none;
	border-radius: 4px;
	line-height: 1.75em;
	background-image: url("/wp-content/themes/deepspace2.0/image/error.png"),url("/wp-content/themes/deepspace2.0/image/error_bg.png");
	background-repeat: no-repeat,no-repeat;
	background-position: center left 11px,top left;
	-webkit-background-size: auto auto,49px 100%;
	background-size: auto auto,49px 100%;
	}
.wpcf7-not-valid-tip {
	display: none !important;
	}
.share_btn,.share_img {
	height: 28px;
	text-align: right;
	margin: 10px 0;
	}
.grecaptcha-badge {
	visibility: hidden;
	}
@media screen and (max-width: 949px) {
.comment {               
	padding: 0 15px 15px 15px;
	}
}

/* --------------- 関連タグ --------------- */
/* new_link_tag */
.new_link_tag {
	margin: 25px 0 0 0;
	}
.new_link_tag a {
	display: inline-block;
	border : #fff solid 1px;
	border-radius: 50px;
	padding: 2px 5px 4px 12px;
	margin: 0 8px 10px 0;
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	background-image:url("/wp-content/themes/deepspace2.0/image/tag.png");
	background-size: auto 14px;
	-webkit-background-size: auto 14px;
	background-position: center left 4px;
	background-repeat: no-repeat;
	}
.new_link_tag a:hover {
	opacity: 0.8;
	}

/* --------------- 関連記事 --------------- */
/* kanren */
.kanren	{
	margin: 30px 0 20px 0;
	padding: 20px 20px 12px 20px;
	background-color: rgb(0 0 0 / 0.8);
	border-radius: 12px;
	}
.kanren h2 {
	position: relative;
	text-align: center;
	display: block;
	width: fit-content;
	line-height: 1.2;
	margin: 15px auto 20px auto;
	padding: 0 1rem;
	font-size: 19px;
	letter-spacing: -0.05em;
	}	
.kanren h2::before, .kanren h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 2px;
	height: 1.2rem;
	background-color: rgb(255 255 255 / 1);
	}
.kanren h2::before {
    transform: rotate(-30deg);
    left: 0;
	}
.kanren h2::after {
	transform: rotate(30deg);
	right: 0;
	}
@media screen and (max-width: 949px) {
.kanren h2 {
	margin-top: 20px;
	font-size: 18px;
	}
}
.kanren ul {
	margin: 0;
	padding: 10px 0;
	list-style: none;
	margin-right: -10px;
	}
.kanren li a {
	display: block;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	padding-right: 10px;
	font-weight: bold;
	}
.kanren li a:hover {
	text-decoration: underline;
	}
.kanren ul:after {
	content: "";
	display: block;
	clear: both;
	}
.kanren li {
	float: left;
	width: 25%;
	margin-bottom: 15px;
	}
@media screen and (max-width: 500px) {
.kanren li {
	width: 50%;
	}
}
.kanren img	{
	width: 100%;
	height: auto;
	border: none;
	}
.kanren img:hover {
	opacity:0.8;
	}
@media screen and (max-width: 500px) {
.kanren	{
	padding: 10px 10px 0 10px;
	}
}

/* --------------- 目次 --------------- */	
/* mokuji */
.mokuji {
	display: block;
	margin: 50px 0 0 0;                  
	padding: 12px 5px 5px 5px;
	border: 1px solid #fff;
	position: relative;
	border-radius: 2px;
	}
.mokuji a {
	color: #fff;
	text-decoration: none;
	}
.mokuji a:hover {
	text-decoration: underline;
	}
.mokuji span.ttl {
	display: inline-block;
	background: #fff;
	border-radius: 2px;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	padding: 1px 5px 3px 5px;
	position: absolute;
	top: -10px;
	left: 8px;
	}
.mokuji ul {
	list-style: none;
	margin: 8px 0 15px -20px;
	border: none;
	font-size: 13px;
	}
.mokuji ul li {
	line-height: 1.75em;
	background-image: url("/wp-content/themes/deepspace2.0/image/h2_bg.png");
	background-position: center left;
	background-repeat: no-repeat;
	-webkit-background-size: 8px auto;
	background-size: 8px auto;
	margin: 0 0 6px 0;
	padding: 0 0 0 15px;
	}
.mokuji ul li a {
	display: block;
	}

/* --------------- 記事カード --------------- */
/* kiji_card */
ul.kiji_card {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style: none;
	list-style-image: none;
	}
ul.kiji_card li a {
	color: #fff;
	text-decoration: none;
	}
@media screen and (min-width: 500px) {
ul.kiji_card {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	}
ul.kiji_card:after {
	content: "";
	display: block;
	clear: both;
	}
ul.kiji_card li {
	width: 49%;
	padding: 20px;
	margin-bottom: 15px;
	}	
ul.kiji_card li:nth-child(odd) {
	margin-right: 1%;
	}
ul.kiji_card li:nth-child(even) {
	margin-left: 1%;
	}	
}
ul.kiji_card li {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: rgb(0 0 0 / 0.6);
	border-radius: 6px;
	}
@media screen and (max-width: 949px) {
ul.kiji_card li {
	padding: 15px;
	margin-bottom: 15px;
	}
}
ul.kiji_card li h2 {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 17px;
	letter-spacing: -0.03em;
	}
ul.kiji_card li p {
	margin: 0 0 10px 0;
	padding: 0;	
	line-height: 1.95em;
	font-size: 14px;	
	}
@media screen and (min-width: 950px) {
ul.kiji_card li img {
	display: block;
	width: 100%;
	height: auto;
	margin: 5px auto 5px auto;
	padding: 0;	
	}
}
@media screen and (max-width: 949px) {
.card_img {
	width: 100%;
	height: 130px;
	overflow: hidden;
	margin: 5px auto;
	}
.card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 40%;	
	}
}
ul.kiji_card li time {
	font-size: 12px;
	background-image: url("/wp-content/themes/deepspace2.0/image/tokei.png");
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-background-size: auto 38%;
	background-size: auto 38%;
	margin: -4px 0 5px 0;
	padding: 10px 0 10px 18px;
	display: inline-block;
	}

/* card_good */	
.card_good {
	float: right;
	}
.card_good .wpulike-default .count-box:before {
	border: none !important;
	background: none !important;
	}
.card_good .wpulike-default .count-box {
	background: none !important;
	color: #fff !important;
	box-shadow: none !important;
	line-height: 20px !important;
	font-size: 12px !important;
	padding: 0 !important;
	margin: 0 5px!important;
	}
.card_good .wpulike-default button.wp_ulike_btn {
	background-color: rgb(255 255 255 / 0) !important;
	min-height: 14px !important;
	min-width: 14px !important;
	}
.card_good .wpulike {
	margin: 0;
	padding: 0 !important;
	text-align: left;
	}
@media screen and (max-width: 949px) {
.card_good .wpulike {
	margin: -5px -4px 0 0;
	}
}
.card_good .wpulike button {
	margin: 0 !important;
	padding: 0 !important;
	}	
.card_good .wp_ulike_btn.wp_ulike_put_image:after {
	width: 16px !important;
	height: 16px !important;
	}
.card_good .wp_ulike_btn.wp_ulike_put_image.wp_ulike_btn_is_active:after {
	width: 16px !important;
	height: 16px !important;
	}

/* --------------- すべての画像 --------------- */
/* container */
#container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 0 0;
	padding: 0;
	}
.container_inner {
	flex-grow: 1;
	height: 150px;
	max-width: 50%;
	padding: 0.2em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	}
.container_inner img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	}	

/* --------------- 記事内テーブル --------------- */
/* table */
table.mithra {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin: 30px auto;
	}
table.mithra th {
	border: 1px solid #ccc;
	font-weight: normal;
	font-size: 15px;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 5px;
	width: 100%;
	}
table.mithra td {
	border: 1px solid #ccc;
	font-weight: normal;
	font-size: 14px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 10px 5px;
	}
td.persona {
	width: 25%;	
	vertical-align: top;
	text-align: center;
	}
td.overview {
	width: 75%;	
	vertical-align: top;	
	text-align: left;
	}
td.overview ul {
	margin: 0 0 0 -35px;
	list-style: none;
	}
td.overview ul li {
	background-image: url("/wp-content/themes/deepspace2.0/image/h2_bg.png");
	background-position: top 8px left;
	background-repeat: no-repeat;
	-webkit-background-size: 8px auto;
	background-size: 8px auto;
	margin: 0 0 10px 0;
	padding: 0 0 0 13px;
	}
span.b,
span.b a {
	color: #D7C2EF;
	}

/* --------------- 記事内クリック開閉 --------------- */
/* report_menu */
ul.report_menu {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
	}
ul.report_menu a {
	text-decoration: none !important;
	color: #fff !important;
	}
ul.report_menu li.report_contents {
	background: ;
	margin: 0 0 -1px 0;
	padding: 0;
	font-size: 15px;
	border-bottom: rgb(255 255 255 / 0.3) dotted 1px;
	border-left: solid 5px #fff;
	}
ul.report_menu li.report_contents a {
	padding: 10px 10px 11px 10px;
	}
.report_os {
	cursor: pointer;
	display: block;
	position: relative;
	}
.report_os:after {
	display: block;
	text-align: right;
	margin-top: -16px;
	content: "▼";
	color: #fff;
	font-size: 8px;
	}
.report_os.on:after {
	content: "✕";
	}
.report_contents_inner {
	border: none !important;
	display: none;
	background-color: rgb(0 0 0 / 0.6);
	margin: 0;
	padding: 1px 10px 15px 10px;
	}
.report_contents_inner p {
	font-size: 14px;
	}
h2.report_ttl,
h3.report_ttl {
	margin: 45px 0 0 0;
	padding: 10px 15px;
	background: #fff;
	color: #333;
	text-shadow: #fff 1px 1px 0;
	font-size: 15px;
	letter-spacing: -0.01em;
	}
@media screen and (max-width: 949px) {	
h2.report_ttl,
h3.report_ttl {
	font-size: 16px;
	}
}
img.report_img {
	margin: 0;
	padding: 0;
	height: 50px;
	width: 50px;
	}
.report_box {
	display: flex;
	display: -moz-flex;
	display: -webkit-flex;
	align-items: center;
	}
.report_box:after {
	content: "";
	display: block;
	clear: both;
	}
.report_left {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
	width: 50px;
	}
.report_right {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: right;
	margin-left: 8px;
	}
.report_right span.sub {
	display: block;
	font-size: 85%;
	margin-bottom: 3px;
	}

/*============================================================
サイドカラム - 投稿ページ・個別ページ共通
============================================================*/
/* side_column */
.side_column {
	margin: 0;
	padding: 0;
	}

/* side_column dl */
.side_column dl {
	margin: 0;
	}
@media screen and (max-width: 949px) {
.side_column dl {
	margin: 30px 0;
	}
}

/* side_column dt */
.side_column dt {
	margin: 0;
	background: rgb(0 0 0 / 0.95);
	color: #fff;
	text-align: center;
	padding: 15px 5px;
	font-size: 15px;
	font-weight: bold;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
	}
	
/* side_column dd */
.side_column dd {
	margin: 0 0 30px 0;
	padding: 0;	
	margin-left: 0px;
	background-color: rgb(0 0 0 / 0.8);	
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
	}
	
/* --------------- カテゴリ別記事 --------------- */	
/* menu_cat */
ul.menu_cat {
	margin: 0;
	padding: 5px 10px 10px 10px;
	list-style-type: none;
	list-style: none;
	list-style-image: none;
	}
ul.menu_cat li {
	background-image: url("/wp-content/themes/deepspace2.0/image/sankaku.png");
	background-size: auto 15px;
	-webkit-background-size: auto 15px;
	background-position: center right 5px;
	background-repeat: no-repeat;
	border-bottom: #ccc 1px dotted;
	}
ul.menu_cat li:last-child {
	border-bottom: none;
	}
ul.menu_cat li a {
	display: block;
	color: #fff;
	font-size: 13px;
	line-height: 1.5em;
	margin: 0;
	padding: 8px 10px;	
	text-decoration: none;
	font-weight: normal;
	}
ul.menu_cat li a:hover {
	opacity: 0.5;
	}

/* --------------- タグのついた記事 --------------- */	
/* menu_tag */
ul.menu_tag {
	margin: 0;
	padding: 15px 5px 15px 10px;
	list-style: none;
	text-align: center;
	}
ul.menu_tag li {
	display: inline-block;	
	margin-bottom: 15px;
	}
ul.menu_tag li a {
	border : #fff solid 1px;
	border-radius: 50px;
	padding: 2px 5px 4px 12px;
	margin: 0 4px 0 0;
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	background-image:url("/wp-content/themes/deepspace2.0/image/tag.png");
	background-size: auto 14px;
	-webkit-background-size: auto 14px;
	background-position: center left 4px;
	background-repeat: no-repeat;
	}
ul.menu_tag li a:hover {
	opacity: 0.8;
	}

/* --------------- 空に堕ちる人 --------------- */	
dd.profbox {
	margin-top: -10px;
	padding: 5px 10px;
	text-align: center;
	}
dd.profbox p {
	font-size: 13px;
	}

/* --------------- 月別アーカイブ --------------- */	
dd.widgetbox ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style: none;
	list-style-image: none;
	}
dd.widgetbox ul.wp-block-archives {
	margin: 0;
	padding: 5px 10px 10px 10px;
	}
dd.widgetbox ul.wp-block-archives li {
	background-image: url("/wp-content/themes/deepspace2.0/image/sankaku.png");
	background-size: auto 15px;
	-webkit-background-size: auto 15px;
	background-position: center right 5px;
	background-repeat: no-repeat;
	border-bottom: #ccc 1px dotted;
	}
dd.widgetbox ul.wp-block-archives li:last-child {
	border-bottom: none;
	}
dd.widgetbox ul.wp-block-archives li a {
	display: block;
	color: #fff;
	font-size: 13px;
	line-height: 1.5em;
	margin: 0;
	padding: 8px 10px;	
	text-decoration: none;
	font-weight: normal;
	}
dd.widgetbox ul.wp-block-archives li a:hover {
	opacity: 0.5;
	}

/*============================================================
レイアウトの調整
============================================================*/
@media screen and (min-width: 950px) {
.contents:after {
	content: "";
	display: block;
	clear: both;
	}
.main_column {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
	width: 72.5%;
	margin-right: 1.5%;
	}
.side_column {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: right;
	width: 25%;
	margin-left: 1%;
	}
}
@media screen and (min-width: 950px) {
.pc_none {
	display: none;	
	}
}
@media screen and (max-width: 949px) {
.sp_none {
	display: none;	
	}
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	}
.mt30 {
	margin-top: 30px !important;
	}
.mb30 {
	margin-bottom: 30px !important;
	}