@charset "utf-8";
/* CSS Document */
/* layout-page.css */
/* =================================
   ▼固定ページのスタイル 
==================================*/
/*角丸のボックス*/
.box-radius3{
	display:inline-block;
	-moz-border-radius: 5px;    /* 古いFirefox */
	-webkit-border-radius: 5px; /* 古いSafari,Chrome */
	border-radius: 5px;         /* CSS3 */
	border: 1px solid #44aeeb;     /* 枠線の装飾 */
	margin-bottom: 1em;
	padding:1em;
	background-color:#44aeeb;
	color:#FFF;
}
/*角丸のずれたボックス*/
.box-radius4{
    background-color: #fff;
    margin: 0.8em 0;
    padding: 0.8em 1em;
    position: relative;
    z-index: 1;
    display:inline-block;
}
.box-radius4::before,
.box-radius4::after {
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}
.box-radius4::before {
    background-color: rgba(255, 255, 255, .5);
    left: 0;
    top: 0;
    z-index: -1;
}
.box-radius4::after {
    background-color: #fef6da;
    top: 5px;
    left: 5px;
    z-index: -2;
}
/*外枠付きボックス*/
.box-radius5{
    background-color: #1982c4;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #1982c4;
    color: #FFF;
    
    margin: 1em auto;
    padding: 1em;
    display:inline-block;
}
/*色つきQ and A*/
.qa-wrap{
	dispplay:block;
	margin-bottom:1em;
}
.box-q:before{
	content:"Ｑ";
	display:block;
	float:left;
	background-color:#bdd7ee;
	border:1px #5b9bd5 solid;
	padding:0.5em 1em 0.5em 1em;
	margin: -0.5em 0.5em 1em 0;
	height:2.5em;
}
.box-q span{
	display:block;
	margin-left:4em;
	text-align:justify;
	text-justify: distribute-all-lines;
}
.box-a:before{
	content:"Ａ";
	display:block;
	float:left;
	background-color:#f8cbad;
	border:1px #ed7d31 solid;
	padding:0.5em 1em 0.5em 1em;
	margin: -0.5em 0.5em 1em 0;
	height:2.5em;
}
.box-a span{
	display:block;
	margin-left:4em;
	text-align:justify;
	text-justify: distribute-all-lines;
}
/*付箋風ボタン*/
.square_btn{
    display: inline-block;
    padding: 15px 30px !important;
    text-decoration: none;
    background: #f7f7f7 !important;
    border-left: solid 6px #ff7c5c;/*左線*/
    color: #ff7c5c;/*文字色*/
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.square_btn:active {
    box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}

/*子ページ一覧用ボタン*/
.entrance-inner{
  margin: auto 1em;
}
.entrance-inner a{
  background:none;
  background-color: #286090;
  color:#FFF;
  padding: 10px 16px !important;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
  margin-right:1em;
  margin-bottom:1em;
  word-wrap: break-word;
  white-space: normal;
}
.entrance-inner a:hover,.entrance-inner a:focus{
  background-color: #FFF;
  color: #286090
}
/*掲示物風ボックス*/
.box-paper {
	position: relative;
    width: 100%;
    padding: 40px 15px;
    margin: 1em 0 auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
}
.box-paper span.pin{
	width:32px;
	height:32px;
	display:block;
	position:absolute;
	top:-10px;
	left:48%;
	background: url(./images/ic_pin.png) no-repeat;
}
.box-paper:before, .box-paper:after
{
    position: absolute;
    width: 40%;
    height: 10px;
    content: ' ';
    left: 12px;
    bottom: 12px;
    background: transparent;
    -webkit-transform: skew(-5deg) rotate(-5deg);
    -moz-transform: skew(-5deg) rotate(-5deg);
    -ms-transform: skew(-5deg) rotate(-5deg);
    -o-transform: skew(-5deg) rotate(-5deg);
    transform: skew(-5deg) rotate(-5deg);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    z-index: -1;
}
.box-paper:after
{
    left: auto;
    right: 12px;
    -webkit-transform: skew(5deg) rotate(5deg);
    -moz-transform: skew(5deg) rotate(5deg);
    -ms-transform: skew(5deg) rotate(5deg);
    -o-transform: skew(5deg) rotate(5deg);
    transform: skew(5deg) rotate(5deg);
}

/* =================================
   ▼グーグルマップレスポンシブ対応 
==================================*/
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*マップフキダシ内*/
.fm_left_img{
	display:inline-block;
	vertical-align:middle;
}
.fm_right_box{
	display:inline-block;
	vertical-align:middle;
	word-wrap: break-word;
	white-space: normal;
}
#pac-input{
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#pac-input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.mycontrols{
	margin:10px;
}
/* =================================
   ▼よくある質問 
==================================*/
.Question a:before{
	font-family: 'Glyphicons Halflings';
	content : "\e081";
}
.Answer p{
	margin-left:2.7em;
	text-indent:-1.7em;
}
.panel-title.Question a {
    display: block;
    width: 100%;
}
/* =================================
   ▼テーブルの上下線が破線 
==================================*/
.border_dashed{
 border-style:dashed solid;
 border-width:2px 1px;
 border-color:#CCC;
}
 /* =================================
  ▼ サイトマップ
==================================*/
.sitemap ul{
 list-style:none;
 padding-left:0px;
}
.sitemap ul li{
	line-height:1.5em;
	vertical-align: bottom;
}
.sitemap ul li:before{
 font-family: 'Glyphicons Halflings';
 content: "\e103";
 color:green;
 margin-right: 4px;
 line-height:1.5em;
	vertical-align: bottom;
}
.sitemap ul li ul li:before{
 content: "┣";
 color:green;
 margin-right: 2px;
}
.sitemap ul li ul li:last-child:before{
 content: "┗";
 color:green;
 margin-right: 2px;
}
.sitemap ul li a:hover{
 color: #333 !important;
 text-decoration:underline;
}
.sitemap ul .sub-menu{
	margin-bottom:0;
}
.sitemap>ul>li{
	margin-bottom:0.8em;
}
/* =================================
  ▼ 横並び画像
==================================*/
.box-horizon{
	display:inline-block;
	max-width:50%;
	vertical-align:top;
	margin-left: 1em;
}
/* スマホ */
@media screen and (max-width:767px){
	.box-horizon{
		display:block;
		max-width:100%;
		margin:auto;
	}
}

