@charset "utf-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset
   ----------------------------------------------------------------- */

html, body, div, … { … }

/*IE8,9*/
article,aside,details,figcaption,figure,footer,header,main,nav,section {
	display: block;
}

a, a:hover, a:active {
	text-decoration: none;
}

/*IE10の背景色を消す*/
a {
	background: transparent;
}

a:hover, a:active {
	outline: 0;
}

/* Base
   ----------------------------------------------------------------- */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,{
	font-family: sans-serif;
	color: #333;
	letter-spacing: .4px;
}

body {
	margin: 0;
	background: #eceef1;
	font-family: "Helbetica","Arial","游ゴシック",YuGoghic,"Yu Gothic","Hiragino sans","ヒラギノ角ゴシック","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","MS　Pゴシック","MS PGothic",sans-serif;
	line-height: 1.9;
	font-size: 17px;
	color: #333;
	letter-spacing: .4px;
	word-break: normal;
	overflow-wrap: break-word;
}


body, div, p, h1, h2, h3, h4, ul, figure {
	margin: 0;
	padding: 0;
}
p, td, th, li {

}
img {
	width: 100%;
	height: auto;
}

a {
	color: #3f5cdb;
}

a:hover{
	opacity: 0.7;
}

li{
	list-style-type: none;
}

/*テーブル*/
table{
	border-spacing: 0;
	border-collapse: collapse;
}

table{
	width: 100%;
	margin-bottom: 1.5em;
	border: 2px solid #e0e0e0;
}

tr:not(:last-child){
	border-bottom: 2px solid #e0e0e0
}

td{
	padding: 7px;
	border-right: 2px solid #e0e0e0;
}

td:last-child{
	border-right: 0;
}

th{
	padding: 7px;
	border-right: 2px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
	background-color: #f8f9fa;
}

/*見出し*/
h1, h2, h3, h4, h5{
	font-weight: bold;
}

h1{
	font-size: 1.5em;
	line-height: 1.6;
}

h2{
	margin-bottom: .375em;
	font-size: 1.35em;
	line-height: 1.56;
}

h3{
	font-size: 1.2em;
}

h4{
	font-size: 1.1em;
}

h5{
	margin-bottom: .5em;
	font-size: 1em;
	line-height: 1.5;
}

/*フォーム*/
fieldset {
 margin: 0 2px;
 padding: .35em .625em .75em;
 border: 1px solid #c0c0c0;
}
legend {
 padding: 0;
 border: 0;
}
button,input,select,textarea {
	margin: 0;
	font-family: inherit;
	font-size: 100%;
}
button,input{
	line-height: normal;
}
button, html input[type="button"], input[type="submit"]{
	cursor: pointer;
	-webkit-appearance: button;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
 cursor: pointer;
 -webkit-appearance: button;
}
button[disabled], html input[disabled] {
 cursor: default;
}
input[type="checkbox"], input[type="radio"] {
 box-sizing: border-box;
 padding: 0;
}
input[type="search"] {
 -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
 -webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
 padding: 0;
 border: 0;
}
textarea {
 overflow: auto;
 vertical-align: top;
}
input[type="text"]{
	display: block;
	width: 100%;
	height: 45px;
	margin-bottom: 45px;
	padding: 0 12px;
	border: 0;
	border-radius: 3px;
	font-size: 1em;
	vertical-align: middle;
	line-height: 45px;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
	margin: 0 auto;
	padding: 0;
	width: 90%;
	max-width: 1060px;
}

@media (max-width: 767px) {
	.section--main .container {
		width: 92%;
	}
	.section--entry .container, header .container {
		width: 100%;
	}
}



.l-wrap{
	overflow: hidden;
}

/*===2カラム===*/
/*右メイン*/
.l-main-right{
	float: right;
	width: calc(100% - 285px)
}

.l-side-left{
	float: left;
	width: 250px;
}

@media (max-width: 767px) {
.l-main-right{
	clear: both;
	width: 100%;
}

.l-side-left{
	clear: both;
	width: 100%;
}
}

/*左メイン*/
.l-main-left{
	float: left;
	margin-right: 285px;
}

.l-side-right{
	float: right;
	width: 250px;
}

@media (max-width: 767px) {
.l-main-left{
	clear: both;
	margin-right: 0;
}

.l-side-right{
	clear: both;
	width: 100%;
}
}


/*===1カラム===*/
/*センター*/
.l-main-center{
	max-width: 900px; 
	margin: 0 auto;
}

/*3列用（イベント一覧）*/

.l-2col{
	/*margin-right: -3%;*/
/*	margin-bottom: 70px;
*/}

