@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	overflow-x: hidden;
}

body {
	font-family: 'Lato', 'M PLUS 1 Code', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
	background: #fff;	/*背景色*/
	color: #555;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}


/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section,
main > article {
	margin: 0 auto;
	padding: 5%;		/*ボックス内の余白*/
}


/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
}

/*c2内のh2見出し*/
.c2 h2 {
	font-size: 2em;
}

/*小さい端末で見た場合（１カラムになった際）に、画像を常に先頭に持ってくる*/
.c2 .image {
	order: -1;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	background:#FFFFFF;			/*背景色*/
	position: fixed;	/*スクロールしても動かないようにする指定*/
	width: 100%;
	padding: 0 3%;					/*上下、左右へのヘッダー内の余白*/
	height: 70px;					/*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
    z-index:14;
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color:#171717;
}

/*ロゴ画像*/
header #logo img {display: block;}
header #logo {
	margin: 0;
	width: 250px;	/*幅*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	width: 100%;
	padding: 0;
}
.slide {
  position:relative;
}
.slide-items{
  width:100%;
  height:100%;
  margin: 0 auto;
  padding: 0;
}

.slide-comment {
  z-index:10;
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;

}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
 
.slick-prev {
    left: 1.5em;
	z-index:11;
}
 
.slick-next {
    right: 1em;
	z-index:12;
}
 
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #CCC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
.slick-prev:before {
    content: '＜';
}
 
.slick-next:before {
    content: '＞';
}
 
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
 
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
 
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}



/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	padding: 10px;			/*メニュー内の余白*/
}


/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 70px 20px;	/*上下、左右へのブロック内の余白*/
	background: rgba(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #fff;		/*文字色*/
}
.s #menubar.db a {
	display: block;
	color: #fff;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 5px;			/*右からの配置場所指定*/
	top: 2px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 46px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: rgba(0,0,0,0.5);	/*背景色*/
	border-radius: 50%;				/*円形にする*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}

ul.globalnavi li{
	font-weight: bold;
	position: relative;
}

ul.globalnavi li a{
	color:  #340E00;
}

ul.globalnavi li a::after {
  content: '';
  display: block;
  height: 1px;
  width: 0%;
  background:#006EA4;
  position: absolute;
  bottom: 0;
  left: 10%;
  transition: .3s;
}

ul.globalnavi li a:hover {
  color: #006EA4;
}

ul.globalnavi li a:hover::after {
  width: 80%;
}

ul.globalnavi li span{
	display: block;
	text-align: center;
	font-size: 0.8em;
	font-weight: normal;
	color: #525252;
	position:absolute;
	top:80%;
	left:50%;
	transform: translate(-50%, -50%);
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding-top: 50px;
}

/*mainブロック内のh2タグ*/
main h2 {
	margin: 0;		/*上、左右、下へのタグの外にとるスペース*/
	line-height: 1.0;		/*行間を少し狭く*/
	font-size: 2em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #340E00;			/*文字色*/
	font-family: 'Lato';	/*GoogleFontsの指定*/
	font-weight:bold;		/*文字の太さ*/

}

/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
	display: block;
	font-weight: normal;
	color: #777;		/*文字色*/
	font-size: 13px;	/*文字サイズ*/
	
}

/*mainブロック内のh3タグ*/
main h3 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	color: #fff;			/*文字色*/
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.5em;
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}
main p + p {margin-top: -15px;}

