/*
	template name:mito botanical park
*/

@charset "utf-8";
/* CSS Document */

/*********************************************************/
/*ページ共通項目*/
/*********************************************************/
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	margin: 0px 15px 0px 2px;
	padding: 0px;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
}

body.spring_summer{
	background-image: url("images/back_spring_summer.jpg");
}
body.autumn{
	background-image: url("images/back_autumn.jpg");
}
body.winter{
	background-image: url("images/back_winter.jpg");
}
.container {
	max-width: 1100px;
	height: auto;
	margin: 0px;
	padding:0px 5px;
	margin: 0 auto;
	background-color: rgba(255,255,255, 0.5);
	padding-top: 10px;
}
p {
	margin: 0px;
	padding: 0px;
	font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #000000;
}
h1 {
	font-size: 28px;
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 16px;
}
article {
	clear: both;
}
ul{
	list-style-type:none;
}
.clear {
	clear: both;
}
main img{
	max-width:100%;
	height: auto;
}
/*********************************************************/
/*　ヘッダー　*/
/*********************************************************/

header {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 10px;
}
header h1{
	margin:0;
	padding:0;
}
header .logo {
	display:flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 auto;
	text-align: center;
}
header .logo .logobox {
	text-align: left;
}
header .logo .logobox p {
	margin: 0px;
	padding: 0px;
	color: #000000;
}
header .logo a {
	color: #000000;
	transition: 0.2s;
}
header .logo a:hover {
	opacity: 0.5;
}
header .logo .toiawase {
	height: auto;
	color: #787474;
	text-align: right;
}
header .logo .toiawase p {
	margin: 0px;
	padding: 0px;
	color: #000000;
	line-height: 200%;
}
/* 「お問合せ・よくある質問」 */
header .arrow {
	position: relative;
	padding-left: 20px;
}
header .arrow:before {
	content: '';
	width: 16px;
	height: 16px;
	background: #4C4C4C;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -8px;
}
header .arrow:after {
	content: '';
	width: 0;
	height: 0;
	border: solid 5px transparent;
	border-left: solid 5px #ffffff;
	position: absolute;
	top: 50%;
	left: 5px;
	margin-top: -5px;
	margin-left: 1px;
}
/*パンくずリスト*/
.bread_list{
	display:flex;
}

.bread_list li::before {
    content: ">";
    padding:0px 5px;
}
.bread_list li:nth-child(1)::before {
	content:"";
}
.bread_list a {
    padding: 5px 5px;
    transition: all 0.5s;
}

.bread_list a:hover{
	background-color: antiquewhite;
    border-radius: 10px;
}
/*********************************************************/
/* トップイメージの淵部分 */
/*********************************************************/
article.topimage_base {
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto;
    background-position: left top,right bottom;
    background-size: 35%;
	background-repeat: no-repeat;
	position: relative;
}
article.topimage_base::before {
    content: "";
    width: 115%;
    height: 110%;
    position: absolute;
    top: -5%;
    left: -7%;
    background-size: contain;
    background-position: left top,right bottom;
    z-index: 0;
}

body.spring_summer .topimage_base::before {
	background-image: url(images/backimg_leaf_green_1.png),url(images/backimg_leaf_green_2.png);
}
body.autumn .topimage_base::before {
	background-image: url(images/backimg_leaf_red_1.png),url(images/backimg_leaf_red_2.png);
}
body.winter .topimage_base::before {
	background-image: url(images/backimg_leaf_red_1.png),url(images/backimg_leaf_red_2.png);
}
article.topimage_base .topimage_box {
	width: 90%;
	margin: 0px auto;
    height: auto;
    padding:0px;
}

/*********************************************************/
/*トップメイン*/
/*********************************************************/

article.main {
	width: 100%;
	height: auto;
	background-color: rgba(255,255,255);
	margin-top: 10px;
	display:flex;
}

