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

/*********************************
+
+背景
+
*********************************/
#spring{
	background-image:url(../img/spring/bg.jpg);
	background-repeat:no-repeat;
	background-size:100% auto;
	background-color:#ffbebe;
	padding: 50px 0px 40px;
}
#summer{
	background-image:url(../img/summer/bg.jpg);
	background-repeat:no-repeat;
	background-size:100% auto;
	background-color:#4ed3f4;
	padding: 50px 0px 40px;
}
#autumn{
	background-image:url(../img/autumn/bg.jpg);
	background-repeat:no-repeat;
	background-size:100% auto;
	background-color:#ffb956;
	padding: 50px 0px 40px;
}

#winter{
	background-image:url(../img/winter/bg.jpg);
	background-repeat:no-repeat;
	background-size:100% auto;
	background-color:#b3e0e3;
	padding: 50px 0px 40px;
}
@media only screen and (max-width: 768px){
#spring{
	padding: 20px 0px 40px;
}
#summer{
	padding: 20px 0px 40px;
}
#autumn{
	padding: 20px 0px 40px;
}

#winter{
	padding: 20px 0px 40px;
}

}




/*********************************
+
+ヘッダー　ロゴ
+
*********************************/
.logo{
	text-align:center;
	margin:0px auto 10px;
}
	
.logo_txt {
	text-align:center;
	margin:0px 0px 20px;
}
@media only screen and (max-width: 768px){
.logo{width:  85%;}
	
.logo_txt {
	margin: 0px auto 20px;
	width: 90%;
	text-align: left;
}
}



/*********************************
+
+季節ナビ
+
*********************************/
#tab {
	text-align: center;
	margin: 0px auto 20px;
}
#f_tab{
	text-align: center;
	margin: 20px auto 0;
}
#tab ul {
	font-size: 0;
	max-width: 995px;
	margin: 0px auto;
	background: url(../img/tab/tab_bg.png) no-repeat center top;
	background-size: contain;
}
#f_tab ul {
	font-size: 0;
	max-width: 995px;
	margin: 0px auto;
	background: url(../img/tab/tab_bg.png) no-repeat center bottom;
	background-size: contain;
}
#tab ul:after , #f_tab ul:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility:hidden;
}
#tab li , #f_tab li {
	float: left;  
}
#tab a , #f_tab a {
	display:block;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#tab a:hover , #f_tab a:hover {
	opacity: 0.5;
}
#tab .tab1 , #f_tab .tab1 {
	width: 25.607287449%;
}
#tab .tab1.on {
	background: url(../img/tab/tab01_on.png) no-repeat center top;
	background-size: contain;
}
#f_tab .tab1.on {
	background: url(../img/tab/f_tab01_on.png) no-repeat center top;
	background-size: contain;
}
#tab .tab2 , #f_tab .tab2 {
	width: 24.493927125%;
}  
#tab .tab2.on {
	background: url(../img/tab/tab02_on.png) no-repeat center top;
	background-size: contain;
}
#f_tab .tab2.on {
	background: url(../img/tab/f_tab02_on.png) no-repeat center top;
	background-size: contain;
}
#tab .tab3 , #f_tab .tab3 {
	width: 24.493927125%;
}
#tab .tab3.on {
	background: url(../img/tab/tab03_on.png) no-repeat center top;
	background-size:  contain;
}
#f_tab .tab3.on {
	background: url(../img/tab/f_tab03_on.png) no-repeat center top;
	background-size:  contain;
}
#tab .tab4 , #f_tab .tab4 {
	width: 25.4%;
}  
#tab .tab4.on {
	background: url(../img/tab/tab04_on.png) no-repeat center top;
	background-size:  contain;
}
#f_tab .tab4.on {
	background: url(../img/tab/f_tab04_on.png) no-repeat center top;
	background-size:  contain;
}



