@charset "utf-8";
/* CSS Document */

/* layout base css
-----------------------------------------------------*/

/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}

img {
	border: none;
	height: auto;
	vertical-align: top;
	max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	font-size: 100%;
}

h1 img,h2 img,h3 img,h4 img,h5 img,h6 img {
}

ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

mark {
    background-color: inherit;
    color: inherit;
}

/* ==============================================
    clear
============================================== */
.cbox {
	zoom: 100%;
}
.cbox:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.clear {
	clear: both;
	height: 1px;
	font-size: 1px;
}
.clear hr {
	display: none;
}

hr.clear {
	zoom: 1;
	clear: both;
	height: 0;
	border: none;
	font-size: 0;
}
*:first-child+html hr.clear {/* for IE7 */
	border-top: 1px solid;
} 

/* ==============================================
    body
============================================== */
body {
	text-align: center;
	line-height: 1.4;
	color: #3c3c3c;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 700px) {
	body {
		min-width: 300px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
}
body,
input,
select,
textarea {
	font-family: Meiryo,Arial,Roboto,'Droid Sans',YuGothic,'Lucida Grande','Hiragino Kaku Gothic ProN', sans-serif;
}
form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
	transition: all .4s;
	text-decoration: underline;
	color: inherit;
}
a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 701px) {
	a:hover,
	#pagetop img:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	a img.rollover:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
	}
}

/* ==============================================
    
============================================== */
#container,
header,
#main,
.inner {
	zoom: 1;
	margin: 0 auto;
	text-align: left;
}
#container:after,
header:after,
#main:after,
.inner:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.inner {
	width: 1000px;
}

.sp {
	display: none;
}
.switch {}
.call {}

.flexbox {
	display: flex;
}


@media screen and (max-width: 1050px) {
	.inner {
		width: 96%;
	}
}

@media screen and (max-width: 700px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.flexbox {
		display: block;
	}
}

/* ==============================================
    header
============================================== */
header {
	margin: 0 0 30px 0;
	padding: 30px 0;
	background: #eee;
}

#siteid {
	display: block;
	font-size: 1.5em;
}
#siteid a {
	color: #333;
	text-decoration: none;
}
#siteid a:hover {
	text-decoration: none;
}



@media screen and (max-width: 700px) {
	header {
		/*position: fixed;*/
		width: 100%;
		padding: 20px 0;
		/*background: rgba(255,255,255,0.9);
		border-bottom: 1px solid #ddd;
		z-index: 20;*/
	}
	
}
	
/* ==============================================
	menuBtn
============================================== */
#menuBtn {
	display: none;
}
/*#menuBtn {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
	z-index: 22;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 20px;
	height: 3px;
	margin-left: -9px;
	background: #00348b;
	top: 35px;
	left: 35px;
	transition: all .4s;
	opacity: 1;
}
#menuBtn span {
	margin-top: -1px;
	transition: opacity 150ms 50ms;
}

#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before {
	transform: translate(0, -8px);
}
#menuBtn:after {
	transform: translate(0, 6px);
}

#menuBtn.active span {
	opacity: 0;
}
#menuBtn.active:before  {
	transform: rotate(45deg);
}
#menuBtn.active:after  {
	transform: rotate(-45deg);
}
@media screen and (max-width: 700px) {
	#menuBtn {
		display: block;
		width: 60px;
		height: 60px;
	}
	#menuBtn span,
	#menuBtn:before,
	#menuBtn:after {
		top: 30px;
		left: 30px;
	}
}
@media screen and (max-width: 450px) {
	#menuBtn {
		width: 50px;
		height: 50px;
	}
	#menuBtn span,
	#menuBtn:before,
	#menuBtn:after {
		top: 25px;
		left: 25px;
	}
}*/


/* ==============================================
    container
============================================== */
#container {
	position:relative;
	margin:0 auto;
}

#contents .inner {
	display: flex;
	justify-content: space-between;
}
#main {
	flex: 1;
	margin-right: 50px;
}
#side {
	width: 260px;
}

@media screen and (max-width: 700px) {
	#contents .inner {
		flex-direction: column;
	}
	#main {
		width: 100%;
		flex: none;
		margin-right: 0;
	}
	#side {
		width: 100% !important;
		margin-top: 50px;
	}
}

/* ==============================================
    contents
============================================== */

/* Youtube レスポンシブ用 */
.movie_wrap {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 700px) {
	table.scroll {
		overflow: auto;
		white-space: nowrap;
		display: block;
		width: auto;
	}
	table.scroll tbody {
		width: 100%;
	}
	table.scroll::-webkit-scrollbar {
		height: 5px;
	}
	table.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	table.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}