/* =================================
  ▼ 画像の枠
==================================*/
/*写真　キャプション付き*/
.mythumbnail{
	display: inline-block;
	padding-bottom: 0.5em;
	vertical-align:top;
}
.mythumbnail img{
	margin-bottom:5px;
}
.img-caption{
	display:block;
}
.img-thumbnail{
	margin-bottom:10px;
}
/*写真　重なり*/
.frame-overlap {
	display: inline-block;
	position: relative;
	margin-bottom:1em;
}
.frame-overlap:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transform: rotate(3deg); /* 回転させる */
	background: #fff;
	z-index: -1;
}
/*写真　傾き*/
.frame-trans {
	display: inline-block;
	transform: rotate(5deg);
	margin-bottom:1em;
}
/*写真　差し込み*/
.frame-clip {
	display: inline-block;
	position: relative;
	overflow: hidden; /* 不要部分を消す */
	padding: 6px; /* 6px だけは写真からはみ出す */
	margin-bottom:1em;
}
.frame-clip img {
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}
.frame-clip:before,
.frame-clip:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 97px;
	height: 50px;
	background: #fff; /* 背景色 */
	transform: rotate(-30deg);
}
.frame-clip:before {
	box-shadow: 0 10px 8px -12px rgba(0, 0, 0, 0.8);
	top: -24px;
	bottom: auto;
	right: auto;
	left: -26px;

}
.frame-clip:after {
	box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.7);
	top: auto;
	bottom: -22px;
	right: -25px;
	left: auto;
}
/* =================================
   ▼お問合せフォームのスタイル 
==================================*/
/*コンタクトフォーム７*/
.table-contactform7{
  overflow: hidden;
table-layout: fixed;
}
.table-contactform7.table1 th, .table-contactform7.table1 td {
    padding: 10px !important;
}

.required-contactform7{
  padding: 5px;
  background: #DE8686;
  color: #fff;
  border-radius: 3px;
  margin-right: 3px;
}
 
.unrequired-contactform7{
  padding: 5px;
  background: #BDBDBD;
  color: #fff;
  border-radius: 3px;
  margin-right: 3px;
}
 
.table-contactform7 th{
  font-weight:bold;
}
 
.table-contactform7 input,
.table-contactform7 textarea{
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
}

.table-contactform7 select{
	margin-left:5px;
}

.address-100 input{
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
}
 