/*mainブロックのaタグ*/
main a {
  padding-bottom: 1px;
  text-decoration: none;
  position: relative;
}
a::before {
  background:#025A00;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}



/*会長挨拶ブロック*/

.blue{
	background-image: url("../img/bg1.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover; /* 背景画像を要素にカバーさせる */
}
.h_blue {
	color:#171C61;
}
.f_left{
	float: left;
	width: 30%;
	margin-top: 2em;
	margin-right: 3em;
	text-align: right;
}
.f_right{
	clear: both;
	margin-top: 2em;
	width: 100%;
	color: #2E1000;
}
.f_list{
	list-style: none;
	margin-left:2em;
}
.f_list li{
  padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em; 
}
.blue_message {
	width: 80%;
	margin: 1em auto;
	padding: 0 10%;
}
.r_list{
	list-style: none;
	margin-left:40%;
}
.r_list li{
  padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em; 
}
.message_box {
	width: 90%;
	margin: 4em auto;
}
.message_box p{
	margin: 2em auto;
}
.message_box span{
  margin-bottom: 0em;
}
.message_text {
	clear: both;
	width: 100%;
	margin-bottom: 0em;
}
.message_img {
	display: none;
}
.message_img2 {
	width: 80%;
	margin: 1em auto;
	display: block;
}
.history {
	width: 90%;
	margin: 2em auto;
}
.history table {
  width: 100%;
  border-collapse: collapse;
  margin: 4em auto;
}
.history table tr th{
  background: #14307B;
  color: #FFF;
  border-bottom: 1px solid #002488;
  border-top: 1px solid #002488;
  font-weight: normal;
  width: 20%;
}
.history table tr td {
  padding: 0.7em 1.2em;
  border-bottom: 1px solid #002488;
  border-top: 1px solid #002488;
  width: 80%;
}
.history table tr:nth-child(even) {
  background: #fff;
}
.history table tr:nth-child(odd) {
  background:#BDE0FF;
}




/*団体概要ブロック*/
.about_box {
	display: block;
}

.about1 {
	width: 90%;
	height: 15em;
	margin: 2rem 1% 0 2%;
	background-image:url("../img/work01.png");
	background-size:cover;
	background-repeat:no-repeat;
    border-radius: 2em;
	display: flex;
	justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}
.about2 {
	width: 90%;
	height: 15em;
	margin: 2rem 1%;
	background-image:url("../img/work02.png");
	background-size:cover;
	background-repeat:no-repeat;
    border-radius: 2em;
	display: flex;
	justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}
.about3 {
	width: 90%;
	height: 15em;
	margin: 2rem 1%;
	background-image:url("../img/work03.png");
	background-size:cover;
	background-repeat:no-repeat;
    border-radius: 2em;
	display: flex;
	justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}

.about_table {
  border-collapse: collapse;
  width: 100%;
}
.about_table th {
  background: #ccc;
}
.about_table th, td {
  border: 1px solid #ccc;
  padding: 8px;
}
.about_table tr:nth-child(even) {
  background: #efefef;
}



a.btn_23 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 70%;
	margin:auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #fff;
	background-color: rgba(25, 25, 25, 0.5);
	color: #fff;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}
a.btn_23::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(39, 172, 217, 0.5);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
a.btn_23:hover::before {
	transform: translateX(0);
}
a.btn_23:hover {
	color: #fff;
}
#about h4 {
	padding:5px;  /*内側の余白*/
	font-size: 1.5em;
	letter-spacing: 0.7em;
	color: #2E1000;
}
#about h4:before {
    content: url("../img/bit2.png");  /*画像のURL*/
    margin-right:1em;  /*画像右の余白*/
	position:relative;
    top:0.10em;      /*上からの位置*/
    left:0.5em;      /*左からの位置*/
}
.about_img {
	text-align: center;
	width: 100%;
}
.about_img img{
	width: 50%;
}
#about h5 {
	padding:5px;  /*内側の余白*/
	font-size: 1.5em;
	color: #2E1000;
	text-align: center;
	letter-spacing: 0.5em;
}
#about h5:before {
    content: url("../img/bit2.png");  /*画像のURL*/
    margin-right:1em;  /*画像右の余白*/
	position:relative;
    top:0.10em;      /*上からの位置*/
    left:0.5em;      /*左からの位置*/
}
#about h5:after {
    content: url("../img/bit2.png");  /*画像のURL*/
    margin-left:-0.5em;  /*画像右の余白*/
	position:relative;
    top:0.10em;      /*上からの位置*/
    left:0.5em;      /*左からの位置*/
}
p.iinkai_title {
	padding:5px;  /*内側の余白*/
	font-size: 1.5em;
	color: #2E1000;
	text-align:left;
	letter-spacing: 0.5em;
}
p.iinkai_title:before {
	content: url("../img/bit3.png");  /*画像のURL*/
    margin-right:1em;  /*画像右の余白*/
	position:relative;
    top:0.10em;      /*上からの位置*/
    left:0.5em;      /*左からの位置*/
}
.a-box {
	width:100%;
}

.about_list{
	list-style: decimal;
}