/* ==============================================
    side widget
============================================== */
.widget-section {
	padding: 0 10px;
}
.widget-section .widget {
	margin-bottom: 40px;
}
.widget-title,
.widget h3 {
	background: #ddd;
	padding: 5px;
	margin-bottom: 10px;
}
.widget-section .widget ul {
	list-style: none;
	font-size: 0.875em;
}
.widget-section .widget li {
	margin-bottom: 10px;
}


.widget .wp-block-calendar {
	font-size: 13px;
}
.widget .wp-calendar-table {
	width: 100%;
	margin: 0 auto;
	
}
.widget .wp-calendar-table th,
.widget .wp-calendar-table td {
	border: 1px solid #666;
	text-align: center;
	padding: 0.25em;
}
.widget .wp-calendar-table th {
	background: #ddd;
	font-weight: bold;
}
.widget .wp-calendar-table td {
	
}

.wp-calendar-table caption {
	background: #ddd;
	padding: 5px;
	margin-bottom: 10px;
	font-weight: bold;
}
.wp-calendar-nav {
	text-align: center;
	margin-top: 5px;
}





.searchform {
	position: relative;
}

.searchform label {
	text-indent: -99999px;
	display: inline-block;
}

.searchform input[type="text"] {
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #f8f8f8;
	padding: 5px 35px 5px 5px;
	width: calc(100% - 80px);
	flex-grow: inherit;
	min-width: auto;
}

.searchform input[type="submit"] {
	border: none;
	padding: 0;
	display: block;
	position: absolute;
	background: url("image/icon_search.svg") no-repeat 0 0;
	background-size: contain;
	width: 20px;
	height: 20px;
	top: 50%;
	right: 0px;
	margin-top: -10px;
	text-indent: -99999px;
	cursor: pointer;
}

/* ==============================================
    pagetop
============================================== */
#pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
}
#pagetop span {
	display: block;
	text-indent: -99999px;
	width: 40px;
	height: 40px;
	background: #333 url("image/arrow.svg") no-repeat center center / 20px 20px;
	cursor: pointer;
	transition: .4s;
}
#pagetop span:hover {
	opacity: 0.8;
}

/* ==============================================
    footer
============================================== */
footer {
	margin: 30px auto 0;
	padding: 20px 0;
	background: #f7f7f7;
	border-bottom: 1px solid #ddd;
}

footer nav {
	list-style: none;
	
	text-align: right;
}

footer nav ul {
	list-style: none;
	
}
footer nav li {
	display: inline-block;
	padding: 0 10px;
	border-right: 1px solid #777;
	font-size: 0.875em;
}
footer nav li:first-child {
	border-left: 1px solid #777;
}

footer nav li a {
	color: #333;
}

footer address {
	font-style: normal;
}

/* ==============================================
    copyright
============================================== */
#copyright {
	text-align:center;
	font-size: 0.813em;
	color: #666;
	padding: 20px 0;
}

/* ==============================================
    breadcrumb
============================================== */

#breadcrumb {
	margin: 20px 0;
}

#breadcrumb ol {
	list-style: none;
}
#breadcrumb li {
	display: inline-block;
	color: #888;
	font-size: 0.875em;
}

#breadcrumb li a {
	color: #333;
	text-decoration: none;
}
#breadcrumb li a:hover {
	text-decoration: none;
}

#breadcrumb li a::after {
	content: ">";
	display: inline-block;
	padding: 0 5px;
}

@media screen and (max-width: 700px) {
	#breadcrumb {
		margin: 0;
		padding: 60px 0 20px;
	}
}

/* ==============================================
    entry-header
============================================== */

#entry-header {
	background: #0097cc;
	padding: 30px 0;
	margin-bottom: 30px;
}
#entry-header .pagetitle {
	color: #fff;
	font-size: 2.000em;
}


/* ==============================================
    article
============================================== */
article.post,
article.page {
	border-bottom: 1px dotted #aaa;
	padding-bottom: 10px;
	margin-bottom: 70px;
}
article.post::after,
article.paget::after,
.entry-content { content:''; display:table; clear:both; height:0; }

article.post time {
	font-size: 0.875em;
	color: #666;
	margin: 10px 0;
	display: block;
}

article.post .entry-cat {
	font-size: 0.875em;
	margin: 10px 0;
}

article.post .entry-header {
	margin-bottom: 10px;
}

article.post .entry-footer {
	font-size: 0.875em;
	margin-top: 30px;
}

.entry-title {
	font-size: 1.25em;
	margin-bottom: 20px;
}