article.main .main_left {
	width:500px;
	flex-grow:1;
	margin-right: 15px;
	background-color: white;
}
/*********************************************************/
/*　新着情報・展示・教室・その他アイコン　*/
/*********************************************************/

.main_left h3{
	text-align: center;
	border-radius: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin: 10px auto 0px;
}
.main_left .info h3{
	color: #FFFFFF;
	background-color: #ff4141;
}
.main_left .info ul{
	max-height: 200px;
    overflow: auto;
    padding-left: 10px;
}

.main_left .info li{
	list-style-type:none;
	border-bottom: dotted 2px #B927A2;
	padding-top: 15px;
	padding-bottom: 5px;
	font-size: 1rem;
	text-indent: 0.5rem;
	position:relative;
}

.main_left .info li a{
	display:inline-block;
    position: relative;
    z-index: 90;
    width:95%;
    text-indent: 0;
   	display: flex;
   	align-items: center;
}
.info span.circle{
    content: "";
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    display: inline-block;
    margin-right: 5px;
    border-radius: 10px;
}
span.check{
    background-color: #ff2222;
    color: white;
    border-radius: 13px;
    padding: 0px 10px;
    font-family: cursive;
    display:inline-block;
    position:relative;
    z-index:90;
    text-indent: 0;
    height:1.5rem;
    margin-right: 10px;
}
span.check,.sampleShow{
    background-color: #ff2222;
    color: white;
    border-radius: 13px;
    padding: 0px 10px;
    font-family: cursive;
}
.main_left .event_list h3,.main_left .event_list h3 a{
	color: #FFFFFF;
	background-color: #F77AC7;
	text-shadow: 0px 0px 2px grey;
}

.main_left .event_list h3:nth-of-type(even),.main_left .event_list h3:nth-of-type(even) a{
	color: #000000;
    background-color: #ffd1ed;
}
.main_left .event_list h3 a {
    font-size: 0.8rem;
    text-decoration: underline;
}
.main_left .event_area{
	max-height:300px;
	overflow:auto;
}
.main_left .event_box{
    display:flex;
	flex-direction: row-reverse;
    align-items: center;
    z-index: 90;
    position:relative;
    border-bottom-style: dashed;
    border-bottom-width: 2px;
    border-bottom-color: #ffd766;
}
.main_left .event_box a{
	text-decoration:underline;
	font-weight:bold;
}
.main_left .event_box a:link{
	color:#0000ee;
}
.main_left .event_box a:visited{
	color:#551b8c;
}
.main_left .event_box:nth-of-type(odd) {
    background-color: #fff4cc;
}
.main_left .event_box:nth-of-type(even) {
    background-color: #fffdca;
}
.main_left .child_event_box{
	background-color: #eff9ff !important;
	padding-top: 15px;
}
.main_left .closed_event{
	background-color: #e8e8e8c9 !important;
}

.main_left .event_box>div{
    position: relative;
    z-index: 90;
}
.main_left .event_box::before,.main_left .info li::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    transition: all 0.3s;
}
.main_left .child_event_box::after{
	content:"子ども教室";
	display:block;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: #2cbdff;
    text-shadow: 0px 0px 9px #0000e1;
    color: white;
    text-align: center;
    border-radius: 10px;
    z-index: 99;
}
.main_left .event_box:hover::before,.main_left .info li:hover::before{
	background-color: #fffc6f91;
}
.main_left .closed_event:hover::before{
	background-color: #e8e8e8c9;
}
.main_left .child_event_box:hover::before{
	background-color: #d5f6fc;
}
.main_left .event_list .event_img{
    padding-left: 10px;
    max-width: 130px;
    height: auto;
}
.main_left .event_list .event_img img{
	width: 100%;
    height: auto;
}

.main_left .event_list  h4{
	text-align: left;
	margin: 0px;
	padding: 0px;
	margin-bottom: 10px;
	padding-left: 10px;
	margin-top: 10px;
    font-size: 1.1rem;
    flex-grow: 1;
    width: 100%;
}