/*会員名簿ブロック*/
.white{
	background-image: url("../img/bg2.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover; /* 背景画像を要素にカバーさせる */
}
.white h2,.white h2 span{
	color: #fff;
	margin-bottom: 1em;
}
.white p{
	color: #fff;
	margin:1em auto;
	text-align: center;
}
.w_list{
	list-style: none;
	margin:2em auto;
	display:inline-block;
	width: 100%;
	justify-content: center;
}
.w_list li{
  padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em;
  color: #fff;
  margin: 0 2em;
  text-align: left;
}
.w_list li a{
	color:#FFF;
}

.list{
  color: #4d9bc1;
  width: 85%;
	margin: 0 auto;
  
}
.list table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
  border-style: solid;
  border-width: 2px;
  border-color: #ccc;
  margin: 0 auto;
}
.list h4 {
  font-size: 1.5em;
  color: #0842A4;
  margin: 2em 0 0.5em 0;
}
.list tr {
  background-color: #e6f1f6;
}
.list tr:nth-child(even) {
  background-color: #fff;
}
.list th {
  background-color: #4d9bc1;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.list th, td {
  padding: 1em 0.3em;
}
.list th, td a{
	color: #4d9bc1;
}
#member .tr2{
  background-color: #4d9bc1;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
#member .td1{
	width: 29%;
}
#member .td2{
	width: 14%;
}
#member .td3{
	width: 38%;
}
#member .td4{
	width: 18%;
}
#member .td5{
	width: 22%;
}
.right_type {
	text-align: right;
	color: #222;
}


/*協会だよりブロック*/
.link_list {
	display: block;
	flex-wrap: wrap;
	list-style: none;
	margin:2em auto;
	width: 80%;
	color:#340E00; 
}
.link_list li{
	width: 100%;
	padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em;
}

.align-center {
	text-align: center;
	margin: 2em auto 4em;
}

dl.reports {
	display: block;
}
dl.reports dt{
	width: 60%;
	display: block;	
	margin: 0 auto;
}
dl.reports dt img{
	width: 100%;
	text-align: center;
	transition: all 0.5s ease-in-out;
}
dl.reports dt img:hover{
	transform: scale(1.1);
}
dl.reports dd{
	width: 100%;
}
dl.reports dd p{
	font-size: 1.0em;
	margin: 0.5em;
	padding: 0.5em;
}
dl.reports dd p a{
}
dl.reports dd p a:hover{
	color: #4d9bc1;
}
.mokuji {
	background:#C7E2FD;
	padding:1em 0.5em;
	display: block;
	display: -webkit-block;
}
.mokuji ol{
	width: 100%;
}
.mokuji ol li{
	list-style: none;
}

/*協会だよりブロック*/
.links {
	width: 50%;
	margin: 0 auto;
}

.links ul li{
	list-style: none;
	padding: 1em 0;
}
a.book {
  padding-bottom: 1px;
  text-decoration: none;
  position: relative;
}
a.book::before {
  background:#FFF;
  position: absolute;
}
a.book:hover::before {
}


.Pagination {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  width:100%;
  margin: 3em auto;
}
.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 25px;
  height: 25px;
  background: #fff;
  border: solid 1px #111;
  font-size: 11px;
  color: #111;
  font-weight: bold;
  transition: all 0.15s linear;
}
.Pagination-Item-Link-Icon {
  width: 10px;
}
.Pagination-Item-Link.isActive {
  background: #111;
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
  background: #111;
  color: #fff;
}
.Pagination > * + * {
  margin-left: 10px;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.7rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	background: #036EB8;		/*背景色*/
	color: #fff;			/*文字色*/
}

/*リンクテキスト*/
footer a {text-decoration: none;color: #fff;}

/*著作部分*/
footer .pr {display: block;}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #036EB8;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 0.7em;	/*文字サイズ*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #fff;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #5D9EFF;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	width: 40%;
	display: none;
}

.footertitle {
    line-height: 1.0em;
	width: 100%;
}
.footertitle img {
	width: 400px;
	}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
	list-style: disc;
}

div.news_list{
	width: 100%;
	margin: 1.5em auto;
}
div.news_list dl {	
}

.no-display {
	display: none;
}


/*日付(dt)、記事(dd)共通設定*/
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
	border-bottom: 1px dashed #124D00;
	
}

/*日付(dt)設定*/
#new dt {
	width: 100%;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
	padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  display: block;
  
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: 100%;	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
	display: block;
}




/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #999;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	position: relative;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 0;
	color: #666;	/*文字色*/
}
.list-container .list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list-container .list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}

/*list内のNEWマーク*/
.list-container .list .new {
	font-size: 0.6em;		/*文字サイズ*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	transform: rotate(-30deg);	/*回転。まっすぐ表示させたいならこの１行を削除。*/
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list2 div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #4d770b;			/*文字色*/
}

