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

.back_link{
	width: 100%;
	margin: 20px auto;
	text-align: center;
}
.back_link a{
	display: inline-block;
	margin: 0 auto;
	padding: 25px 70px;
	box-sizing: border-box;
	background: #ff7ca8;
	border-radius: 10px;
	color: #fff;
	font-size: 1.7rem;
}
.back_link a.blue{
	background: #54a6fc;
}
.back_link a:hover{
	transition: all .2s ease-in;
	opacity: 0.6;
}

.sakura_cont_box{
	overflow: hidden;
	border-bottom: 1px solid #ccc;
	margin: 20px auto;
	padding-bottom: 30px;
}
.sakura_cont_box:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.under_main .inner .sakura_cont_box h3{
	text-align: left;
	color: #ff668b;
	border-bottom: 2px dotted #d2a143;
}

.under_main .inner .sakura_cont_box h3 span{
	display: block;
	color: #808080;
   margin: 12px 0 8px;
   font-size: 1.7rem;
}

.sakura_cont_box .txt_box{
	float: left;
	width: 100%;
   font-size: 1.6rem;
}
.sakura_cont_box .img_box{
	float: right;
	overflow: hidden;
	width: 100%;
}
.sakura_cont_box .img_box table{
	width: 100%;
}
.sakura_cont_box .img_box table td{
	width: 30%;
	height: 240px;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
	box-sizing: border-box;
}
.sakura_cont_box .img_box table td:nth-child(3n){
	margin-right: 0;
}
.sakura_cont_box .img_box table td img{
	width:auto;
	height: 100%;
}


/* 桜だより 新ボックス
-------------------------------------------------------------------------*/
.eve_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.eve_box>.txt{
	width: 100%;
	margin-bottom: 20px;
}
.eve_box>.img{
	width: 100%;
}
.eve_box>.img>ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.eve_box>.img>ul>li{
	width: calc(100%/3 - 20px);
	margin-bottom: 20px;
}
.eve_box>.img>ul>li>img{
	display: block;
	width: auto;
	height: 240px;
	margin: 0 auto;
}
.eve_box>.img>ul>li>img.wide{
	width: 100%;
	height: auto;
}


/*-----------------------191107 桜通信　月別タブ分け
-----ここから------------------------*/

.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
  width: 100%;
  margin: 3em auto;
  position: relative;  

}


/*タブのスタイル*/
.tab_item {
  width: calc(100%/13);
  height: 55px;
  background-color: #FAE4E5;
  line-height: 55px;
  font-size: 23px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-right: #BBBBBB solid 0.1px;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}


/*選択されているタブのコンテンツのみを表示*/
#december:checked ~ #december_content,
#november:checked ~ #november_content,
#october:checked ~ #october_content,
#september:checked ~ #september_content,
#august:checked ~ #august_content,
#july:checked ~ #july_content,
#june:checked ~ #june_content,
#may:checked ~ #may_content,
#april:checked ~ #april_content,
#march:checked ~ #march_content,
#february:checked ~ #february_content,
#january:checked ~ #january_content
{
  display: block;
}



/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #ff668b;
  color: #fff;
}


.tab_wrapp{
    position: absolute;
    top:-41px;
      width: 100%;
}

@media screen and (max-width:767px) {

.back_link a{
	width: 100%;
	display: block;
}
.sakura_cont_box .img_box table td{
	display: block;
	width: 100%;
	height: auto;
}
.sakura_cont_box .img_box table td img{
	width:100%;
}

}


/*バックナンバー リンクボタン
------------------------------------------------------------------*/
.under_main .inner h3.h3_back{
	width: 100%;
	margin: 50px auto;
	color: #ff668b;
	box-sizing: border-box;
}
.under_main .inner h3.h3_back span:before{
	content:url(../img/bg_h3_before.png);
	position: absolute;
	left: -100px;
	top: -19px;
}
.under_main .inner h3.h3_back span:after{
	content:url(../img/bg_h3_after.png);
	position: absolute;
	right: -100px;
	top: -19px;
}

.sakura_back_btn{
	width: 100%;
	margin: 30px auto;
	overflow: hidden;
}
.sakura_back_btn ul li{
	width: 21%;
	float:left;
	text-align: center;
	margin-bottom: 20px;
	margin-right: 5%;
}
.sakura_back_btn ul li:nth-child(4n){
	margin-right: 0;
}
.sakura_back_btn ul li a{
	display: block;
	padding: 25px;
	background: #ff7ca8;
	border-radius: 10px;
	color: #fff;
}
.sakura_back_btn ul li a:hover{
	transition: all .2s ease-in;
	opacity: 0.6;
}

@media screen and (max-width:767px) {

.sakura_back_btn ul li{
	width: 100%;
}
    
    
/*  桜だより　タブ分け  */
    
.tab_item {
  width: calc(100%/7);
  border: 0.5px solid #ECECEC;
  margin: 3px;
}

/*  桜だより　新ボックス  */
.eve_box>.img>ul>li{
	width: 100%;
}
.eve_box>.img>ul>li>img{
	width: 100%;
	height: auto;
}


}