@media only screen and (max-width: 768px){
#tab {
	margin: 0px 5% 10px;
}
#f_tab{
	text-align: center;
	margin: 20px 5% 10px;
}
#tab ul , #f_tab ul {
  font-size: 0;
  width:100%;
}
#tab li , #f_tab li {
  display: inline-block;
  font-size: 12px;
  width:24.5%;
}  
#tab li:first-child , #tab li:last-child {
  width:25.535168195%;
}
#tab li:nth-child(2) , #tab li:nth-child(3) {
  width:24.464831804%;
}
#f_tab li:first-child , #f_tab li:last-child {
  width:25.535168195%;
}
#f_tab li:nth-child(2) , #f_tab li:nth-child(3) {
  width:24.464831804%;
}
#tab li img , #f_tab li img {
	width:100%;
	height: auto;
}
#tab ul {
	background: none;
}
#f_tab ul {
	background: none;
}

#tab .tab1.on {
	background: none;
}
#f_tab .tab1.on {
	background: none;
}
#tab .tab2.on {
	background: none;
}
#f_tab .tab2.on {
	background: none;
}
#tab .tab3.on {
	background: none;
}
#f_tab .tab3.on {
	background: none;
}
#tab .tab4.on {
	background: none;
}
#f_tab .tab4.on {
	background: none;
}
  
}


/*********************************
+
+コンテンツ
+
*********************************/
.inner{
	box-sizing: border-box;
	max-width: 1100px;
	padding: 40px 5% 30px;
	background-color: #FFF;
	margin: 0px auto;
	border-radius: 20px;
	text-align: center;
}
@media only screen and (max-width: 768px){
.inner{
	padding: 25px 3%;
	margin: 0px 5%;
	border-radius: 15px;
}
}

/*********************************
+
+タイトル
+
*********************************/
.title{
	font-size:50px;
	margin:0px 0px 20px 0px;
	line-height: 1.0em;
	}
.title_txt{
	font-size: 18px;
	margin: 0px 0px 20px;
}


/***はる***/
#spring .title{
	color: #f171a7;
	font-weight: bold;
	}
#spring .title:before {
	content:" ";
	margin: -10px 15px 0 0;
	display:inline-block;
	width:26px;
	height:32px;
	background:url(../img/spring/st01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
#spring .title:after {
	content:" ";
	margin: -10px 0px 0 10px;
	display:inline-block;
	width:31px;
	height:27px;
	background:url(../img/spring/st02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
/***なつ***/
#summer .title{
	color: #246cda;
	font-weight: bold;
	}
#summer .title:before {
	content:" ";
	margin: -10px 10px 0 0;
	display:inline-block;
	width:34px;
	height:34px;
	background:url(../img/summer/st01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
#summer .title:after {
	content:" ";
	margin: -10px 0 0 10px;
	display:inline-block;
	width:31px;
	height:39px;
	background:url(../img/summer/st02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
/***あき***/
#autumn .title{
	color: #dc2c00;
	font-weight: bold;
	}
#autumn .title:before {
	content:" ";
	margin: -10px 10px 0 0;
	display:inline-block;
	width:41px;
	height:38px;
	background:url(../img/autumn/st01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
#autumn .title:after {
	content:" ";
	margin: -10px 0px 0 10px;
	display:inline-block;
	width:41px;
	height:34px;
	background:url(../img/autumn/st02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
/***ふゆ***/
#winter .title{
	color: #5787bf;
	font-weight: bold;
	}
#winter .title:before {
	content:" ";
	margin: -10px 10px 0 0;
	display:inline-block;
	width:36px;
	height:42px;
	background:url(../img/winter/st01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}
#winter .title:after {
	content:" ";
	margin: -10px 0px 0 10px;
	display:inline-block;
	width:19px;
	height:45px;
	background:url(../img/winter/st02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
}

/***タイトル背景リボン***/

/***はる***/
#spring .ribbon{
	background-image:url(../img/spring/ri02.png), url(../img/spring/ri03.png);
	background-repeat: no-repeat,no-repeat;
	background-position:left center, right center;
	margin: 0px 0px 35px;
}

#spring .ribbon .ri_st{
	width: 386px;
	height: 62px;
	background-image: url(../img/spring/ri01.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0px auto;
	text-align: center;
	font-size: 24px;
	padding: 19px 0px 0px;
	font-weight: bold;
}

/***なつ***/
#summer .ribbon{
	background-image:url(../img/summer/ri02.png), url(../img/summer/ri03.png);
	background-repeat: no-repeat,no-repeat;
	background-position:left center, right center;
	margin: 0px 0px 35px;
}

#summer .ribbon .ri_st{
	width: 386px;
	height: 62px;
	background-image: url(../img/summer/ri01.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0px auto;
	text-align: center;
	font-size: 24px;
	padding: 19px 0px 0px;
	font-weight: bold;
}

/***あき***/
#autumn .ribbon{
	background-image:url(../img/autumn/ri02.png), url(../img/autumn/ri03.png);
	background-repeat: no-repeat,no-repeat;
	background-position:left center, right center;
	margin: 0px 0px 35px;
}