.l-2col__item{
	float: left;
    width: 31.3%;
    margin: 0 3% 30px 0;
}
.l-2col__item:last-child{
     margin:0 0 30px 0;
}


/*----------  TOPページ用アイコン  -----------------*/

.section--main p i{
	font-size: 0.9em;
	margin-right: 1%;
}
	
@media screen and (max-width: 1029px) {
.l-2col{
	margin-right: 0;
	margin-bottom: 50px;
}

.l-2col__item{
	float: left;
	width: 100%;
	margin: 0 0 30px;
}
}

div[itemprop="l-2col"]{
    display: flex;
    flex-wrap: wrap;
}

/*3列用（事業一覧）*/

.l-3col{
	margin-right: -2%;
	margin-bottom: 70px;
}

.l-3col__item{
	float: left;
	width: calc(33.3333% - 2%);
	margin: 0 2% 30px 0;
}

@media screen and (max-width: 767px) {
.l-3col{
	margin-right: 0;
	margin-bottom: 50px;
}

.l-3col__item{
	float: left;
	width: 100%;
	margin: 0 0 30px;
}
}

div[itemprop="l-3col"]{
    display: flex;
    flex-wrap: wrap;
}

/*4列用（フロントページ下）*/

.l-4col{
	margin-right: -5px;
	margin-left: -5px;
	display: block;
}

.l-4col__item{
	float: left;
	width: 25%;
	padding-right: 5px;
	padding-left: 5px;
	margin: 0;
}

@media screen and (max-width: 767px) {
.l-4col{
	margin-bottom: 50px;
	margin-right: -5px;
	margin-left: -5px;
}

.l-4col__item{
	float: left;
	width: 50%;
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 10px;
}
		/* スマホ画像 */
	.sumaho_img{
		display:block;
	}
	.pc_img{
		display: none !important;
	}
}

/* スマホ向け */
@media screen and (max-width: 480px) {
.l-4col{
	margin-right: 0;
	margin-left: 0;
}

	.l-4col__item {
	width: 100%;
	padding: 0; 
	margin-right: 0;
	margin-left: 0;
	}
	
}

/* Header
   ----------------------------------------------------------------- */

#header { … }

header {
	background: none;
}

/* Main
   ----------------------------------------------------------------- */

#main { … }

/**
 * index
 *
 * Blah Blah Blah
 */

 /*  */
.section {
	margin: 20px 0 50px;
	overflow: hidden;
}
/*トップページ*/
.section--main{
	background: #efefef;
	margin-top: 30px;
	margin-bottom: 20px;
}
/*シングル・ページ*/
.section--entry{
	background: #efefef;
	margin-top: 2em;
	margin-bottom: 20px;
}
/*バナーエリア*/
.section--banner{
	padding: 30px 0 30px;
	background: #ccc;
}

 /* 加盟機関 */
.section--member {
	padding:30px 0 40px;
	margin: 0;
	background-image: url(images/bg-member2.jpg);
	background-size: cover;
}

@media screen and (max-width: 767px) {
.section--member {
		display: none;
	}
}

 /* Left colmn */
.l-index-left{
    float: left;
    width: 100%;
    /*margin-top: 30px;*/
}

 /* Right colmn */
.l-index-right{
    float: right;
    width: 32%;
    /*margin-top: 30px;*/
}

@media screen and (max-width: 767px) {
	.l-index-left {
	    float: left;
	    clear: both;
	    width: 100%;
	    margin-top: 30px;
	}

	.l-index-right{
		float: right;
		clear: both;
	    width: 100%;
	    margin-top: 30px;
	}

}


 /* Left colmn */
.l-index-news{
	display: flex;
}

.l-index-news__main{
    float: left;
    width: 67%;
}

 /* Right colmn */
.l-index-news__sub{
    float: right;
    width: 33%;
    background: #ccc
}

@media screen and (max-width: 767px) {
	.l-index-news{
		display: block;
	}

	.l-index-news__main {
	    clear: both;
	    width: 100%;
	    margin-top: 30px;
	}

	.l-index-news__sub{
		clear: both;
	    width: 100%;
	    margin-top: 30px;
	}

}

/* Footer
   ----------------------------------------------------------------- */

.footer- {
	background: #472b19;
	font-size: 0.9rem;
	color: #fff;
}

footer {
	background: #fff;
	font-size: 0.9rem;
	color: #555;
}
.footer-container {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 70px;
}

.home .footer-container {
	margin-top: 0px;
}

/* ==========================================================================
   Object
   ========================================================================== */

/* Component
   ----------------------------------------------------------------- */

/**
 * Button
 *
 * Blah Blah Blah
 */

.c-btn { … }
.c-btn--primary {
  ...
}

/**
 * Media
 */