.main_left .event_list p {
	padding-left: 20px;
}
.event_text {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}
.event_text h4::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: #ce56bb;
    display: inline-block;
    margin-right: 5px;
    border-radius: 10px;
}
.event_text>p{
	width:70%;
	flex-grow:1;
}
.event_text>a{
	width:20%;
}
.event_text>a>img{
	width: 100%;
    height: auto;
}
.main_left .event_list span.receive_start {
	border-radius: 10px;
    padding: 0px 5px;
    position: relative;
    display: inline-block;
}
.main_left .event_list span.receive_start:after {
    position: absolute;
    content: "";
    background-color: #a0f86f;
    background: linear-gradient(#ffffff00,#a0f86f);    background: -ms-linear-gradient(#ffffff00,#a0f86f);
    height: 43%;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    border-radius: 10px;
}
.event_box:nth-of-type(even) .event_text h4::before {
    background-color: #cf4f4f;
}
.main_left .img_area{
	max-height: 300px;
    overflow: auto;
    display:flex;
    flex-wrap:wrap;
    background-color: #ffd6b9;
}
.main_left .img_area a{
	margin:5px;
	max-width: 30%;
    text-align: center;
}
.main_left .img_area a img{
	max-width:100px;
	height:auto;
}
.event_text>a{min-width: 150px;}


.main_right{
    min-width: 300px;
}
.main_right a{
	display:block;
	transition: all 0.5s;
}
.main_right a:hover{
	transform: scale(1.1,1.1);
}
.main_right img{
	width:100%;
	height:auto;
}
.main_right .layer_link{
	position:relative;
}
.main_right .layer_link h4,.main_right .layer_link p{
	position:absolute;
}
.main_right .now h4{
    border: 1px dashed white;
    border-style: dotted;
    border-width: 5px 0px;
    border-color: #797777;
    display: inline-block;
    padding: 5px 28px;
    transform: rotate(-10deg);
    right: 0;
    bottom: 10%;
    margin: 0;
    color: #191919;
    font-size: 1.1rem;
    background-color: #a4ffab;
}
.main_right .now .date{
    background-color: #fffca4;
    right: 0;
    padding: 4px;
    border-radius: 0px;
	text-align: center;
    transform: rotate(-10deg);
	top:7px;
	left: 0;
	width: 100px;
}
.main_right .now .date span{
	border-style: dotted;
    border-width: 3px 0px;
    border-color: #00e16f;
    display: block;
}
@media screen and (max-width:700px),print{
	article.main{
	    flex-wrap: wrap;
	}
	.main_left{
		width:100%;
	} 
	.main_right{
		width:100%;
		display: flex;
    	flex-wrap: wrap;
    	align-items: end;
    	justify-content: space-around;
	}
	.main_right>a,.main_right>div{
		margin: 5px;
	}

}
/*********************************************************/
/*ボランティア同好会*/
/*********************************************************/
article.relation_group {
	margin-top: 20px;
	border-radius: 0px 30px 0px 0px;
}
.volunteer{
	background-color: #F1F9EF;
	border-radius: 0px 30px 0px 0px;
}
.doukoukai{
	background-color: #F7EEE4;
	border-radius: 0px 30px 0px 0px;
}
article.relation_group h1{
	text-align: center;
	font-size: 32px;
	margin: 0px;
    padding: 0px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 0px;
    border-radius: 0px 30px 0px 0px;
    color: black;
}
.volunteer h1{
	background-color: #c7ffb8;
}
.doukoukai h1{
	background-color: #ffdab2;
}
article.relation_group p{
	text-align: center;
}
article.relation_group .banner_wrap {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
article.relation_group .banner_wrap div,article.relation_group .banner_wrap a{
	margin:10px 10px;
	transition: all 0.5s;
}
article.relation_group .banner_wrap a:hover{
	transform: scale(1.1,1.1);
}    
article.relation_group .banner_wrap h3{
	text-align: center;
	margin: 0;
    font-size: 1rem;
	color: #FFFFFF;
	padding: 3px 5px;
}

.volunteer h3{
	background-color: #356206;
}

.doukoukai h3{
	background-color: #F59E0F;
}
article.relation_group .banner_wrap img{
	width:100%;
}
@media screen and (max-width:700px),print{
	article.relation_group .banner_wrap a{
		width:45%;
	}
	article.relation_group h1{
		font-size:1.3rem;
		padding:15px 0px;
	}
}
/*********************************************************/
/*　バナー広告エリア　*/
/*********************************************************/
.koukoku {
	width: 100%;
	margin: 0 auto;
	display:flex;
	flex-wrap:wrap;
    justify-content:center;
    margin:10px 0px;
    background-color:#ffe9f8;
}
/* 広告バナー部分 */
.koukoku p {
	width: 150px;
	height: 50px;
	background-color: #707070;
	margin:10px 10px;
}
.koukoku .koukoku_box {
	text-align: center;
	color: #FFFFFF;
}
.koukoku a {
	transition: 0.2s;
}
.koukoku a:hover{
    transform: scale(1.1,1.1);
}
/*********************************************************/
/*　ページトップへ戻るボタン　*/
/*********************************************************/
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
	font-size: 20px;
	display: block;
	z-index: 999;
	padding-top: 10px;
	width: 50px;
	height: 40px;
	background-color: #4DCC50;
/* トップに戻るボタン、丸部分 */
 font-weight: bold;
	text-decoration: none;
	text-align: center;
	border-radius: 50px;
	color: #FFFFFF;
/* トップに戻るボタン、三角部分 */
 -webkit-border-radius: 50px;/* 50%でもOK */
	-moz-border-radius: 50px;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/*********************************************************/
/*　フッター（電話＆住所、地図、コピーライト）　*/
/*********************************************************/
footer {
    margin: 10px auto;
}
footer .inner {
	height: auto;
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
footer .inner iframe {
	width: 95%;
}
footer .inner .dantai {
	float: left;
	color: #000000;
}
footer .inner .dantai h2 {
	color: #000000;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}
footer .inner .address {
	width: 400px;
	height: 200px;
	float: left;
	color: #FFFFFF;
	margin-left: 160px;
	padding-top: 30px;
}
footer .inner .map {
	width: 400px;
	height: 200px;
	float: right;
	margin-right: 160px;
}
footer .inner h2 {
	font-size: 24px;
	margin: 0px;
	padding: 0px;
}
footer .inner .address p {
	font-size: 16px;
}
footer .inner .copyright {
	margin: 0 auto;
	text-align: center;
}
footer .inner .copyright p {
	font-size: 10px;
	margin: 10px;
}
#return_icon{
	position:fixed;
	display:inline-block;
	bottom:5px;
	right:5px;
	cursor:pointer;
	width:60px;
	z-index: 100;
}
#return_icon:hover{
	transform:scale(1.3,1.3);
}
#return_icon img{
	width:100%;
}
@media print{
	#return_icon{
		display:none;
	}
}