#autumn .ribbon .ri_st{
	width: 386px;
	height: 62px;
	background-image: url(../img/autumn/ri01.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0px auto;
	text-align: center;
	font-size: 24px;
	padding: 19px 0px 0px;
	font-weight: bold;
}

/***ふゆ***/
#winter .ribbon{
	background-image:url(../img/winter/ri02.png), url(../img/winter/ri03.png);
	background-repeat: no-repeat,no-repeat;
	background-position:left center, right center;
	margin: 0px 0px 35px;
}

#winter .ribbon .ri_st{
	width: 386px;
	height: 62px;
	background-image: url(../img/winter/ri01.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0px auto;
	text-align: center;
	font-size: 24px;
	padding: 19px 0px 0px;
	font-weight: bold;
}

.ribbon .ri_st span{
	font-size:20px;
}


/*IEのみに適用*/
@media all and (-ms-high-contrast: none){
.ribbon .ri_st{
	padding: 5px 0 0 !important;
}
}
/* for Microsoft Edge */
@supports (-ms-ime-align:auto) {
.ribbon .ri_st{
	padding: 0px !important;
}
}
/*Firefoxのみに適用*/
@-moz-document url-prefix(){
.ribbon .ri_st{
	padding: 0px !important;
}
}



@media only screen and (max-width: 768px){
.title{
	font-size: 22px;
	margin: 0px 0px 10px 0px;
	}
.title_txt{
	font-size: 14px;
	margin: 0px 0px 10px;
}


/***はる***/
#spring .title{
	color: #f171a7;
	font-weight: bold;
	}
#spring .title:before {
	margin: -5px 10px 0 0;
	display:inline-block;
	width: 20px;
	height: 26px;
}
#spring .title:after {
	margin: -5px 0px 0 5px;
	width: 25px;
	height: 22px;
}
/***なつ***/
#summer .title{
	color: #246cda;
	font-weight: bold;
	}
#summer .title:before {
	margin: -5px 5px 0 0;
	width: 20px;
	height: 20px;
}
#summer .title:after {
	margin: -5px 0 0 5px;
	width: 20px;
	height: 28px;
}
/***あき***/
#autumn .title{
	color: #dc2c00;
	font-weight: bold;
	}
#autumn .title:before {
	margin: -5px 5px 0 0;
	width: 20px;
	height: 17px;
}
#autumn .title:after {
	margin: 0px 0px 0 5px;
	width: 25px;
	height: 25px;
}
/***ふゆ***/
#winter .title{
	color: #5787bf;
	font-weight: bold;
	}
#winter .title:before {
	margin: -5px 5px 0 0;
	width: 23px;
	height: 28px;
}
#winter .title:after {
	margin: -10px 0px 0 5px;
	width: 20px;
	height: 35px;
}

/***タイトル背景リボン***/

/***はる***/
#spring .ribbon{
	margin: 0px 0px 20px;
	background-size: 60% auto;
}

#spring .ribbon .ri_st{
	width: 80%;
	height: auto;
	font-size: 15px;
	padding: 13px 0 12px 0;
	background-position: center;
	background-size: contain;
}

/***なつ***/
#summer .ribbon{
	margin: 0px 0px 20px;
	background-size: 60% auto;
}

#summer .ribbon .ri_st{
	width: 80%;
	height: auto;
	font-size: 15px;
	padding: 13px 0 12px 0;
	background-position: center;
	background-size: contain;
}