.c-media:before,
.c-media:after{
	display: table;
	content: " ";
}

.c-media:after{
	clear: both;
}

.c-media__image{
	float: left;
	margin-right: 15px
}

.c-media__image > img{
	display: block;
}

.c-media__body{
	overflow: hidden;
}

/**
 * list
 */


/**
 * Card
 */
.c-card{
	background-color: #fff;
	/*overflow: hidden;*/
}

.c-card--round{
	border-radius: 4px;
}

/* Project
   ----------------------------------------------------------------- */

/* ========== すべて共通 ========== */

.card--index{
	padding: 30px;
}

@media (max-width: 767px) {
.card--index{
	padding: 20px 15px;
}
}

.card--article{
	padding: 35px 45px 40px;
	min-height: 600px;
}

.activities-template-page-1col-narrow .card--article,
.single .card--article{
	padding: 35px 70px 40px;
}

@media (max-width: 767px) {
.card--article,
.activities-template-page-1col-narrow .card--article,
.single .card--article{
	padding: 25px 15px 40px;
	margin-bottom: 30px;
	min-height: 300px;
}
}

.card--activity{

}

.card--side{
	padding: 15px 10px;
}

/*記事一覧*/
/*カードタイプ*/
.cardtype{
	position: relative;
}

.cardtype__img{
	/*display: block;*/
	/*width: 100%;*/
	margin: 0;
	height: 0;
	padding-bottom: 61.9%;
}
.radius_c .cardtype__img img{
	border-radius: 4px;
}

.cardtype__text{
	padding: 15px 20px;
}

.cardtype__text--news{
	padding: 10px 20px 35px;
}

.cardtype__title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    color: #555;
}

.cardtype__title--news {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    height: 4.2em;
    overflow: hidden;
    color: #555;
}

.cardtype__title--event{/*プロントページの表示では高さを固定*/
	height: 48px;
    overflow: hidden;
}

.cardtype__desc{
	font-size: 14px;
	line-height: 1.7;
	color: #777;
}

.cardtype__date, .cardtype__place {
    font-size: 15px;
    height: 19px;
    overflow: hidden;
    margin-top: 4px;
    line-height: 1.5;
    display: block;
    color: #777;
}

.cardtype__date--search {
    padding-top: 0;
    margin-top: -5px;
    margin-bottom: 10px;
}

.cardtype__date--news {
	padding-top: 0;
    margin-top: 0;
	font-size: 13px;
	margin-bottom: 5px;
}

.cardtype__tags {
    position: relative;
    margin-top: 5px;
    font-size: 12px;
    height: 17px;
    overflow: hidden;
    line-height: 1.4;
    color: #828282;
    padding-left: 18px;
    display: inline-block;
	padding: 2px 4px;
    margin-right: 10px;
}

/*ロングタイプ*/

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
.cat-name {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    top: 12px;
    left: 13px;
    height: 22px;
    margin: 0;
    padding: 0 10px;
    border-radius: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 22px;
}

.cat-name a{
	color: #fff;
}

/* ========== ヘッダー ========== */

.header__container{
	background-color: #fff;
	display: block;
	height: 94px;
	position: relative;
	z-index: 1;

}

@media (max-width: 767px) {
	.header__container{
		width: 100%;
		height: 60px;
		border:none;
	}
}

.header__bg-img{
	height: 550px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

@media (max-width: 767px) {
	.header__bg-img{
		height: 380px;
		background-position: 50% 30px;
	}
}

.header__logo {
	padding: 18px 0 18px 25px;
	width: 18%;
	float: left;
}

@media (max-width: 767px) {
	.header__logo {
		display: table;
		width: 115px;
		padding: 9px 0 0;
		/*margin: 0 32%; */
		margin-left: calc(50% - 57px);
		margin-right: calc(50% - 57px); 
		text-align: center;
	}

	.header__logo a{
		display: table-cell;
	}
}


/* ========== ナビゲーション ========== */
nav {

}

.nav-container{
	float: right;
	width: 82%;
    position: relative;
	padding: 3px 0 0px 25px;
}

@media (max-width: 767px) {
	.nav-container{
		display: none;
	}
}

.nav__main, .nav__sub, .nav__name {
	display: table;
	list-style-type: none;
}

.nav__main{
	font-size: 16px;
	width: 100%;
	table-layout: fixed;
	margin: 40px -13px 0 0;
}

@media (max-width: 1060px) {
	.nav__main{
		font-size: 14px;
	}
}

.nav__name{
	width: 100%;
	height: 34px;
	top:0;
}

.nav__sub{
    position: absolute;
    width: 550px;
    height: 34px;
    top: 0;
    right: 0;
}

.nav__item--sub > a {
	padding: 9px 10px;
	font-size: 13px;
	color: #fff;
}

.nav__item{
	display: table-cell;
}

.nav__item > a {
	height: 34px;
	display: block;
	text-align: center;
	line-height: 1.2;
	text-decoration: none;
}

.nav__item--main{
	border-right: 1px solid #eeeeee;
}

.nav__item--main > a{
	padding: 10px 0;
	background-color: #fff;
	color: #374252;
}

.nav__item--home{
	width: 10%;
}


nav a:hover {
	opacity: 0.7;
}

/*===ナビドロワー===*/

#nav-drawer{
	position: relative;
}
#nav-drawer form{
	margin: 15px;
}