/*イベント告知画像表示用*/
#blackscreen_wraper{
	display:none;
	z-index: 96;
}
#blackscreen_wraper,#blackscreen{
	position:fixed;
    width: 100%;
    height: 100%;
	top:0;
	left:0;
}
#blackscreen{
    background-color:#000000b3;
    z-index: 97;
}
#blackscreen_test img{
	left:-1000px;
}
#blackscreen_wraper img{
    position: fixed;
    z-index: 98;
}
#blackscreen_wraper i{
    position: fixed;
    z-index: 99;
    font-size: 2.5rem;
    color: #ff5757;
    background-color: white;
    border-radius: 100px;
    box-shadow: 1px 1px 1px black;
    cursor:pointer;
}
blockquote{
	background-color: #e7f9ff;
    border-radius: 10px;
    padding: 10px;
    border-style: outset;
    border-color: #00a0a0;
    border-width: 3px;
}
/*表スタイル*/
/*table-style-1*/
main table{margin-left:20px;}
main table td{padding:5px;}
.table-style-1 {
	width:100%;
	padding-left: 20px;
	border-spacing: 0px 5px;
}
.table-style-1 td{
    padding: 10px;
}
.table-style-1 td:nth-child(1){
	background-color: #ffedec;
    border-radius: 10px 0px 0px 10px;
    padding-right: 15px;
    border: 1px solid #f6b8b5;
    min-width: 110px;
}
.table-style-1 td:nth-child(2){
	background-color: #ffc7c4;
    border-radius: 0px 10px 10px 0px;
    position: relative;
	text-shadow: 0px 0px 1px #e1e1e1;
}
.table-style-1 td:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 25%;
    left: -10px;
    border-width: 10px 10px 10px 0px;
    border-color: #ffc7c4;
    border-radius: 2px;
    width: 0px;
    height: 0px;
    border-style: solid;
}
.table-style-1 a{
	color:blue;
	text-decoration:underline;
}
@media screen and (max-width:450px){
	.table-style-1{
		padding-left: 0;
	}
	.table-style-1 td:nth-child(1){
    	min-width: 0px;
	}
}
/*table-style-2*/
.table-style-2{
    border-collapse: collapse;
    border: 1px solid #d3d3d3;
    border-radius: 12px;
    width: auto;
}
.table-style-2 th{
    background-color: #f9ff98;
    border-width: 1px 0px;
    padding: 10px 5px;
}
.table-style-2 td{
	background-color: #ffffd5;
    border-width: 1px 0px;
    border-color: #d3d3d3;
    border-style: groove;
    padding: 10px 5px;
}
.table-style-2 tr td:nth-of-type(1) {
    text-align: center;
    padding: 10px;
    border-right: 1px solid gray;
}