/***あき***/
#autumn .ribbon{
	margin: 0px 0px 20px;
	background-size: 60% auto;
}

#autumn .ribbon .ri_st{
	width: 80%;
	height: auto;
	font-size: 15px;
	padding: 13px 0 12px 0;
	background-position: center;
	background-size: contain;
}


/***ふゆ***/
#winter .ribbon{
	margin: 0px 0px 20px;
	background-size: 60% auto;
}

#winter .ribbon .ri_st{
	width: 80%;
	height: auto;
	font-size: 15px;
	padding: 13px 0 12px 0;
	background-position: center;
	background-size: contain;
}
.ribbon .ri_st span{
	font-size: 12px;
}
}






/*********************************
+
+昆虫・植物　共通
+
*********************************/
.inner ul{
	font-size: 0px;
	padding: 0px 0px 80px;
	}
.inner li{
	border-radius:10px;
	font-size: 13px;
	width:22.45%;
	float:left;
	margin: 0px 3.4% 40px 0px;
}

#spring .inner li{
	background-image:url(../img/spring/li_bg.gif);
	background-repeat:repeat;
}
#summer .inner li{
	background-image:url(../img/summer/li_bg.gif);
	background-repeat:repeat;
}
#autumn .inner li{
	background-image:url(../img/autumn/li_bg.gif);
	background-repeat:repeat;
}
#winter .inner li{
	background-image:url(../img/winter/li_bg.gif);
	background-repeat:repeat;
}

.inner li:nth-child(4n){
	margin:0px 0px 40px 0px;
	}
.inner li .li_inner{
	background-color:#FFF;
	border-radius:10px;
	margin:  3px;
	padding: 0 10px 10px;
}
.inner li .li_inner a{
	display:block;
}



#winter .inner li .li_inner{
	background-color:#FFF;
	border-radius:10px;
	margin:  3px;
	padding: 5px 10px 10px;
	min-height: 235px;
}
.inner li .img{
	padding: 0px 0px 10px 0px;
}
.inner li .btn{
	padding: 0 0 5px;
	margin: 0px auto;
	width: 65%;
	min-width: 140px;
	line-height: 35px;
	background: #C45408;
	border-radius:15px;
	text-shadow:-1px -1px 0px #c45409;
}
.inner li .btn p{
	display: block;
	background: #F17E30;
	font-weight: bold;
	color: #FFF;
	border-radius:15px;
}
.inner li .btn p:after {
	content:"\f002";
	font-family: "Font Awesome 5 Free";
	font-size:16px;
	margin: 0 0 0 5px;
	display:inline-block;
	vertical-align:middle;
}
.inner li .btn p:hover{
}
.inner li .btn:hover{
	padding: 5px 0 0;
	background: #fff;
}
.inner li .li_inner a:hover > .btn{
	padding: 5px 0 0;
	background: #fff;
}




.creature:after , .plant:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility:hidden;
}

@media only screen and (max-width: 768px){
.inner ul{
	padding: 0px 0px 40px;
	}
.inner li{
	width: 49%;
	margin: 0px 0 20px 0px;
}
.inner li:nth-child(even){
	float: right;
}

#spring .inner li{
	background-image:url(../img/spring/li_bg.gif);
	background-repeat:repeat;
}
#summer .inner li{
}
#autumn .inner li{
	background-image:url(../img/autumn/li_bg.gif);
	background-repeat:repeat;
}
#winter .inner li{
	background-image:url(../img/winter/li_bg.gif);
	background-repeat:repeat;
}

.inner li:nth-child(4n){
	margin:0px 0px 20px 0px;
	}
.inner li .li_inner{
	background-color:#FFF;
	border-radius:10px;
	margin:  3px;
	padding: 0 8px 10px;
}
#winter .inner li .li_inner{
	background-color:#FFF;
	border-radius:10px;
	margin:  3px;
	padding: 0 8px 10px;
	min-height: 200px;
}
.inner li .img{
	padding: 0px 0px 10px 0px;
}
.inner li .btn{
	width: 90%;
	line-height: 30px;
	min-width: 105px;
	font-size: 12px;
}
.inner li .btn a{
}
.inner li .btn a:after {
	content:"\f002";
	font-family: "Font Awesome 5 Free";
	font-size:16px;
	margin: 0 0 0 5px;
	display:inline-block;
	vertical-align:middle;
}
.inner li .btn a:hover{
	display: block;
	background: #F17E30;
	font-weight: bold;
	color: #FFF;
	border-radius:15px;
}
.inner li .btn:hover{
	padding: 5px 0 0;
	background: #fff;
}
.creature:after , .plant:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility:hidden;
}
}