/*チェックボックス等は非表示に*/
.nav-unshown{
	display: none;
}

/*アイコンのスペース*/
#nav-open{
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	font-size: 23px;
	line-height: 60px;
	text-align: center;
}

@media (min-width: 768px) {
	#nav-open {
		display: none;
	}
}

/*ハンバーガーアイコン*/
#nav-open i, #nav-open i:before, #nav-open i:after {
	color: #fff;
	cursor: pointer;
}

/*閉じる用の薄黒カバー*/
#nav-close{
	/*display: none; *//*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*中身*/
#nav-content{
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999; /*最前面に*/
	width: 90%; /*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 300px; /*最大幅*/
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out; /*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: tlanslateX(-105%); /*左に隠しておく*/
}

/*チェックが入ったら諸々表示*/
#nav-input:checked ~ #nav-close{
	display: block;/*カバーを表示*/
	opacity: .5;
}

#nav-input:checked ~ #nav-content{
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25 rgba(0,0,0,.15);
}
/*リスト*/
.menu-list{
}

.menu-list li{
	border-top: #ccc 1px solid;
	position: relative;
	font-size: 14px;
}
.menu-list a{
	color: #333;
	display: block;
	padding: 12px 12px 10px 25px;
}
.menu-list a::after{
	content: '\f054';/*右向き矢印*/
	font-family: fontawesome;
	font-size: 0.8em;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -8px;
}
/*アコーディオンのアイコン*/
.accbox label:after {
    content: '\f067';/*プラス*/
	font-family: fontawesome;
	font-size: 0.8em;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -8px;
}
/*アイコンを入れ替える*/
.cssacc:checked + label:after {
    content: '\f068';/*マイナス*/
}
.menu-list .menu-list__link,.menu-list__item label{
	color: #fff;
	background-color: #374252;
	padding: 12px 12px 10px 20px;
}
/*ボックス全体*/
.accbox {
    margin: 0;
    padding: 0;
}
/*ラベル*/
.accbox label {
    display: block;
    position: relative;
    cursor :pointer;
    transition: all 0.5s;
}
/*チェックは隠す*/
.accbox input {
    display: none;
}
/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    /*padding: 5px;*/
    background: #eaeaea;
    opacity: 1;
}

/*===フッターナビ===*/

.footer__nav {
	list-style-type: none;
		text-align: center;
}

.footer__item {
	display: inline-block;
	font-size: 10px;
	font-weight: bold;
	padding: 0 12px;
	border-right: solid 1px #ccc;
}

.footer__nav li:last-child{
	border-right: none;
}

.footer__nav a {
	color: #555;
	text-decoration: none;
}

.footer__nav a:hover {
	opacity: 0.7;
}

.footer__copyright{
	text-align: center;
	padding-top: 15px;
	font-size: 12px;
}

/*===検索窓===*/
#searchform div{
	position: relative;
	max-width: 400px;
}
input#s{
	padding-right: 48px;
}
#searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	padding: 0;
	border: none;
	border-bottom: solid 1px rgba(0,0,0,.1);
	border-radius: 0 3px 3px 0;
	color: #fff;
	font-size: 20px;
	text-align: center;
	vertical-align: middle;
	line-height: 40px;
}

/* ========== index.html トップページ ========== */



/* スライダーPC */
@media screen and (min-width: 768px) {
	.header_wrap{
		max-width: 1060px;
    	margin: 0 auto;
}
.slider{
	position: absolute !important;
    width: 100%;
}
.slider,.header__container{
		border-bottom: 5px solid #00a63c;
	}
.slider img{
    height: 450px;
    object-fit: cover;
}
.slick-dots {
    bottom: -8.5% !important;
}
/* スライダーPCここまで */
	.sumaho_img{
		display: none !important;
	　}
}

.slick-next{
	display: none !important;
}

/* about欄 */

#about{
	margin: 6% 0 4% 0;
}
#about h3{
	text-align: center;
}
#about h3,#about p{
	max-width: 780px;
    margin: 0 auto;
}
#about p{
	font-size: 0.8em;
}