.message-100 textarea{
  width: 100%;
  margin: 5px 10px 10px 5px;
}

.wpcf7 > form input[type="submit"][disabled], .wpcf7 > form input[type="submit"][disabled]:hover, .wpcf7 > form input[type="submit"][disabled]:focus {
    background-color: #999;
    border-color: #666;
}
/* エラーメッセージ */
.screen-reader-response{
	display:none;
}
.wpcf7-not-valid-tip{
	display:block;
	color:red;
}
.wpcf7 .wpcf7-not-valid {
    background: pink;
}
.wpcf7-validation-errors{
	text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;

	background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
    background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
    background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
    background-repeat: repeat-x;
    border-color: #f5e79e;
	color: #8a6d3b;
    background-color: #fcf8e3;
}
/* okメッセージ */
.wpcf7-mail-sent-ok{
	text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    
    background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
    background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
    background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
    background-repeat: repeat-x;
    border-color: #b2dba1;
    color: #3c763d;
    background-color: #dff0d8;
}
/*チェックボックス判定*/
.wpcf7 > form input[type="submit"][disabled], .wpcf7 > form input[type="submit"][disabled]:hover, .wpcf7 > form input[type="submit"][disabled]:focus {
    background-color: #999;
    border-color: #666;
}

@media screen and (min-width: 900px){
  .table-contactform7 th{
    width:28%;
  }
    }
     
@media screen and (max-width: 900px){
.table-contactform7{
  display:block;
}     
       
  .table-contactform7 tbody,
  .table-contactform7 tr{
    display: block;
    width: 100%;
  }
  .table-contactform7 th{
  width:100%;
  display:block;
  margin: 0 auto;
  border:none;
}
.table-contactform7 td{
  display: list-item;
  list-style-type:none;
  margin:0;
  padding:0;
  width: 100%;
  border-top: none !important;
}
}
/* 画像回り込み配置 */
/*PC*/
@media screen and (min-width:768px){
	.myimg-left{
		display:block;
		float: left !important;
		margin-right:10px;
	}

	.myimg-right{
		display:block;
		float: right !important;
		margin-left:10px;
	}
}


/*ページネーション*/
.nav-link{
  margin:1.8em auto;
  text-align: center;
  font-size:small;
}
.local-navigation{
	width:100%;
	text-align: center;
	font-size:14px;
}
a.page-numbers,
 span.page-numbers{
    background: #fff !important;
    background-img:none !important;
	color:#333;
	font-size:small;
    border: solid 1px #44aeeb;
    padding:5px 1em !important;
    margin:0 2px !important;
    text-decoration: none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
	transition: 0.3s;
}
span.page-numbers.current, a.page-numbers:hover,a.page-numbers:focus{
    background: #44aeeb !important;
    border: solid 1px #44aeeb;
    color: #fff;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
	transition: 0.3s;
}
/* いばらきのＪＡニュース */
.my-pills > li > a{
	border:1px solid #337ab7;
	border-radius:5px;
}
.my-pills > .active > a,
.my-pills > .current-cat > a,
.my-pills > .current-cat > a:hover,
.my-pills > .current-cat > a:focus,
.my-pills > .current-cat > a:active{
	color: #fff;
	background-color: #337ab7;
	text-decoration:none;
}
/*イベント情報アーカイブ*/
#archive-event #event-space .event-info{
	display:block;
	width: 32%;
	padding:0.5em;
	vertical-align:top;
	margin-bottom:1em;
	float: left;
	margin-left:10px;
	max-height:250px;
}
#archive-event .event-info *{
	letter-spacing:0;
}
#archive-event .event-info a{
	width:100%;
	height:100%;
}

#archive-event ul{
	width: 100%;
	padding-left:0;
	margin-left: 0;
}
#archive-event:after{
	display:block;
    clear:both;
    height:0px;
    visibility:hidden;
    content:".";
}
/* スマホ */
@media screen and (max-width:767px){
	#archive-event #event-space .event-info{
		width:45%;
	}
	#event-space{
		padding:0 !important;
		margin:0 !important;
	}
}