span.entry-cat {
	/*display: inline-block;*/
	font-size: 0.813em;
	/*color: #fff;
	margin-left: 15px;*/
}
span.entry-cat a {
	/*color: #fff;
	display: inline-block;
	padding: 3px;
	background: #47884a;*/
}
span.entry-cat a:hover {
	/*text-decoration: none;*/
}



/* ==============================================
    archive
============================================== */
.archive-header {
	margin-bottom: 50px;
}
.archive-title {
	font-size: 1.5em;
}

.search_num {
	margin-top: 20px;
}

/*.archive-list ul {
	list-style: none;
	margin-bottom: 20px;
}

.archive-list li {
	padding: 10px 0;
	border-bottom: 1px dotted #ccc;
}
.archive-list li:first-child {
	border-top: 1px dotted #ccc;
}
.archive-list li time,
.archive-list li .entry-title {
	display: inline-block;
	vertical-align: middle;
}
.archive-list li time {
	width: 6.5em;
	font-size: 0.813em;
	color: #777;
}
.archive-list li h3 {
	font-weight: normal;
}
.archive-list li h3 a {
	color: #555;
	text-decoration: none;
}
*/


/* ==============================================
    pagination
============================================== */
.pagination {
	text-align: center;
}
.pagination span,
.pagination a {
	display: inline-block;
	border: 1px solid #333;
	width: 30px;
	line-height: 30px;
	font-size: 0.875em;
	font-weight: bold;
	color: #000;
	text-align: center;
	background: #fff;
	margin: 3px;
	text-decoration: none;
}
.pagination a:hover {
	background: #333;
	color: #fff;
	text-decoration: none;
}
.pagination span {
	background: #333;
	color: #fff;
}


/* ==============================================
    custom color
============================================== */

/*.has-custom-blue-color {
	color: #3d51b3;
}
.has-custom-red-color {
	color: #b7163d;
}
.has-custom-yellow-color {
	color: #ffcc00;
}
.has-custom-gray-color {
	color: #f1f4f6;
}
.has-custom-skyblue-color {
	color: #5088bf;
}
.has-custom-lightblue-color {
	color: #dde3f5;
}
.has-custom-white-color {
	color: #ffffff;
}
.has-custom-dardgray-color {
	color: #555555;
}
.has-custom-black-color {
	color: #000000;
}

.has-custom-blue-background-color {
	background-color: #3d51b3;
}
.has-custom-red-background-color {
	background-color: #b7163d;
}
.has-custom-yellow-background-color {
	background-color: #ffcc00;
}
.has-custom-gray-background-color {
	background-color: #f1f4f6;
}
.has-custom-skyblue-background-color {
	background-color: #5088bf;
}
.has-custom-lightblue-background-color {
	background-color: #dde3f5;
}
.has-custom-white-background-color {
	background-color: #ffffff;
}
.has-custom-dardgray-background-color {
	background-color: #555555;
}
.has-custom-black-background-color {
	background-color: #000000;
}*/



/* ==============================================
    entry-content
============================================== */
.entry-content {
	line-height: 1.8;
}

.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6 {
	line-height: 1.4;
}

.entry-content h1 {
	font-size: 2.000em;
	margin: 50px 0 50px;
	border-bottom: 3px solid #ccc;
}


.entry-content h2 {
	font-size: 1.500em;
	border-left: 8px solid #ccc;
	padding: 0 10px;
	margin: 50px 0 40px;
}

.entry-content h3 {
	font-size: 1.375em;
	background: #eee;
	padding: 5px;
	margin: 30px 0 20px;
}

.entry-content h4 {
	font-size: 1.25em;
	color: #464646;
	margin: 30px 0 20px;
}

.entry-content h5 {
	font-size: 1.250em;
	margin: 30px 0 20px;
}

.entry-content h6 {
	font-size: 1.125em;
	margin: 30px 0 20px;
}

@media screen and (max-width: 700px) {

}





.entry-content ul,
.entry-content ol {
	margin: 20px 0 30px 30px;
}
.entry-content li {
	line-height: 1.4;
	margin: 5px 0;
}

.entry-content p {
	font-size: 1em;
	line-height: 1.6;
	margin-bottom: 1.5em;
}

.entry-content table {
	margin: 10px auto 20px;
	width: 100%;
}
.entry-content th,
.entry-content td {
	border: 1px solid #ddd;
	padding: 10px 15px;
	background: #fff;
}
.entry-content th {
	background: #eee;
	white-space: nowrap;
	text-align: center;
}


.wp-block-button__link {
	background: #333;
	min-width: 200px;
}

.wp-block-image {
	margin: 1em 0;
}