.list2 h4 a {
	color: #4d770b;			/*リンクテキストの文字色*/
}

.list2 h4 a:hover {
	color: #333;			/*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.7em;		/*文字サイズを70%に。*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt, dl.line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*左のボックス*/
dl.line dt {
	width: 8em;				/*幅。8文字(em)分。*/
	background: #f0f0f0;	/*背景色*/
}
/*右のボックス*/
dl.line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: none;
}


/*icon
---------------------------------------------------------------------------*/
.icon {
	display: inline-block;
	margin: 1px;
	line-height: 1.5;
	padding: 0px 10px;
	border: 1px solid #999;
	color: #999;
	font-weight: normal;
	font-size: 0.8em;
}
.icon.newicon {
	border-color: transparent;
	background: #f00;
	color: #fff;
}
.icon.upicon {
	border-color: transparent;
	background: #54b1ff;
	color: #fff;
}

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 5px 30px;
	font-size: 1.2em;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}
a.btn1 {
	background: #ffce2b;
	color: #444;
}
a.btn2 {
	background: #308396;
	color: #fff;
}
.radius {
	border-radius: 100px !important;
}
a.btn1 i, a.btn2 i {
	margin-left: 20px;
}
a:hover.btn1, a:hover.btn2 {
	transform: scale(1.03);
	filter: brightness(1.1);
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #eee;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
	background: #eee;
}
.bg2 {
	background: #fef3d9;
}
.bg3 {
	background: #ffce2b;
}
.bg3 h2 {
	color: #555;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5em;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #4d770b !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee; border: 1px solid #ccc; border-radius: 3px;margin: 2px 0; word-break: break-all;}
.small {font-size: 0.6em; letter-spacing: normal !important;}
.large {font-size: 1.8em !important;}
.block {display: block !important;}
.sh {display: block;}
.pc {display: none;}
.hidden {position: absolute; top: -9999px; left: -9999px;}


/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {


/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
	padding: 0px 15px;
}
a.btn1 i, a.btn2 i {
	margin-left: 10px;
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}


/*2カラムブロック
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	flex-direction: row;			/*子要素を横並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	
	margin-left: -6%;
	margin-right: -6%;
}
/*画像ブロック*/
.c2 .image {
	width: 60%;
}

/*テキストブロック*/
.c2 .text {
	width: 40%;
	padding: 0 3%;
}

/*最初(左)に配置*/
.c2 .l {
	order: -1;
}

/*画像を右側に配置する場合の設定*/
.c2 .image.r {
	overflow: hidden;
	/*margin-right: -6%;	画像を画面枠ギリギリまで移動する*/
	border-radius: 100px 0px 0px 100px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

/*画像を左側に配置する場合の設定*/
.c2 .image.l {
	overflow: hidden;
	/*margin-left: -6%;	画像を画面枠ギリギリまで移動する*/
	border-radius: 0px 100px 100px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*テキストブロック*/
#mainimg #text {
	width: 50%;		/*幅*/
}


/*menubarブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	font-size: 0.85em;	/*文字サイズを少し小さくする*/
}
#menubar ul {
	display: flex;	/*flexボックスを使う指定*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	padding: 10px 15px;	/*上下、左右への余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
#new dd,#new dt {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
	border-bottom: 1px dashed #124D00;
}

/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	padding-left: 2em;
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8em;		/*文字サイズを80%に。*/
	text-align: center;		/*文字をセンタリング*/
	margin-right: 1em;		/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}
	