/* =================================
   ▼「今が旬」ページのスタイル 
==================================*/
.syun_frame{
	position:relative;
	display:block;
	margin-left:1em;
	margin-bottom:1em;
	width:100%;
	text-align:center;
}
.syun_frame .syun_img{
	position:relative;
	z-index:1;
	margin:auto;
}
.syun_frame .syun_name{
	font-size:1.2em;
	line-height:3em;
	display:block;
	position:absolute;
	z-index:3;
	top:0;
	left:20%;
	background-color:rgba(255,201,120,.4);
	color:#333;
	padding:1em;
	border-radius:50%;
}
.syun_frame .syun_month{
	line-height:2.4em;
	font-weight:bold;
	z-index:2;
	position:absolute;
	bottom:0;
	right:20%;
	display: inline-block;
	vertical-align: middle;
    text-align: center;
    padding: 0.2em 0;
    background: #78d0f5;/*背景色*/
    color: #FFF;/*文字色*/
    box-sizing: border-box;
}
.syun_month .syun_ribbon{
	vertical-align: middle;
    margin: 0;
    padding: 0.3em 1.2em 0.3em 0.3em;
    border-top: dashed 1px #FFF;/*上の破線*/
    border-bottom: dashed 1px #FFF;/*下の破線*/
    line-height: 2.2em;
}
/*.syun_month:before,*/
.syun_month:after{
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	z-index: 1;
}
/*
.syun_month:before{
  top: 0;
  left: 0;
  border-width: 1.4em 0px 1.4em 0.7em;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
*/
.syun_month:after{
  top: 0;
  right: 0;
  border-width: 1.4em 0.7em 1.4em 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

/*続きを読むボタン*/
.btn-collapse{
	font-weight: bold;
	position: relative;
	display: block;
	width: 80%;
	margin: auto;
	padding: 0.3em 1em;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	color: #da3c41;
	border: 2px solid #da3c41;
	border-radius: 3px;
	text-decoration:none;
	margin-bottom: 1.2em;
}
.btn-collapse:hover, .btn-collapse:focus{
	transition: all 0.3s;
	color: #ffffff;
	background: #da3c41;
}
.btn-collapse::after {
	font-family: 'Glyphicons Halflings';
	content: '\e114';
	margin-left:0.5em;
	color: #da3c41;
	display:inline-block;
	vertical-align:middle;
}
.btn-collapse:hover::after ,.btn-collapse:focus::after{
	color: #ffffff;
}
.syun_inner{
	margin-bottom:1em;
	padding-bottom:1.2em;
}
.btn_close{
	font-weight:normal;
	padding:0.2em;
	display:block;
	width:30%;
	margin:auto;
	text-align:center;
	border:1px solid #333;
	border-radius: 5px;
	color:#333;
	text-decoration:none;
}
.btn_close:hover, .btn_close:focus{
	text-decoration:none;
}
.btn_close::after{
	font-family: 'Glyphicons Halflings';
	content: '\e113';
	margin-left:0.5em;
}
/*タブレット*/
@media screen and (max-width:960px){
	.syun_frame{
		margin-left: 0;
	}
	.syun_frame .syun_name{
		left:10%;
	}
	.syun_frame .syun_month{
		right:10%;
	}
}
/*スマホ*/
@media screen and (max-width:767px){
	.syun_frame{
		margin-left: 0;
	}
	.syun_frame .syun_name{
		left:0;
		margin-left:0;
	}
	.syun_frame .syun_month{
		right:0;
	}
}

/* =================================
   ▼「いばらきの一番」ページのスタイル 
==================================*/
.nousan-1st{
	width:50%;
}
.nousan-1st p.name-1st{
	background-image:url('images/oukan3.png');
	background-position: top center; 
	background-repeat: no-repeat;
	display:block;
	width:210px;
	margin-left:0;
	margin-bottom:5px;
	text-align:center;
	height:70px;
	position: relative;
}
.nousan-1st p.name-1st span{
	position: absolute;
	bottom:0;
	left:0;
	font-size:1.2em;
	font-weight:bold;
	width:210px;
}
.nousan-1st p.name-1st span:before{
	content:'― ';
	font-weight: normal;
}
.nousan-1st p.name-1st span:after{
	content:' ―';
	font-weight: normal;
}
/*スマホ*/
@media screen and (max-width:767px){
	.nousan-1st img{
		width:100%;
		height:auto;
	}
	.nousan-1st p.name-1st,.nousan-1st p.name-1st span{
		font-size:1em;
		width:100%;
	}
}
/*=================================
   ▼「ＪＡさわやかモーニング　アーカイブ」ページのスタイル 
==================================*/
.sawayaka th, .sawayaka td{
	padding:10px;
}
.arc-box-year{
	-moz-box-sizing: border-box;
    box-sizing: border-box;
}
.arc-box-year .year{
	font-weight:bold;
}
.arc-box-year ul{
	list-style:none;
	letter-spacing: -0.5em; /* 文字間を詰めて隙間をなくす */
	width:100%;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align:left;
}
.arc-box-year ul li{
	width:30%;
	letter-spacing: normal; /* 文字間を元に戻す */
}
.arc-box-year ul li:before{
	font-family: 'Glyphicons Halflings';
	content:"\e250";
	color:#ffaf23;
}
/*スマホ*/
@media screen and (max-width:767px){
	.arc-box-year ul li{
		width:100%;
	}
}
/* =================================
   ▼ご意見・お問合せページのスタイル 
==================================*/
.cp_qa dl {
	margin: 0;
}
.cp_qa dt {
	margin-bottom: 0.5em;
	padding: 0.2em 0.5em 0.5em 2em;
	border-radius: 0.2em;
	background: #ffb74d;
	font-weight:normal;
}
.cp_qa dd {
	margin-bottom: 1em;
	margin-left: 0;
	padding: 0.5em 1em 1.5em 3em;
}
/* Q Aアイコン */
.cp_qa dt::before,.cp_qa dd::before{
	font-size: 1.5em;
	color: #ffffff;
}
.cp_qa dt::before {
	font-family:'Century Gothic';
	margin: 0.3em 0.3em 0 -1em;
	content: 'Q';
}
.cp_qa dd::before {
	font-family:'Century Gothic';
	margin: 0 0.5em 0 -2em;
	padding: 0.2em 0.4em;
	content: 'A';
	border-radius: 0.2em;
	background: #00bcd4;
}
/* =================================
   ▼JAグループ茨城の概要ページのスタイル 
==================================*/
.areaMapWrap{
	width:100%;
	background: url('./images/jamap_image_20190201.gif') left top no-repeat;
	background-size:100% auto;
}
.areaMap{
	width:100%;
	height:auto;
}

/* =================================
   ▼親ページのスタイル 
==================================*/
.tile-btn{
	display:table;
	padding-left: 0 !important;
	table-layout:fixed;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse:separate;
	border-spacing:5px 0;
	width:100%;
	margin:5px 0 0 0 !important;
}
.tile-btn li{
	display:table-cell;
	background-color:#3872a2;
	width:50%;
	color:#FFF;
	text-align:center;
	margin:0;
	vertical-align:middle;
}
.tile-btn li:hover{
	background-color: #2a5375;
	transition: 0.5s ;
}
.tile-btn.tile-even li:nth-child(even){
	background-color:#38a25f;
}
.tile-btn.tile-odd li:nth-child(odd){
	background-color:#38a25f;
}
.tile-btn.tile-even li:nth-child(even):hover,
.tile-btn.tile-odd li:nth-child(odd):hover{
	background-color:#297846;
	transition: 0.5s ;
}
.tile-btn li a{
	text-decoration:none;
	position: relative;
	display:block;
	box-sizing:border-box;
	color:#FFF;
	padding:1.5em 0.2em;
	width:100%;
	height:100%;
	vertical-align:middle;
}
.tile-btn li .tile-icon{
	display:block;
	margin: 5px auto;
	padding:auto;
	max-height:50px;
	font-size:35px;
}
li.tile-none{
	background-color:#FFF !important;
}
/*スマホ*/
@media screen and (max-width:767px){
	.tile-btn{
		margin: 5px 0 0 0 !important;
	}
}

/* =================================
   ▼投稿ページのスタイル 
==================================*/
/*画像　回り込み　左*/
.img-left{
	float:left;
	display:inline-block;
	width:150px;
	margin:0 1.5em 1em 0;
}

/*会話風フキダシ*/

/* 左 */
/*wrap*/
.left-wrap{
	width: 100%;
	height:100%;
    margin: 10px 0;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
}
/*名前*/
.name-icon {
	position: relative;
	display:block;
    background-color: #FFF;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;

}
.left-icon {
	position: relative;
	display:block;
    background-color: #FFF;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    background-color: #e16c3e;
    color: #FFF;
    order:1;
}
/*フキダシ*/
.balloon-left:before{
	content: "";
	position: absolute;
	top: 50%;
	left: -25px;
 	margin-top: -10px;
	border: 10px solid transparent;
	border-right: 15px solid #f9d2b9;
}
.balloon-left {
 	position: relative;
 	display: flex;
	vertical-align: middle;
 	margin: 0.6em 0 0.6em 20px;
	padding: 7px 10px;
	min-width: 120px;
 	max-width: 85%;
 	color: #555;
	font-size: 16px;
	background: #f9d2b9;
	order:2;
	border: 1px solid #f9d2b9;
	border-radius:5px;
}
.balloon-left p {
	margin: 0;
	padding: 0;
	color:#222;
}

/* 右 */
/*wrap*/
.right-wrap{
	width: 100%;
	height:100%;
    margin: 10px 0;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;

}
/*名前*/
.right-icon {
	position: relative;
	display:block;
    background-color: #FFF;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    background-color: #43ba45;
    color: #FFF;
    order:2;
}
/*フキダシ*/
.balloon-right:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
 	margin-top: -10px;
	border: 10px solid transparent;
	border-left: 15px solid #96ec7c;
}
.balloon-right {
 	position: relative;
	display: flex;
 	margin: 0.6em 20px 0.6em 0;
	padding: 7px 10px;
	min-width: 120px;
 	max-width: 85%;
 	color: #555;
	font-size: 16px;
	background: #96ec7c;
	order:1;
	border: 1px solid #96ec7c;
	border-radius:5px;
}