/*********************************
+
+昆虫（こんちゅう）など　生き物
+
*********************************/
.creature .name , .plant .name {
	text-align: left;
	font-size: 16px;
	margin: 0px 0px 10px 0;
	padding: 10px 0px 0px 0;
	/*! line-height: 27px; */
	font-weight: bold;
	vertical-align: middle;
	line-height: 2em;
	text-indent: 0;
}

/*IEのみに適用*/
@media all and (-ms-high-contrast: none){
.creature .name ruby rt , .plant .name ruby rt {
	font-size: 12px;
}
}
/*Firefoxのみに適用*/
@-moz-document url-prefix() {
.creature .name ruby rt , .plant .name ruby rt {
	font-size: 12px;
}
}

.creature .name.txt15 , .plant .name.txt15 {
	font-size: 15px;
	letter-spacing: -0.04em;
}
#spring .creature .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:27px;
	height:30px;
	background:url(../img/spring/na01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}
#summer .creature .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:25px;
	height: 30px;
	background:url(../img/summer/na01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}

#autumn .creature .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:23px;
	height:25px;
	background:url(../img/autumn/na01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}
#winter .creature .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:22px;
	height: 65px;
	background:url(../img/winter/na01.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}


@media only screen and (max-width: 768px){
.creature .name , .plant .name {
	font-size: 13px;
	margin: 0 0 5px 0;
	text-indent: 0;
	line-height: 1.3em;
}
.creature .name rt , .plant .name rt {
	font-size: 10px;
}
#spring .creature .name:before {
	margin: 0 0 5px;
	width: 20px;
	height: 18px;
	float: none;
	display: block;
}
#summer .creature .name:before {
	margin: 0 0 5px;
	width: 20px;
	height: 20px;
	float: none;
	display: block;
}

#autumn .creature .name:before {
	margin: 0 0 5px;
	width:20px;
	height: 20px;
	float: none;
	display: block;
}
#winter .creature .name:before {
	margin: 0 0 5px;
	width:20px;
	height: 34px;
	float: none;
	display: block;
}
}







/*********************************
+
+植物（しょくぶつ）など　生き物
+
*********************************/
#spring .plant .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:25px;
	height:30px;
	background:url(../img/spring/na02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}
#summer .plant .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:22px;
	height:30px;
	background:url(../img/summer/na02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}
#autumn .plant .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:24px;
	height: 30px;
	background:url(../img/autumn/na02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:left;
}
#winter .plant .name:before {
	content:" ";
	margin: 0px 10px 0 0;
	display:inline-block;
	width:23px;
	height: 40px;
	background:url(../img/winter/na02.png);
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align:middle;
	float:  left;
}


@media only screen and (max-width: 768px){
#spring .plant .name:before {
	margin: 0 0 5px;
	width:20px;
	height: 20px;
	float: none;
	display: block;
}
#summer .plant .name:before {
	margin: 0 0 5px;
	width:20px;
	height: 20px;
	float: none;
	display: block;
}
#autumn .plant .name:before {
	margin: 0 0 5px;
	width:20px;
	height: 20px;
	float: none;
	display: block;
}
#winter .plant .name:before {
	margin: 0 0 5px;
	width:20px;
	height: 28px;
	float: none;
	display: block;
}
}


#modal-content{
	width:50%;
	margin:1.5em auto 0;
	padding:10px 20px;
	border:2px solid #aaa;
	background:#fff;
	z-index:2;
}
.modal-p{
	margin-top:1em;
}

.modal-p:first-child{
	margin-top:0;
}

.button-link{
	color:#00f;
	text-decoration:underline;
}
.button-link:hover{
	cursor:pointer;
	color:#f00;
}