/* ピックアップ欄 */

.pickup {
    border-radius: 36px;
    background: linear-gradient(45deg,#383fc3,#8be6ff);
    margin: 0 0 30px;
}

.pickup__text {
    font-size: 15px;
	/*font-weight: bold;*/
    color: #fff;
    text-align: center;
}

.pickup__link {
    display: block;
    padding: 15px;
    color: #fff;
}

/* 見出し */
.section__more{
font-size: 16px;
max-width: 100%;
padding: 5px 30px;
text-align: center;
margin-top: 15px;
display: block;
margin-right: auto;
margin-left: auto; 
overflow: hidden;
background-color: #ccc ;
/*border: solid 2px #374252 ;*/
/*border-radius: 20px;*/
color: #374252;
font-weight: bold;
box-sizing: border-box;
}

.section__more i{
	padding-left: 7px;
	font-size: 0.7em;
}

.section__more::after {
	clear:both;
}

.section__item__image{
	border-radius: 4px;
}

/* ===トップ2カラム=== */
.float-clear{
	overflow: hidden;
}

/* トップ左 */

/* イベント */

.event{
	margin-bottom: 40px;
}

.event__item{
	display: block;
	overflow: hidden;
	clear: both;
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.25);
	border-radius: 4px;
}

.event__item__link{
	display: block;
	margin: 0 3% 20px 0;
	width: 47%;
	float: left;
}


/* 画面幅が広い（タブレット・パソコン向け） */
@media screen and (max-width: 767px) {
	.event__item {
	width: 96%;
	margin: 0 2% 0;
	}

.event__item__link{
	display: block;
	margin: 0 0 20px;
	width: 100%;
	clear: both;
}
}

.event__item__text {
	padding: 15px 10px 15px 0;
}

@media (max-width: 767px) {
	.event__item__text {
		display: block;
		padding: 10px 15px;
	}
}


/* お知らせ */

.news-ol {

}

.news-list-index {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-ol div:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.news__table {
    display: table;
}

.news__cell {
    display: table-cell;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
	.news__table {
	    display: block;
	}

	.news__cell {
		display: inline-block;
		margin-bottom: 5px;
	}
}

.news-ol a:hover {
	opacity: 0.7;
}

.news-ol span, .news-ol a {
    display: block;
}
.news__date {
    width: 90px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.news__cat {
    min-width: 80px;
    padding: 0 10px;
    font-size: 11px;
    color: #fff;
    text-align: center;
    vertical-align: bottom;
    background: #a1abb6;
    border-radius: 20px;
    font-weight: bold;
    line-height: 26px;
    margin-right: 20px;
}

.news__cat--side{
	padding: 1px 13px;
	display: inline-block;
	margin: 0 0 10px;
}

.news__cat a{
	color: #fff;
}

.news-title {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s;
}

/*トピックス*/

.topix h2{
	margin-top: -10px;
}

/* トップ右 */

/* 事業一覧 */
.section__list{
	overflow: hidden;
	margin-right: -10px;
	margin-left: -10px;
	}

.section__list__item {
	float: left;
	width: 33.3333%;
	padding: 0 10px; 
	margin-bottom: 20px;
	/*margin: 0 5px 10px 5px;*/
	list-style-type: none;
	background: none;
}

	/*----------  SNS枠　PC表示用  -----------------*/
@media screen and (min-width: 768px){
#sns{
	overflow: hidden;
}
#sns div{
	float: left;
}	
#sns #twitter,#sns #facebook{
    width:33.3%;
    margin-right: 4.5%;
}
#sns #twitter{
	height: 505px;
    overflow: hidden;
}
#sns #sns_banner{
	max-width: 24%;
    margin-top: 71px;
}
#sns #sns_banner p{
	font-size: 0.8em;
	margin: -2% 0 3% 0;
}
#facebook ._2p3a {
    width: auto !important;
}
#facebook iframe{
	 width: 105% !important;
}
}

/* 画面幅が広い（タブレット・パソコン向け） */
@media screen and (max-width: 767px) {
	.section__list__item {
	width: 50%;
	padding: 0 3px 8px 3px; 
	margin: 0 0 4px;
	}
	#sns_banner{
	    margin-top: 5%;
	}
	#sns_banner img{
		max-width: 45%;
	}
	#sns_banner p{
		display: none;
	}
#facebook iframe{
	 max-width: 100%;
}
}

/* 画面幅が狭いスマホ向け */
@media screen and (max-width: 320px) {
	.section__list__item {
	width: 100%;
	padding: 0; 
	margin: 0 0 4px;
	}
}

.section__list__item figure {
	padding-bottom: 61.9%;
	height: 0;
}

/* 加盟機関一覧 */