.balloon-right p {
	margin: 0;
	padding: 0;
	color:#222;
}
/* （投稿）投稿日時 */
.post-time{
	text-align:right;
	font-size:small;
	color:#666;
	margin-bottom:1em;
}
/*モーダルの最大サイズ*/
/*PC*/
@media screen and (min-width:768px){
	.modal-dialog{
		width:650px;
	}
}
/*あなたの暮らしのワンピース*/
#koukoku_list li a{
	cursor: pointer;
}
/*==============================================================
	　　サッカーボール付きリスト
================================================================*/
ul.list-soccer{
	list-style:none;
	padding-left:0;
}
.list-soccer li:before{
	content: url('./images/ve_list.gif');
	padding-right: 0.5em;
}
/*==============================================================
	JA茨城放送局　動画レスポンシブ対応
================================================================*/
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-wrapper {
	width: 500px;
	max-width: 100%;
	margin:1em auto;
}
.jaib-text{
	margin-bottom:2.5em;
}
.jaib-text .date{
	margin-left:1em;
	margin-bottom:0;
}

/*==============================================================
*	梅香アーカイブ
*	注意アイコンの色
*
================================================================*/
.myinfo {
    color: #9cdb1b;
    font-size: 20px;
    top: 5px;
    margin-right:5px;
}
.list_baikou{
	position:relative;
	padding-left:10px !important;
	list-style:none;
	letter-spacing: -100px; /* 文字間を詰めて隙間をなくす */
	font-size:0;
	line-height:0;
}
.list_baikou li{
	font-size:16px;
	line-height:1.5em;
	display:inline-block;
	vertical-align:top;
	text-align:center;
	width:33%;
	overflow:hidden;
	text-overflow: ellipsis;
	letter-spacing: normal; /* 文字間を元に戻す */
	padding-right: 10px;
	padding-bottom:1.5em;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.list_baikou li a img{
	max-width:100%;
	display:block;
	margin:auto;
	box-shadow: 0px 0px 3px rgba(0,0,0,.4);
	margin-bottom: 5px;
}
.list_baikou li a:hover img, .list_baikou li a:active img{
	box-shadow:none;
	transition: 0.2s ;
}
.list_baikou>li>a[href $='.pdf']{
	background: none;
	margin:0;
	padding:0;
	line-height:0;
}
/*スマホ*/
@media screen and (max-width:767px){
	.list_baikou{
		padding:0 !important;
	}
	.list_baikou li{
		font-size:14px;
		width:50%;
	}
}
/*==============================================================
*	▼コンクール入賞者紹介リスト
*	注意アイコンの色
================================================================*/
.list_concool {
	padding-left:0;
	list-style:none;
}
.list_concool li:before{
	content:url(images/concool/oukan.png);
	width:14px;
	height:14px;
}
.list_concool li{
	margin:1em;
}
/*==============================================================
*	▼画像のキャプション
================================================================*/
.wp-caption-text{
	font-weight:bold;
	text-align:center;
}
.aligncenter img{
	text-align: center !important;
	margin: auto;
}
.aligncenter .wp-caption-text{
	text-align: center !important;
}
img[class^="wp-image-"]{
	max-width:100%;
}