/*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #4d770b;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
	display: flex;
}
div.news_list{
	width: 70%;
	}
.no-display {
	display:inline-block;
}
.f_right{
	float: right;
	margin-top: 2em;
	width: 60%;
	color: #2E1000;
	clear: none;
}

.about_box {
	display: flex;
}
.about1 {
	width: 31%;
	height: 15em;
	margin: 2rem 1% 0 2%;
	background-image:url("../img/work01.png");
	background-size:cover;
	background-repeat:no-repeat;
    border-radius: 2em;
	display: flex;
	justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}
.about2 {
	width: 31%;
	height: 15em;
	margin: 2rem 1%;
	background-image:url("../img/work02.png");
	background-size:cover;
	background-repeat:no-repeat;
    border-radius: 2em;
	display: flex;
	justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}
.about3 {
	width: 31%;
	height: 15em;
	margin: 2rem 1%;
	background-image:url("../img/work03.png");
	background-size:cover;
	background-repeat:no-repeat;
    border-radius: 2em;
	display: flex;
	justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}
	
.w_list{
	list-style: none;
	margin:2em auto;
	display: flex;
	width: 100%;
	justify-content: center;
}
.w_list li{
  padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em;
  color: #fff;
  margin: 0 2em;
  text-align: center;
}
.w_list li a{
	color:#FFF;
}
/*協会だよりブロック*/
.link_list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin:2em auto;
	width: 60%;
	color:#340E00; 
}
.link_list li{
	width: 50%;
	padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em;
}
.pc-none {
	display: none;
}
.message_text {
	float: left;
	width: 70%;
	margin-bottom: 0em;
}
.message_img {
	width: 20%;
	float: right;
	margin-bottom: 0em;
	display: block;
}
.message_img2 {
	width: 100%;
	display:none;
}

dl.reports {
	width: 90%;
	margin: 4em auto;
	display: flex;
    flex-wrap: wrap;
}
dl.reports dt{
	width: 33%;
}
dl.reports dt img{
	width: 80%;
	transition: all 0.5s ease-in-out;
}
dl.reports dt img:hover{
	transform: scale(1.1);
}
dl.reports dd{
	width: 66%;
}
dl.reports dd p{
	font-size: 1.2em;
}
dl.reports dd p a{
}
dl.reports dd p a:hover{
	color: #4d9bc1;
}
.mokuji {
	background:#C7E2FD;
	padding:1em 0.5em;
	display: flex;
	display: -webkit-flex;
    flex-wrap: wrap;
}
.mokuji ol{
	width: 50%;
}
.mokuji ol li{
	list-style: none;
}	

.Pagination {
  display: flex;
	list-style: none;
  align-items: center;
	width:400px;
	margin: 1em auto;
}
.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 2px #111;
  font-size: 14px;
  color: #111;
  font-weight: bold;
  transition: all 0.15s linear;
}
.Pagination-Item-Link-Icon {
  width: 20px;
}
.Pagination-Item-Link.isActive {
  background: #111;
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
  background: #111;
  color: #fff;
}
.Pagination > * + * {
  margin-left: 12px;
}

	
/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8em;	/*文字サイズ*/
	padding: 20px 50px;	/*上下、左右へのボックス内の余白*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	display:block;
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
	width: 40%;
}
.footertitle {
    line-height: 1.0em;
	width: 60%;
}
.footertitle img {
		width: 400px;
	}
.footertitle p {
	margin-left:5em;
	}
	
/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}

/*１個あたりのボックス設定*/
.list-container .list {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 32%;						/*幅。３列になります。*/
	margin-right: 2%;
}

.list-container .list:nth-of-type(3n) {
	margin-right: 0;
}

/*ボックス内のtextブロック*/
.list-container .list .text {
	flex: 1;
}


/*aboutブロック
---------------------------------------------------------------------------*/
.a-box {
	width:60%;
}

	.about_list {
		width: 100%;
		margin: 0 auto 0 3em;
	}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}
.sh {display: none;}
.pc {display: inline-block;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*---------------------------------------------------------------------------
ここから下は画面幅900px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:900px) {

/*団体概要の設定
---------------------------------------------------------------------------*/
.about_img img{
	width: 80%;
}
.slide {
  position:relative;

}
.slide-items{
  width:100%;
  height:200%;
  transform: scale(1.5,1.8);
  margin: 5em auto 0;
  padding: 0;
}

.slide-comment {
  z-index:10;
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  transform: scale(1.0);
}
	
/*会長挨拶の設定
---------------------------------------------------------------------------*/	
.pc-none {
	display:inline-block;
	width: 100%;
	margin: 0 auto;
}
.pc-none img{
	width: 40%;
	display: block;
	margin: 0 auto;
	text-align: center;
}
	
/*会長挨拶ブロック*/

.f_left{
	clear: both;
	width: 100%;
	margin-top:1em;
	margin-right:0;
	margin-bottom: 1em;
	text-align:center;
}
.f_right{
	margin-top: 2em;
	width: 100%;
	color: #2E1000;
}
.f_list{
	list-style: none;
	margin-left:2em;
}
.f_list li{
  padding-left: 2em;
  background-image:url("../img/bit.png");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: left center;
  line-height: 3em; 
}

	
	
}