.member__title{
	text-align: center;
	font-size: 24px;
	margin-bottom: 10px;

}

.member__subtitle{
	text-align: center;
	font-size: 20px;
	padding-bottom: 7px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	border-bottom: solid 1px #aaa;
	clear: both;
}

.member__main{
	display: block;
	background-color: rgba(255,255,255,0.8);
	padding: 20px 40px 30px;
	margin-bottom: 30px;
}

.member__table{
	display: table;
	width: 100%;
	margin: 1em 0;
}
.member__table:last-of-type{
	margin-bottom: 0;
}
.member__table .cell{
	vertical-align: top;
	display: table-cell;
}
.member__table .cell:first-of-type{
	width: 10%;
	padding-right: 2%;
}
.member__table .cell:last-of-type{
	width: 90%;
	padding-right: 2%;
}
.member__table .cell p{
	font-size: 14px;
	color: #111;
	font-weight: bold;
	margin: 0;
	padding: 0 .5em 0 0;
}
.member__main ul{
	display: block;
	margin-bottom: 10px;
}

.member__main ul:last-child{
	margin-bottom: 0;
}

.member__main__item{
	display: inline-block;
	margin-right: 17px;
	font-size: 14px;
}

.member__main__item a{
	color: inherit;
}

.member__main__item a:hover {
	opacity: 0.7;
}

/* ========== 記事一覧 ========== */

/*パンくずリスト*/
#breadcrumb ul{
  margin-left: 0;
  padding-left: 0;
}

#breadcrumb li{
  display:inline;/*横に並ぶように*/
  list-style: none;
  font-size: 1em;
}

#breadcrumb li:after{/* ▶を表示*/
  font-family: FontAwesome;
  content: '\f0da';
  padding: 0 3px;
  color: silver;
}

#breadcrumb li:last-child:after{
  content: '';
}

#breadcrumb li a {
    text-decoration: none;
    padding: 0 4px;
    color: #888;
}

#breadcrumb li:first-child a{/*家アイコン*/
  font-family: FontAwesome;
  /*content: '\f015';*/
  font-weight: normal;
  font-size: 1.1em;
  color: #668ad8;
}

#breadcrumb li a:hover {
    text-decoration: underline;
}


/*ページネーション*/
.pagination {
	margin: 1.5em 0;
	text-align: left;
}

.pagination .nav-links{
	display: block;
	clear: both;
	padding-top: 1.5em;
	border-radius: 3px;
	text-align: center;
}

.pagination a, .pagination .current{
	display: inline-block;
	margin: 0;
	color: #555;
	width: 46px;
	border-radius: 50%;
	font-size: 17.5px;
	font-weight: bold;
	text-decoration: none;
	line-height: 46px;
}

.pagination .prev, .pagination .next{
	background: none;
}

.pagination .current {
	color: #fff;
	margin: 3.5px;
	background: #668ad8;
	cursor: default;
}

.pagination .dots {
	background: none;
	font-weight: bold;
	cursor: default;
}

.pagination a:hover{
background: #fff;
opacity: 1;
}


/* サイドバー */

/*.side-list__item,*/
.side-list li{
	border-top: #ccc 1px solid;
	position: relative;
	font-size: 14px;
}

/*.side-list__item,*/
.side-list a::after{
	content: '\f054';
	font-family: fontawesome;
	font-size: 0.8em;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -8px;
}

/*.side-list__item .is-active,*/
.side-list .current_page_item{
	background-color: #fff;
}

/*.side-list__link,*/
.side-list a{
	color: #333;
	display: block;
	padding: 14px 14px 10px 25px;
}

/*.side-list__link,*/
.side-list a:hover{
	background-color: rgb(255,255,255,0.7);
}

.side-list__link--first,
.side-list .side-list__link{
	color: #fff;
	padding: 14px 14px 10px 20px;
}

.side-list__link--first:hover,
.side-list .side-list__link:hover{
	opacity: 0.7;
}

/**
 * Heading
 */

.heading--a {
	font-size: 22px;
	padding-left: 20px;
    line-height: 35px;
    position: relative;
    margin: 0 0 17px 0;
    font-weight: bold;
    color: #333;
}
.heading--a::before {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 21px;
    border-radius: 3px;
}
.heading--a--section {
font-size: 24px;
margin-bottom: 25px;
display: inline-block;
float: left;
}
.heading--c{
	color: #555;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid #555;
	padding-bottom: 12px;
	margin: 50px 0 30px;
	overflow: hidden;
}
.heading--d{
	color: #555;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	border-bottom: solid 5px #374252;
	background-color: #fff;
	padding: 30px 0;
	margin-bottom: 30px;
}

.heading--d i{
	color: #374252;
}