@media screen and (max-width:450px){
	.table-style-2 tr{
	    display: flex;
	    flex-wrap: wrap;
	    border: 1px solid black;
	}
	.table-style-2 th{
		width:100%;
	    border-width: 1px 0px;
	    border-color: #d3d3d3;
	    border-style: groove;
	}
	.table-style-2 td{
		width: 100%;
	    border-width: 0px;
	    padding: 5px 5px 5px 20px;
	}
	.table-style-2 td br{
		display:none;
	}
	.table-style-2 td:nth-child(1) {
	    padding-left: 5px;
	    border-bottom: 1px dashed gray;
	}
}
/*table-style-3*/
.table-style-3{
	border-spacing: 4px;
	width:100%;
}
.table-style-3 td {
    padding: 10px;
    padding-left: 5px;
    background-color: #e8ffdf;
    position: relative;
}
.table-style-3 td:nth-child(1) {
    width: 60px;
}
.table-style-3 td:before {
    content: "";
    background-image: url(../images/tri.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 20px 100%;
}
.table-style-3 td:after {
	content: "";
    background-image: url(../images/tri.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 20px 100%;
    transform: scale(1,-1);

}
/* youtubeプラグイン */
.youtube_plugin,.wp-block-embed-youtube{
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
	text-align: center;
}
.youtube_plugin iframe,.youtube_plugin object,.youtube_plugin embed ,.wp-block-embed-youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*各記事のページネーション*/
.next_or_previous_page{
    display: flex;
    margin-left:0;
    margin-top: 5px;
}
.next_or_previous_page>div {
    width: 45%;
    flex-grow: 1;
    transition: all 0.05s;
}
.next_or_previous_page>div:hover{
	    transform: scale(1.05,1.05);
}
.next_or_previous_page a {
    text-align: center;
    padding: 15px 0px;
    display: block;
    height: 100%;
}
.next_page {
    background-color: #ffe2e2;
}
.previous_page {
    background-color: #b6ebff;
}

/*** 印刷 ****/
@media print{
	body{
    	background:none;
	}
}