.heading--e{
	color: #555;
	text-align: center;
	font-size: 44px;
	line-height: 1.4;
	padding: 0;
	margin-bottom: .7em;
	font-family: 'Quicksand', sans-serif;
}

.heading--e--sub{
	margin-right: 20px;
}

.heading--e--small{
	font-size: 34px;
}
/**
 * button
 */

.btn--small{
	border: none;
	background-color: #999;
	color: #fff;
	padding: 5px 10px ;
	margin: 0 5px 10px 0;
	font-size: 13px;
	line-height: 1.4;
	border-radius: 4px;

	position: relative;
	display: inline-block;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}

/**
 * Articles　記事
 */

.p-articles { … }
.p-article {
  ...
}
.p-article__title {
  ...



}

h1{
	font-size: 1.5em;
}

.entry__header,.archive__header {
	margin: 0 0 25px;
}

.entry__info {
	margin: 0 0 20px;
	padding: 0;
	color: #8e949a;
	font-size: 14px;
	font-weight: bold;
}

.entry__time {
	padding: 0;
}


/*記事内見出し（これ以外の見出しは<p>で指定）*/

.entry__title {
	padding: 15px 0;
	color: #444
}
@media (max-width: 767px) {
	.entry__title {
		font-size: 1.2rem;
	}
}

.entry__content h2{
    margin: 50px 0px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 8px 10px 8px 15px;
    border-left: 5px solid #374252;
    border-bottom: 3px solid #ccc;
    background: #f2f2f2;
    color: #222;
}

@media (max-width: 767px) {
	.entry__content h2 {
		font-size: 1.2rem;
	}
}

.entry-header + .entry__content h2{
	margin-top: 0;
}

.entry__content h3{
	font-size: 22px;
padding: 0 0 0 20px;
margin: 45px 0 20px;
    line-height: 35px;
    position: relative;
    font-weight: bold;
    color: #333;
}
.entry__content h3::before, .page-template-page-sitemap .page_item_has_children::before {
    content: '';
    display: block;
    position: absolute;
    margin-left: 2px;
    top: 0;
    left: 0;
    width: 6px;
    height: 33px;
    border-radius: 3px;
}
@media (max-width: 767px) {
	.entry__content h3 {
		font-size: 19px;
	}
	.entry__content h3::before {
		height: 30px;
	}
}
.entry__content h2 + .entry__content h3 {
	margin-top: 0;
}
.entry__content h4{
	margin: 1.7em 0 .3em;
	font-size: 1.1em;
	color: #333;
}
.entry-content h2:first-child, .entry-content h3:first-child ,.entry-content h4:first-child{
  margin-top: 0;
}

/*
 * シェアボタン
 */
.sns-btn {
 margin: 0 auto;
 text-align: center;
}

.sns-btn__item {
 display: inline-block;
 position: relative;
}

.sns-btn__item a {
 display: inline-block;
 width: 90px;
 height: 76px;
 margin: 6px 4px;
 padding: 10px 0;
 border-radius: 10px;
 background: #fff;
 font-size: 13px;
 font-weight: bold;
 text-align: center;
 vertical-align: middle;
 transition: .3s ease-in-out;
}
.sns-btn__item a:hover {
 text-decoration: none;
}
.sns-btn .sns-btn__item .fa {
  display: block;
  width: auto;
  height: auto;
}

.fa-hatebu:before {
 font-family: "Quicksand","Arial",sans-serif;
 font-size: 1.1em;
 font-weight: bold;
 line-height: .9;
 content: "B!";
}

.normal-sns {
 position: relative;
}
.normal-sns .share_txt {
 display: none;
}
.normal-sns ul {
 margin: 0;
 padding: 70px 0 14px;
 background: #eaedf2;
 -webkit-backface-visibility:hidden;
 backface-visibility:hidden;
 overflow:hidden;
}
.normal-sns ul li {
 width: auto;
 margin: 0;
}
.normal-sns ul li a {
 position: relative;
 width: 40px;
 height: 40px;
 margin: 3.5px;
 padding: 0;
 box-shadow: 0 5px 15px -4px rgba(0, 0, 0, .15);
 transition: all .3s;
 transition-timing-function: cubic-bezier(.51, .1, .36, 1.68);
}
.normal-sns ul li a:hover {
 opacity: 1;
 transform: scale(1.04) translateY(-1px);
}
.normal-sns ul li .fa {
 font-size: 15px;
 line-height: 40px;
}
.normal-sns .line a .fa {
 position: relative;
 top: -5px;
}
.normal-sns .line .share_txt {
 display: inline-block;
 position: absolute;
 bottom: 3px;
 left: 0;
 width: 100%;
 font-size: 7px;
}


.normal-sns ul {
    background: none;
}

.sns-btn__item a {
    border-radius: 50%;
}

.tw a {background: #7dcdf7;
}

.fb a {background:#7c9dec;
}

.gplus a{background:#ff7573;
}

.hatebu a {background:#7cb1ec;
}

.pkt a {background:#f99593;
}

.line a {background:#8ed97a;
}

.sns-btn__item a{color:#fff}

/*画像*/
.entry__content img{
	max-width: 100%;
	height: auto;
}

/*キャプション*/
.wp-caption{
	margin: 0 0 1.5em;
	padding: 8px;
	max-width: 100%;
}

.wp-caption img{
	margin-bottom: 0;
	max-width: 100%;
}

.wp-caption-text{
	margin: 10px 0 0;
	text-align: center;
	color: #555;
	font-size: 0.85em;
}

/*フォーム*/
input[type="text"],input[type="email"],textarea{
 display: block;
 width: 100%;
 height: 45px;
 margin-bottom: 14px;
 padding: 0 12px;
 border: 0;
 border-radius: 3px;
 background-color: #eaedf2;
 box-shadow: none;
 color: #5c6b80;
 font-size: 1em;
 vertical-align: middle;
 line-height: 45px;
 -webkit-transition: background-color .24s ease-in-out;
   transition: background-color .24s ease-in-out;
}
input[type="text"]:focus,input[type="email"]:focus,textarea:focus{
 background-color: #d5edf8;
}
textarea {
 max-width: 100%;
 min-height: 120px;
 line-height: 1.5em;
}
.mw_wp_form input[type="submit"],.mw_wp_form button,.btn--square {
 display: inline-block;
 /*position: relative;*/
 padding: 0 24px;
 margin: 0.7em 1em 0 0;
 border: 0;
 border-radius: 4px;
 color: white;
 font-size: .9em;
 font-weight: normal;
 text-decoration: none;
 line-height: 34px;
 cursor: pointer;
 -webkit-transition: background-color .14s ease-in-out;
 transition: background-color .14s ease-in-out;
}
.mw_wp_form input[type="submit"],.mw_wp_form button,.btn--square {
 padding: 2px 14px;
 border-radius: 2px;
 box-shadow: 0 1.5px 3px rgba(0, 0, 0, .25);
 font-size: 1em;
}

/*ボタン拡張*/

/*ワード*/
a[href$=".doc"] .btn--square, a[href$=".docx"] .btn--square{
background-color: #4670c5;
}
/*エクセル*/
a[href$=".xls"] .btn--square, a[href$=".xlsx"] .btn--square{
background-color: #39a25f;
}


/* Utility
   ----------------------------------------------------------------- */

/**
 * Clearfix
 */
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.u-clearfix {
  overflow: hidden !important;
}

.u-clear{
	clear: both !important;
}

.u-textBold{
	font-weight: bold !important;
}

/**
 * Display
 */

.u-block {
  display: block !important;
}

/**
 * Margin
 */

.u-mbs { /* Margin-Bottom: Small; */
  ...
}

.u-mbs{
	margin-bottom: 10px !important;
}

.u-mb20{
	margin-bottom: 20px !important;
}

.u-mbm{
	margin-bottom: 30px !important;
}

.u-mbl{
	margin-bottom: 50px !important;
}

.u-vertical-gutter{
	margin-bottom: 20px !important;
}

.u-mtm{
	margin-top: 30px !important;
}


/*ネガティブマージン*/
.u-nmr10{
	margin-right: -10px !important;
}


/**
 * color
 */
.u-color-main{
	color: #374252 !important;
}

.u-color-333{
	color: #333 !important;
}

.u-color-555{
	color: #555 !important;
}

.u-bgcolor-main{
	background-color: #374252 !important;
}

.u-bgcolor-sub{
	background-color: #668ad8 !important;
}

.u-bgcolor-body{
	background-color: #eceef1 !important;
}

.u-bgcolor-white{
	background-color: #fff !important;
}

.u-bgcolor-none{
	background-color: none !important;
}

.u-shadow{
	box-shadow: 0 1px 4px rgba(0,0,0,0.25) !important;
}


/*背景色にメインカラーを適用*/
.nav__item--sub > a,#nav-open,.news__cat,.topix__title::before,.side-list__link--first,.side-list .side-list__link,.side-list__link--first:hover,.side-list .side-list__link:hover {
	background-color: #374252;
}
/*背景色にサブカラーを適用*/
.heading--a::before,.entry__content h3::before, #searchsubmit,.mw_wp_form input[type="submit"],.mw_wp_form button,.btn--square,.entry__content ol li::before{
	background-color: #668ad8;
}