@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {
	height: 100%;
	scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
	margin: 0px;
	padding: 0px;
	color: #403000;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;

}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #403000;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #d58008;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 1% !important;
	padding-right: 1% !important;
}

.fixedbutton {
    position: fixed;
    bottom: 350px;
    right: 0; 
	color: #fff;
	padding: 0 !important;
	display: block;
	z-index: 100;
}

.fixedbutton2 {
    position: fixed;
    bottom: 225px;
    right: 0; 
	color: #fff;
	padding: 0 !important;
	display: block;
	z-index: 1000;
}

.fixedbutton a:hover img,.fixedbutton2 a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}


/*世界文化遺産登録
---------------------------------------------------------------------------*/

.heri_banar{
	border-bottom: none !important;
}

.heri_banar a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}

.heri_banar a img{
	width: 100%; 
	margin-bottom: 25px;
}


.heritage_bg{
	background-image: url("../images/heritage_bg.jpg") !important;
	background-size: cover!important;
	background-position: center center !important;
}

.heritage{
	margin-top: 0px;
}

.heritage img{
	margin: 0 auto 30px auto;
	display: block;
	text-align: center;
	width: 100%;
}

.heritage_detail{
  text-decoration: underline solid #555555;
  text-underline-offset: 1.25em;
	line-height: 330% !important;
	font-size: 23px;
}

/*巡礼地検索
---------------------------------------------------------------------------*/
.junreis{
	margin-bottom: 25px; 
	background: #fff; 
	padding: 10px; 
	font-size: 88%; 
	line-height: 145%; 
	text-align: center;
}

.junreis span{
	color: #d58008; 
	font-weight: 600;
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;
	background: #D9B495;
	position: relative;
}
/*トップページのヘッダーと、スライドショーブロック共通設定。他の端末サイズでの再設定が複数あるので変更する際は注意。*/
#top header, #mainimg {
	height: 700px;	/*スライドショー表示領域の高さの設定。*/
}
/*ロゴ画像（※トップページ以外）*/
header #logo {
	width: 200px;
	padding-top: 15px;
}
/*トップページのロゴ画像*/
#top #logo img {
	position: fixed;	/*スクロールしても固定表示させる設定。*/
	left: 10%;	/*左から10%の場所に配置。*/
	top: 50px;	/*上から50pxの場所に配置。*/
	z-index: 1;
	width: 250px;	/*画像の幅*/
}

.top_about a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;	/*文字を中央に*/
	background: #fff;	/*背景色*/
	border-bottom: 1px solid #403000;	/*下線の幅、線種、色*/
}
#menubar > ul {overflow: hidden;}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。今回は５個メニューがあるので100÷5=20*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	height: 63px;	/*メニューブロックの高さ*/
	padding-top: 12px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #9F876C;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;padding: 0;height: auto;
	width: 400px;	/*ブロックの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	background: #D9B495;	/*背景色*/
	padding: 10px;			/*ブロック内の余白*/
	font-size: 13px;		/*文字サイズ*/
	text-align: left;		/*文字を左よせ*/
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事。0.2は20%透明度。*/
}
#menubar ul.ddmenu::before {
	content: "▲";
	font-size: 15px;
	color: #D9B495;
	position: absolute;
	top: -18px;
	left: 27%;
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	width: 50%;		/*幅。２列なので50%。*/
	float: left;	/*左に回り込み*/
}
#menubar ul.ddmenu li a {
	transition: 0s;background: none;height: auto;width: 100%;
	color: #403000;	/*文字色*/
	opacity: 0.7;	/*透明度70%*/
	padding: 0px 5px;	/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;	/*100%表示にする*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed-menu #contents {
	margin-top: 75px;
}
/*※以下の２ブロックのスタイルの中身は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed #contents {
	margin-top: 75px;
}

/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	position: relative;z-index: 1;
	overflow: hidden;
	background: #fff;	/*背景色*/
	padding: 40px 0px;	/*上下、左右へのブロック内の余白*/
	min-height: 58%;
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 40px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;
	line-height: 125%;
	font-size: 40px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	color: #d58008;		/*文字色*/
}
/*h2タグにclass="type1"を指定した場合*/
#contents h2.type1 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_company.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #fff;	/*文字色*/
}
/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	color: #9F876C;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 1px solid #E2DBD3;
}

/*h3タグ*/
.h3_new {
	clear: both;
	margin-bottom: 0px;
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 0px solid #E2DBD3 !important;
	color: #403000;
	line-height: 100% !important;
	display: inline-block;
	padding: 15px;
	margin-left: 0px !important;
	padding-left: 5px !important;
}



/*h3タグの１文字目*/
#contents h3::first-letter {
	border-left: 3px solid #d58008;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
	line-height: 100%;
}
/*段落タグ*/
#contents p {
	padding: 0 20px 20px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
/*section同士の余白*/
#contents section + section {
	margin-top: 40px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック*/
.main {
	float: left;	/*左に回り込み*/
	width: 75%;		/*メインコンテンツの幅*/
}

/*東北お遍路プロジェクトについてindex
---------------------------------------------------------------------------*/
.topics_top{
	width: 100%;
	clear: both;
	margin: 0;
}


.act_navi2{
	width: 100%;
	overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin-top: 5%;
}
.act_navi2 a{
width: 48%;
	padding: 1%;
	text-decoration: none !important;
}

.act_navi2 a div{
	text-decoration: none;
	display: block !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	padding: 2% !important;
	border: 1px solid #E2DBD3;
	background: -webkit-linear-gradient(180deg, rgb(240,237,234), rgb(255, 255, 255));
	background: linear-gradient(90deg, rgb(240,237,234), rgb(255, 255, 255));
}

.act_navi2 a:hover{
	text-decoration: underline !important;
}

.act_navi2 a:hover div img{
	opacity: 0.5;
	transition:0.5s;
}

.act_navi2 a div img{
	width: 25%;
	border: 0px solid #ddd;
	padding: 1%;
	float: left;
	margin-right: 4%;
}

.act_navi2 a div p{
	font-size: 140%;
	font-weight: 600;
	line-height: 125% !important;
	margin: 0.5% 0 2% 0 !important;
	padding: 1% 0 0 8%  !important;
	background-image: url("../images/arrow_or.png");
	background-position: right 2% center;
	background-repeat: no-repeat;
}
.act_navi2 a div span{
	font-size: 100%;
	line-height: 145%;
}

/*アンケート調査フォーム
---------------------------------------------------------------------------*/
.survey{	
}

.survey_tit{	
	font-size: 180% !important; 
	font-weight: 400 !important; 
	text-align: center !important; 
	border-left: 0px;
	line-height: 145%;
	margin-bottom: 35px;
}

.survey div{
	width: 97%;
	/*border: 1px solid #ccc;*/
	text-align: center;
	/*background-color: #eee;*/
	padding: 0px;
	margin: 0 auto 25px auto;
}

.survey div p{	
	font-size: 125%;
	font-weight: 400;
	margin: 35px auto 5px auto !important;
	padding: 0 !important;
	background-color: rgba(88,61,25,0.84);
	color: #fff;
	border-radius: 4px;
}

.kyocyo{	
	background-color: #ccc !important;
}

.survey div span{	
	font-size: 100%;
	display: block;
	clear: both;
	margin: 15px 0 45px 0 !important;
	padding: 0 !important;
}

.survey div img{
	background-color: #fff;
	padding: 25px;
	max-width: 100%;
	width: 260px;
	margin: 0 auto 35px auto!important;
}

.survey_access_tit{
	text-align: center;
	border: 0px solid #888;
	border-radius: 4px;
	font-size: 125%;
	margin-bottom: 25px;
	background-color: rgba(88,61,25,0.30);
}

.survey_access{
	text-align: center;
}

.survey_access_list{
  display: flex;
  justify-content: center;
}

.survey_access_list li{
	display: inline-block;
	margin-right: 15px;
}

.survey_access_list li span{
	background-color: rgba(88,61,25,0.84);
	color: #fff;
	border-radius: 3px;
	font-size: 88% !important;
	padding: 2px 5px !important;
	margin-right: 8px;
	width: 70px;
	line-height: 165%;
	text-align: center;
	display: inline-block;
}


/*支援する
---------------------------------------------------------------------------*/
.sien{
	display: table;
	border-collapse: collapse;
	width: 100%;
	margin-top: 4%;
	margin-bottom: 8%;
	text-align: center;
}

.sien_row{
	display: table-row;
}

.bold{
	font-weight: 600;
}

.sien .sien_row:nth-child(even) {
background: #eee;
}

.sien_cell_01{
	display: table-cell;
	width: 40%;
	border:1px solid #ddd;
	padding: 0.5% 1%;
}

.sien_cell_02{
	display: table-cell;
	width: 30%;
	border:1px solid #ddd;
	padding: 0.5% 1%;
}


.sien_cell_03{
	display: table-cell;
	width: 30%;
	padding: 0.5% 1%;
	border:1px solid #ddd;
}

.koza{
	background-color: #D9B495;
	overflow: hidden;
	padding: 1%;margin-bottom: 5%;
	clear: both;
	margin-top: 5% !important;
}

.koza img{
	width: 25%;
	float: left;
	margin-right: 25px;
}

.koza a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}

.koza h4{
	font-weight: 600;
	font-size: 125%;
	padding: 0.5% 2%;
	margin-bottom: 5px;
}

.koza div{
	background-color: #fff;
	padding: 2%;
	overflow: hidden;
}

.koza div div{
	border-top: 1px solid #D9B495;
	border-bottom: 1px solid #D9B495;
	padding: 1% 1%;
	margin: 2% -10px 2% -10px !important;
	background-color: #fff;
}

.sien_img_02{
	float: right;
	width: 18%;
	margin-bottom: 2%;
	margin-left: 3.5%;
}

.sien_img_03{
	float: left;
	width: 18%;
	margin-bottom: 2%;
	margin-right: 3.5%;
}

/*沿革
---------------------------------------------------------------------------*/
.enkaku{
	display: table;
	border-collapse: collapse;
	width: 100%;
	margin-top: 4%;
	margin-bottom: 5%;
}

.enkaku_row{
	display: table-row;
}

.enkaku .enkaku_row:nth-child(even) {
background: #F0EDEA;
}

.enkaku_cell_01{
	display: table-cell;
	width: 14%;
	border:1px solid #E2DBD3;
	padding: 0.5% 1%;
}

.enkaku_cell_02{
	display: table-cell;
	width: 8%;
	border:1px solid #E2DBD3;
	padding: 0.5% 1%;
}


.enkaku_cell_03{
	display: table-cell;
	width: 78%;
	border:1px solid #ddd;
	padding: 0.5% 1%;
}

/*目的・参加する
---------------------------------------------------------------------------*/
.mokuteki_01{
	width: 100%;
	margin-bottom: 35px !important;
	clear: both;
	overflow: hidden;
}

.mokuteki_01 img{
	width: 18%;
	float: left;
	margin: 0 2% 2% 0;
	border: 1px solid #E2DBD3;
	padding: 0.5%;
	background-color: #fff;
}

.mokuteki_01 h5{
	font-size: 116%;
	font-weight: 600;
	background-color: #E2DBD3;
	padding: 1% 2%;
	margin-bottom: 2%;
	margin-left: 2%
}

.mokuteki_01 p{
	padding-bottom: 0 !important;
	margin:0 0 20px 0 !important;
}

.mokuteki_01 span{
	display: inline-block;
	background-image: url("../images/arrow_or.png");
	background-repeat: no-repeat;
	background-position: right center;
	padding:0 28px 0 0 !important;
	line-height: 145%;
	margin: 0 28px 0 0!important;
	float: right;
}


/*ポップアップここから*/
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn {
	display: inline-block;
	background-image: url("../images/arrow_or.png");
	background-repeat: no-repeat;
	background-position: right center;
	padding:0 28px 0 0 !important;
	line-height: 145%;
	margin: 0 28px 0 0!important;
	float: right;
	text-decoration: underline !important;
}
.open_btn:hover{
	color: #d58008;
	text-decoration: none !important;
	 cursor : pointer;
}
/*ポップアップココまで*/

/*ごあいさつ
---------------------------------------------------------------------------*/
.aisatu{
	padding-top: 2% !important;
}
.aisatu h4{
	font-size: 125%; 
	font-weight: 600; 
	padding-left: 0%; 
	padding-bottom: 1%;
	line-height: 125%;
	margin:0% 0 1.4% 0;
}

.aisatu div{
	float: right;
	width: 27%;
	padding: 0.5%;
	margin: 0 0 4% 4%;
	text-align: center;
	border: 1px solid #ddd;
}

.aisatu div img{
	width: 100%;
	
}

.aisatu div p{
	font-size: 145%;
	font-weight: 400;
	margin-top: 4%;
	line-height: 125%;
}

.aisatu div span{
	font-size: 50%;
	font-weight: 400;
	display: block;
	clear: both;
	margin: 0;
	padding: 0;
}

.aisatu_txt{
	margin: 0 !important;
	padding: 0 !important;
}

.aisatu_txt span{
	font-size: 165%;
}

.aisatu_txt2{
	font-size: 80%;
	margin: 2.8% 0 0 0 !important;
	padding: 0 !important;
}

.aisatu_txt2 span{
	font-size: 200%;
	margin-left: 1%;
}

/*写真コンテスト
---------------------------------------------------------------------------*/	
.photo_sinsa{
		width: 100%;
	text-align: center;
}
	
.photo_sinsa img{
		width: 80%;
	clear: both;
	margin: 0 auto;
}
	
.photo_sinsa h4{
		font-size: 135%;
	font-weight: 600;
	text-align: center !important;
	margin-top: 1%;
}
	
.photo_sinsa span{
		font-size: 65%;
	font-weight: 400;
	display: block;
	margin: 0 0 4% 0 !important;
	padding: 0 !important;
}
/*俳句コンテスト
---------------------------------------------------------------------------*/

.act_head2{
	width: 100%;
	padding: 2% 1% 7% 1%;
	overflow: hidden;
	line-height: 200%;
}

.act_head2 span{
	font-size: 135%;
	font-weight: 600;
	line-height: 135%;
}

.act_head2 p{
	margin: 1% 0 0 0 !important;
	margin: 1% 0 0 0 !important;
	padding: 0 2% 0 0 !important;
}

.act_head2 img{
	width: 14%;
	float: left;
	margin-top: 2%;
	margin-right: 2%;
}

/*イベント
---------------------------------------------------------------------------*/

.act_head3{
	width: 100%;
	padding: 2% 1% 7% 1%;
	overflow: hidden;
	line-height: 200%;
}

.act_head3 span{
	font-size: 135%;
	font-weight: 600;
	line-height: 135%;
}

.act_head3 p{
	margin: 1% 0 0 0 !important;
	margin: 1% 0 0 0 !important;
	padding: 0 2% 0 0 !important;
}

.act_head3 img{
	width: 20%;
	float: left;
	margin-top: 0.2%;
	margin-right: 2%;
}

.syuppan_img{
	width: 14%;
	float: left;
	margin-top: 0%;
	margin-right: 2%;
}

.haiku_sinsa{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	margin-bottom: 0%;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.haiku_sinsa2{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
justify-content: center;
	margin-bottom: 0%;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.haiku_sinsa div,.haiku_sinsa2 div{
	width: 30%;
	overflow: hidden;
	margin-bottom: 5%;
	padding: 0 0.5% 0 0.5%;
	text-align: center;
}

.haiku_sinsa div img,.haiku_sinsa2 div img{
	width: 80%;
	float: 0 auto !important;
}

.haiku_sinsa div h4,.haiku_sinsa2 div h4{
	text-align: center;
	margin-top: 5.5%;
	font-size: 128%;
	font-weight: 600;
	line-height: 110%;
}

.haiku_sinsa div h4 span,.haiku_sinsa2 div h4 span{
	font-size: 65%;
	font-weight: 400;
	margin-left: 2%;
	display: block;
	clear: both;
	margin: 0 !important;
	padding: 0 !important;
}

/*標柱設置
---------------------------------------------------------------------------*/
.hyoucyu{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
 -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
	margin-bottom: 5%;
}

.hyoucyu div{
	width: 47%;
	border: 1px solid #E2DBD3; 
	overflow: hidden;
	margin-bottom: 5%;
	padding: 0.5%;
}

.hyoucyu div img{
	width: 100%;
	background-color: #fff;
}

.hyoucyu div a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}

.hyoucyu div h4{
	font-size: 125%;
	font-weight: 600;
	clear: both;
	padding: 2.7% 2% 2% 2%;
	margin: 0 !important;
	width: 100%;
}

.hyoucyu div h4 span{
	font-size: 65%;
	font-weight: 400;
	margin-left: 1%;
}

.hyoucyu div p{
	
	font-size: 88%;
	line-height: 200%;
	margin: 0 !important;
	padding: 2% !important;
}

.hyoucyu div p span{
	display: block;
	clear: both;
	padding: 7% 2%!important;
	margin: 0% -2% 4% -2%!important;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.hyoucyu div p span span{
	background-color: #E2DBD3;
	display: inline-block;
	line-height: 100% !important;
	margin: 0 8px 0 0 !important;
	padding: 4px 5px !important;
	border: none;
}

.border2{
	display: block;
	clear: both;
	padding: 2% 0% 0 0%!important;
	margin: -2% -4% 0 -4%!important;
	border-top: 1px solid #ddd;
	border-bottom: 0px solid #ddd !important;
}

/*標柱を立ててみませんか*/
.hyoucyuaccess{
	background-color: #EAD6C6;
	padding: 20px !important;
}

.hyoucyu_hiduke{
	text-align: right !important;
	display: block;
}

.hyoucyuaccess h4{
	font-size: 125%;
	font-weight: 600;
	border-left: none !important;
	margin: 0 0 10px 0 !important;
	padding: 0 !important;
}

.hyoucyuaccess p{
	border-left: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.hyoucyuaccess ol{
	border-left: none !important;
	margin: 15px 0 0 0 !important;
	list-style-position: inside;
	background-color: #fff;
	padding: 10px;
}

.hyoucyuaccess li{
	margin: 0 !important;
	padding: 0 !important;
}

.hyocyu_new_body{
	display: block;
	overflow: hidden;
	clear: both;
	padding-bottom: 0;
}

.hyocyu_new_body p{
	padding-bottom: 0 !important;
}

.hyocyu_new_body h4{
	border-bottom: 0px solid #E0C59C;
	margin: 25px 0 10px 0;
	font-weight: 600 !important;
	font-size: 120%;
	color: #403000;
}

.hyocyu_new_body h4:before {
	content:"■";
	color: #d58008;
	margin-right: 10px;
}

.hyocyu_new_body ul{
	margin-bottom: 35px;
	list-style-type: disc;
	list-style-position: outside;
	display: inline-block;
	width: calc(83% - 50px);
}

.hyocyu_new_body ul li{
	padding-left: 7px !important;
	margin-left: 25px !important;
}

.hyocyu_new_body .hyocyu_new_img{
	width: 17%;
	float: left;
	text-align: center;
	background-color: #fff;
	margin-right: 20px;
	margin-bottom: 35px;
}

.hyocyu_new_body .hyocyu_new_img a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}

.hyocyu_hosoku{
	clear: both;
	margin: 0 !important;
	padding: 0 !important;
}

.hyocyu_manu{
	display: flex;
	justify-content: flex-end;
  align-items: center;
}

a div.hyocyu_manu p{
	text-decoration: none !important;
	line-height: 145% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.link_hyocyu{
	text-decoration: none !important;
}

a:hover .hyocyu_manu{
	opacity: 0.5;
	transition: 0.5s;
}

.hyocyu_manu{
	background-color: rgba(64,48,0,0.8);
	color: #fff;
	margin-bottom: 35px;
	padding: 25px 35px 25px 0px !important;
	background-image: url("../images/arrow_wh.png");
	background-repeat: no-repeat;
	background-position: right 15px center;
	text-align: right;
	background-size: 8px auto;
	line-height: 125%;
	margin: 35px 0;
	font-weight: 600;
	text-decoration: none!important;
}

.hyocyu_manu p{
	font-size: 88%;
	text-decoration: none !important;
}

.hyocyu_manu p span{
	font-size: 200%;
	margin: 0 5px;
}


.hyocyu_new_body .hyocyu_new_img img{
	width:70%;
	margin: 0 auto !important;
	display: block;
}

.hyocyu_new_body .hyocyu_new_img span{
	width: 100%;
	display: block;
	clear: both;
	font-size: 70% !important;
	line-height: 145%;
	text-align: center;
	padding: 20px 0px;
	background-color: rgba(102,51,0,0.7);
	color: #fff;
	border-radius: 4px;
}

.hyocyu_index{
	color: #fff;
	font-weight: 600;
	width: 100%;
	float: right;
	margin-bottom: 35px;
}

.hyocyu_index a{
	color: #fff !important;
	text-decoration: none !important;
	display: block;
	clear: both;
}

.hyocyu_index a:hover div{
	opacity: 0.5;
	transition: 0.5s;
}



.manu_icon_01 img,.manu_icon_02 img,.manu_icon_03 img{
	width: 35px;
	height: auto;
	margin: 0 10px 0 0  !important;
	padding: 0 !important;
}


.hyocyu_index{
	display: flex;
  justify-content: space-between;
	width: 100%;
}

.hyocyu_index .manu_l{
	width: 33%;
	background-color: #B69667;
	display: flex;
  align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.hyocyu_index .manu_r_t{
	width: 33%;
	background-color: #888;
	display: flex;
	justify-content: center;
  align-items: center;
	border-radius: 4px;
}

.hyocyu_index .manu_r_b{
		width: 33%;
	background-color: #85B200;
	display: flex;
	justify-content: center;
  align-items: center;
	border-radius: 4px;
}

.hyocyu_index .manu_l div,.hyocyu_index .manu_r_t div,.hyocyu_index .manu_r_b div{
	padding: 15px 0 !important;
}

.hyocyu_index .manu_l div p,.hyocyu_index .manu_r_t div p,.hyocyu_index .manu_r_b div p{
	margin: 0 !important;
	padding: 0 15px 0 0 !important;
	line-height: 100% !important;
	background-image: url("../images/arrow_bottom.png");
	background-repeat: no-repeat;
	background-position: right center;
}

.manu_body2{
	padding-bottom: 55px;
}

.manu_body2 ol{
	margin: 0 0 0 20px !important;
	padding: 0 0 0 10px !important;
	list-style-position: outside;
}





.akari{/*デザイン趣意書*/
	background-color: #EAD6C6;
	padding: 2.5%;
	margin-bottom: 88px !important;
	clear: both;
	float: none;
	margin-top: 25px !important;
	overflow: hidden;
}

.akari img{/*デザイン趣意書*/
	width: 6.2% !important;
	float: left !important;
	margin-right: 25px;
	margin-left: 22px;
}

.akari p{/*デザイン趣意書*/
	font-size: 145%;
	font-weight: 600;
	margin-bottom: 10px !important;
	margin-left: 0;
	padding-left: 0;
	padding-bottom: 0 !important;
	display: inline-block;
}

.akari p span{/*デザイン趣意書*/
	font-size: 65%;
}

.akari ul{/*デザイン趣意書*/
	margin: 0px 20px 20px 35px !important;
	padding: 0px;
	display: inline-block;
	float: left;
	width: 83%;
}

.akari ul li{/*デザイン趣意書*/
	list-style: disc !important;
	list-style-position: outside;
	
}

.akari a{/*デザイン趣意書*/
	display: block;
	float: right;
	
}

/*出版物（トピック欄）
---------------------------------------------------------------------------*/

.topibox2 a:hover img,.topibox a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}


.gb_box{
		width: 40% !important;
	float: left !important;
	border: 1px solid #E2DBD3;
	overflow: hidden;
	padding: 0% !important;
}



.gb_box img{
	border: none !important;
}

.gd_img{
	width: 62% !important;
	margin: 20px auto !important;
	text-align: center !important;
	clear: both !important;
	display: block !important;
}

.gb_box ul{
	clear: both;
	margin: 20px auto 10px auto;
	width: 88%;
	overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}

.gb_box li{
	list-style: none;
	width: calc(100% / 4);
	margin-right: 20px;
}

.gb_box li:last-child {
	margin-right: 0px;
}

.gb_box li p{
	background-color: #735848;
	color: #fff;
	font-size: 65%;
	text-align: center;
	line-height: 100% !important;
	padding: 5px!important;
	margin: 0 !important;
} 

.gb_box li span{
	font-size: 67%;
	line-height: 145%;
	text-align: center;
	display: block;
	text-align: center;
	margin: 11px auto 10px auto;
	letter-spacing: -1px;
} 

.gd_hosoku{
	text-align: center;
	font-size: 62%;
	margin: 0px auto 10px auto !important;
	padding: 0 !important;
}

.topibox2{
		width: 100%;
	margin-bottom: 55px !important;
	overflow: hidden;
	clear: both;
	display: block;
}
	


.topibox2_right{
		width: 55%;
	float: right;
}

.topibox2_right h4{
		color: #d58008;
	font-size: 188%;
	font-weight: 400;
	margin-bottom: 25px;
}

.topibox2_right h4 span{
		font-size: 50%;
	color: #9F876C;
	font-weight: 400;
	display: block;
	clear: both;
}
	
	
.topibox2_right ul{
		clear: both;
	display: block;
	margin-bottom: 25px;
}
	
.topibox2_right li{
		list-style: none;
	clear: both;
	display: block;
	margin-bottom: 10px;
}
	
.topibox2_right li span{
	background-color: #403000;
	color: #fff;
	font-size: 80%;
	padding: 2px 5px;
	width: 88px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;

}
	
.topibox2_right p{
	margin: 0 !important;
	padding: 0 !important;
}	


/*フォーラム
---------------------------------------------------------------------------*/
.for_sp{
	display: block;
	padding-top: 20px;
}

.forum_img{
	width: 18% !important;
	float: left;
	margin-right: 3.5%;
}

	
.topibox{
		width: 100%;
	margin-bottom: 55px !important;
	overflow: hidden;
	clear: both;
	display: block;
}
	
.topibox img{
		width: 40%;
	float: left;
	border: 1px solid #E2DBD3;
}

.topibox div{
		width: 55%;
	float: right;
}

.topibox h4{
		color: #d58008;
	font-size: 188%;
	font-weight: 400;
	margin-bottom: 25px;
}

.topibox h4 span{
		font-size: 50%;
	color: #9F876C;
	font-weight: 400;
	display: block;
	clear: both;
}
	
	
.topibox ul{
		clear: both;
	display: block;
	margin-bottom: 25px;
}
	
.topibox li{
		list-style: none;
	clear: both;
	display: block;
	margin-bottom: 10px;
}
	
.topibox li span{
	background-color: #403000;
	color: #fff;
	font-size: 80%;
	padding: 2px 5px;
	width: 88px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}
	
.topibox p{
	margin: 0 !important;
	padding: 0 !important;
}	

/*活動を知る
---------------------------------------------------------------------------*/

.act_head{
	width: 100%;
	padding: 2% 1% 7% 1%;
	overflow: hidden;
	line-height: 200%;
}

.act_head span{
	font-size: 135%;
	font-weight: 600;
	margin-top: 4%;
	line-height: 135%;
}

.act_head p{
	margin: 2.8% 0 0 0 !important;
	padding: 0 2% 0 0 !important;
}

.act_head img{
	width: 14%;
	float: left;
}

.act_head a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}

.hyocyu_img{
	width: 11.5% !important;	
	margin-right: 20px;
}

.sousei{
	width: 100%;
	padding-bottom: 7% !important;
	overflow: hidden;
}

.main_mem{
	margin: 0 1% 1% 1% !important;
	padding: 0 !important;
	line-height: 200%;
}


.sousei div{
	width: 48%;
	float: left;
	padding: 2% 0% 2% 0 !important;
	margin-left: 0 !important;
}


.sousei div:nth-child(odd){
	padding: 2% 4% 2% 0 !important;
}

.sousei div img{
	border: 1px solid #ddd;
	float: left;
	width: 25%;
	padding: 1%;
	background-color: #fff;
	margin: 0 2% 2% 0 !important;
}

.sousei div h4{
	font-size: 125%;
	font-weight: 600;
	background-color: #E2DBD3;
	padding: 2% 2%  1% 2%!important;
	line-height: 125%;
	margin-bottom: 2%;
}

.sousei div h4 span{
	font-weight: 400;
	font-size: 70%;
	display: block;
	margin: 0 !important;
	padding: 0 !important;
}


.sousei div p{
	font-size: 88%;
	padding: 1% 0!important;
	line-height: 200%;
	margin: 0 2% 0 0!important;
}

.sousei div p span{
	font-size: 110%;
	display: inline-block;

}

/*求人一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	padding: 40px;		/*ボックス内の余白*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 28px;	/*文字サイズ*/
	color: #d58008;		/*文字色*/
}
.list h4 a {
	color: #d58008;	/*リンクテキストの文字色*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px 0px 10px !important;	/*上、左右、下への余白*/
}

/*アイコン（正社員、アルバイト、パート、未経験可、など）
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	display: inline-block;
	margin: 2px;
	font-size: 12px;	/*文字サイズ*/
	padding: 0 5px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
.icon a {text-decoration: none;}
/*アイコン色付き（正社員）*/
.icon.color1 {
	border: 1px solid #d58008;	/*枠線の幅、線種、色*/
	background: #f39209;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f39209, #d58008);	/*グラデーション*/
	color: #fff !important;	/*文字色*/
}
/*アイコン色付き（アルバイト）*/
.icon.color2 {
	border: 1px solid #161995;	/*枠線の幅、線種、色*/
	background: #2b2ebc;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#2b2ebc, #161995);	/*グラデーション*/
	color: #fff;	/*文字色*/
}

/*求人一覧ページの「詳細を見る・応募する」ボタン
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	background: #d58008;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f39209, #d58008);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #d58008;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #d58008;		/*文字色*/
}

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*ボックス全体を囲むulタグへの設定*/
.list2 {
	padding-bottom: 50px;
	overflow: hidden;
}
/*各ボックスの設定*/
.list2 li {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;	/*行間*/
	position: relative;
}
.list2 a {
	display: block;text-decoration: none;
	height: 80px;	/*ボックスの高さ*/
	overflow: hidden;	/*ボックスから飛び出た場合、非表示にする設定*/
	background: #D9B495;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#D9B495, #D58008);/*背景グラデーション*/
	border-radius: 10px;	/*角丸のサイズ*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.2は20%色がついた状態の事。*/
	padding: 15px;	/*ボックス内の余白*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
.list2 a:hover {
	background: #E2DBD3;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#E2DBD3, #F3E7DC);/*背景グラデーション*/
	color: #d58008;	/*文字色*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	height: 100%;			/*高さ*/
	background: none;	/*背景色*/
	float: right;		/*右に回り込み*/
	border-radius: 3px;	/*角丸のサイズ*/
}
/*件数のテキスト。※list2内でspanタグで囲った場合。*/
.list2 span {
	font-size: 28px;	/*文字サイズ*/
	position: absolute;
	bottom: 15px;	/*下から15pxの場所に配置*/
	right: 110px;	/*右から110pxの場所に配置*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*サブコンテンツの幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 0 !important;
	font-size: 16px !important;	/*文字サイズ*/
	padding: 10px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*メニューの線の幅、線種、色*/
	color: #403000 !important;
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
	margin: 0 !important;
	padding: 10px !important;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #E2DBD3;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #E2DBD3;	/*下の線の線種、幅、色*/
	border-left: solid 1px #E2DBD3;		/*左の線の線種、幅、色*/
	border-right: solid 1px #E2DBD3;	/*右の線の線種、幅、色*/
}
/*マウスオン時の背景色*/
.sub ul.submenu li a:hover {
	background: #F0EDEA;	/*背景色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
.sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #E2DBD3;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(64,48,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
	border-top: none;
}
/*box1内のサブメニュー*/
.sub ul.submenu {
	margin-bottom: 0;
}

/*subコンテンツ内のlist-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.sub .list-sub {
	position: relative;overflow: hidden;
	border-left: 1px solid #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: 1px solid #dcdcdc;	/*右の線の線種、幅、色*/
	border-bottom: 1px solid #dcdcdc;	/*下の線の線種、幅、色*/
	line-height: 1.5;	/*行間を少し狭くする。基本となる値は一番上のbodyにあります。*/
	font-size: 12px;	/*文字サイズ*/
}
.sub .list-sub a {
	display: block;text-decoration: none;overflow: hidden;
	padding: 5px;	/*ボックス内の余白*/
}
/*マウスオン時のボックス*/
.sub .list-sub a:hover {
	background: #f4f4f4;	/*背景色*/
}
/*h4タグ*/
.sub .list-sub a h4 {
	font-weight: bold;	/*太字にする設定*/
	font-size: 16px;	/*文字サイズ*/
}
/*段落(p)タグ*/
.sub .list-sub p {
	padding: 0 !important;
}
/*画像*/
.sub .list-sub figure {
	width: 30%;		/*画像の幅*/
	float: left;	/*左に回り込み*/
	margin-right: 5px;	/*画像右側に空ける余白*/
}

.list-sub.sns_box{
	padding: 5px;
}

.list-sub.sns_box p{
	clear: both;
	padding: 10px;
}

.list-sub.sns_box div{
	display: flex;
	 justify-content: space-around;
	width: 100%;
	clear: both;
	padding: 10px 0 !important;
}

.list-sub.sns_box div a{
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	width: 30%;
}

.list-sub.sns_box div a img{
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.list-sub.sns_box div a:hover img{
	opacity: 0.5;
	transition: 0.5s;
}





/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 12px;	/*文字サイズ*/
	text-align: center;
	display: block;
	width: 80px;		/*幅*/
	line-height: 30px;	/*高さ*/
	position: absolute;
	right: 40px;	/*右から40pxの場所に配置*/
	top: 0px;		/*上から0pxの場所に配置*/
}
/*subコンテンツ内で使う場合の追加（変更）設定*/
.sub .option1,.sub .option2,.sub .option3,.sub .new {
	font-size: 10px;	/*文字サイズ*/
	line-height: 16px;	/*行間*/
	right: 0px;		/*右から0pxの場所に配置*/
	transform: rotate(45deg) translate(22px,-10px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
}
/*option1*/
.option1 {
	color: #FFF;			/*文字色*/
	background: #f83d72;	/*背景色*/
}
/*option2*/
.option2 {
	color: #000;			/*文字色*/
	background: #ffd200;	/*背景色*/
}
/*option3*/
.option3 {
	color: #FFF;			/*文字色*/
	background: #999;	/*背景色*/
}
/*new*/
.new {
	color: #FFF;			/*文字色*/
	background: #F00;	/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 12px;		/*文字サイズ*/
	background: #D9B495;	/*背景色*/
	color: #403000;	/*文字色*/
	text-align: center;
}
footer a {color: #403000;}
footer a:hover {color: #403000;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/footer_logo.png) no-repeat 98% center/18%;
}
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
#footermenu a:hover {
	opacity: 1;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	line-height: 1.7;
	padding-bottom: 2%;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 14px;	/*文字サイズ*/
	margin-bottom: 3.5%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	color: #fff !important;
	background: #403000;	/*背景色*/
	overflow: hidden;
	padding: 10px;
}


#copyright p{
	font-size: 95%;
	line-height: 165%;
	color: rgba(255,255,255,0.65);
	float: right;
	display: block;
}

#copyright p span{
	background-color:rgba(255,255,255,0.55);
	color: #403000;
	margin-right: 10px;
	padding: 2px 7px;
	border-radius: 0px;
	font-size: 90% !important;
	line-height: 100%;
	font-weight: 600;
} 

#copyright p a{
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}

#copyright p a:after {
	content:" \025b6";
	font-size: 10% !important;
}

#copyright p a:hover{
	color: rgba(255,255,255,0.7);
	text-decoration: underline;
}

#copyright small{
	font-size: 80%;
	color: rgba(255,255,255,0.45);
	display: block;
	float: left;
}

#copyright .sm_only{
		display: none;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	background: #eee;	/*背景色*/
	padding: 20px;		/*ブロック内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}

/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*ta1テーブル*/
.ta1 {
	width: 100%;
	margin: 0 0 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*labelタグを２列表示にする（CMS用）*/
.ta1.cms td label {
	display: block;
	float: left;
	width: 50%;
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #d58008;	/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	background: url(../images/faq_q.png) no-repeat left center;	/*背景アイコン*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
}
/*回答*/
.faq dd {
	background: url(../images/faq_a.png) no-repeat left top;	/*背景アイコン*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

/*ページの上部へボタン「↑」設定
---------------------------------------------------------------------------*/
@keyframes scroll {0% {opacity: 0;}100% {opacity: 1;}}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 34px;		/*幅*/
	line-height: 80px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 0%;		/*右から3%の場所に配置*/
	background: #403000;	/*背景色（古いブラウザ用）*/
	background: rgba(64,48,0,0.5);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border-left: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-top: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-bottom: 1px solid #fff;	/*枠線の幅、線種、色*/
	
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #D9B495;	/*背景色*/
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #d58008 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important; display: block; clear: both; padding-top: 2.2%;}

.l {text-align: left !important;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
.photo {padding: 10px;background: #fff;border: 5px solid #fff;box-shadow: 2px 4px 5px rgba(0,0,0,0.2);}
.big1 {font-size: 22px;}
.sub .big1 {font-size: 12px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.date {text-align: right;color: #999;font-size: 11px;}



/*------------------------------------------------------------------------------------------------------------------------------------------------------
※ここから数ブロック（420px以下環境まで）は、スライドショー表示領域の高さとロゴサイズの再設定です。
面倒ですができるだけ綺麗に表示できるよう細かく設定して下さい。
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*画面幅1500px以上の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1500px){

	#top header, #mainimg {height: 900px;}

}

/*画面幅2000px以上の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:2000px){

	#top header, #mainimg {height: 1200px;}

}

/*画面幅1200px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){

	#top header, #mainimg {height: 600px;}

}

/*画面幅1000px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

	#top header, #mainimg {height: 470px;}
	#top #logo img {left: 1%;top: 20px;width: 200px;}

}

/*画面幅px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

	#top header, #mainimg {height: 380px;}
	
	
.heritage_detail{
    text-decoration: none !important;
	line-height: 310% !important;
	font-size: 16px !important;
	margin-right: 0px !important;
	margin-left: 0px !important;
	padding-left: 5px !important;
	padding-right: 5px !important;
}
	

}

/*画面幅620px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:620px){

	#top header, #mainimg {height: 300px;}
	#top #logo img {left: 1%;top: 10px;width: 120px;}

}

/*画面幅500px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:500px){

	#top header, #mainimg {height: 240px;}

}

/*画面幅420px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:420px){

	#top header, #mainimg {height: 190px;}
	#top #logo img {left: 1%;top: 10px;width: 90px;}

}



/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list2 li {
	width: 49%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
}

}



/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s ul li a {
	padding: 10px;		/*メニュー内の余白*/
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

	
.sh {display:block;}
.pc {display:none;}

	
	
/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*標柱設置しませんか
---------------------------------------------------------------------------*/
.hyocyu_new_body h4{
	clear: both;
}
	
.hyocyu_new_body.manu_body h4{
	clear: none !important;
}
	
.hyocyu_new_body.manu_body ul{
	clear: none !important;
	
}
	
.hyocyu_new_img{
	margin-bottom: 25px !important; 
}
	
.hyocyu_new_body table{
	color: #fff;
	font-weight: 600;
	width: calc(83% - 50px);
	float: right;
	margin-bottom: 35px;
}
	
.hyocyu_manu p span{
	font-size: 180%;
	clear: both;
	display: block;
	line-height: 145% !important;
}
	
.hyocyu_new_body ul li{
	padding-left: 7px !important;
	margin-left: 22px !important;
}
	
.hyocyu_index{
	display: flex;
  flex-direction: column;
	width: 100%;
}
	
.hyocyu_index a.manu_l,.hyocyu_index a.manu_r_b,.hyocyu_index a.manu_r_t{
	margin-bottom: 10px;
	width: 100% !important;
}
	
.hyocyu_index a div{
	width: calc(100% - 30px);
	padding: 0 15px;
}
	
/*.hyocyu_index .manu_l div p,.hyocyu_index .manu_r_t div p,.hyocyu_index .manu_r_b div p{
	margin: 0 !important;
	padding: 0 15px 0 0 !important;
	line-height: 100% !important;
	background-image: url("../images/arrow_bottom.png");
	background-repeat: no-repeat;
	background-position: right center;
}*/
	

/*フッダー　著作権とお問合せ
---------------------------------------------------------------------------*/
#copyright p{
	font-size: 95%;
	line-height: 165%;
	color: rgba(255,255,255,0.65);
	float: none;
	display: block;
	clear: both;
	text-align: center;
	letter-spacing: -1px;
}

#copyright small{
	font-size: 80%;
	color: rgba(255,255,255,0.45);
	display: block;
	float: none;
	clear: both;
	text-align: center;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
	
#copyright .sm_only{
		display: block;
}

	
/*スマホで非表示
---------------------------------------------------------------------------*/
.hidden_sm{
		display: none;
}

/*右下の支援と参加のボタン
---------------------------------------------------------------------------*/
.fixedbutton {
    position: fixed;
    bottom: 140px;
    left: 0 !important; 
	color: #fff;
	padding: 0 !important;
	display: block;
	z-index: 2000;
	width: 34px !important;
}

.fixedbutton2 {
    position: fixed;
    bottom: 20px;
    left: 0 !important; 
	color: #fff;
	padding: 0 !important;
	display: block;
	z-index: 2000;
	width: 34px;
}
	
/*アンケート調査フォーム
---------------------------------------------------------------------------*/

.survey_access_list{
  display: flex;
  flex-direction: column;
}
	
.survey_access_list li{
	border-bottom: 1px solid rgba(88,61,25,0.30);
	padding: 0 0 5px 0!important;
	margin: 0 0 10px 0 !important;
	width: 100%;
}
	

/*支援する
---------------------------------------------------------------------------*/
.sien_img_02{
	float: right;
	width: 28%;
	margin-bottom: 2%;
	margin-left: 3.5%;
}

.sien_img_03{
	float: left;
	width: 27%;
	margin-bottom: 2%;
	margin-right: 3.5%;
}

.koza{
	background-color: #D9B495;
	overflow: hidden;
	padding: 4%;
	margin-bottom: 5%;
	clear: both;
	margin-top: 5% !important;
}

.koza h4{
	font-weight: 600;
	font-size: 125%;
	padding: 0.5% 2%;
	margin-bottom: 5px;
	margin-top: 10px
}

.koza div img {
	margin-bottom: 25px;
}
	
.koza div{
	background-color: #fff;
	padding: 5%;
}

.koza div div{
	border-top: 1px solid #D9B495;
	border-bottom: 1px solid #D9B495;
	display: block;
	clear: both;
	padding: 7% 0%;
	margin: 25px 0px 25px 0px !important;
	background-color: #fff;
}


	
/*東北お遍路プロジェクトについてindex
---------------------------------------------------------------------------*/
	
.act_navi2 a{
	line-height: 100% !important;
	width: 100%;
	}
.act_navi2 a div{
		margin-bottom: 2% !important;
	}	

.act_navi2 a div p{
	font-size: 135%;
	font-weight: 600;
	line-height: 125% !important;
	margin: 0.5% 0 2% 0 !important;
	padding: 1% 0 0 8%  !important;
	background-image: url("../images/arrow_or.png");
	background-position: right 2% center;
	background-repeat: no-repeat;
}
.act_navi2 a div span{
	font-size: 100%;
	line-height: 125% !important;
	display: inline;
}
	
/*目的
---------------------------------------------------------------------------*/
.mokuteki_01{
	width: 100%;
	margin-bottom: 2.5%;
	clear: both;
	overflow: hidden;
}

.mokuteki_01 img{
	width: 25%;
	float: left;
	margin: 0 2% 2% 0;
	border: 1px solid #ddd;
	padding: 0.5%;
	background-color: #fff;
}

.mokuteki_01 h5{
	font-size: 104%;
	font-weight: 600;
	background-color: #ddd;
	padding: 2% 2%;
	margin-bottom: 2%;
	margin-left: 2%;
	line-height: 165%;
}
	
.mokuteki_01 span,.open_btn{
	background-image: url("../images/arrow_or_s.png");
	padding:0 18px 0 0 !important;
	clear: both;
	float: right;
	margin-bottom: 5px !important;
	margin-right: 10px !important;
}

	
/*ごあいさつ
---------------------------------------------------------------------------*/

.aisatu h4{
	font-size: 125%; 
	font-weight: 600; 
	padding-left: 0%; 
	padding-bottom: 2%;
	line-height: 125%;
	margin:2.5% 0 1.4% 0;
}

.aisatu div{
	float: right;
	width: 32%;
	padding: 0.5%;
	margin: 0 0 4% 4%;
	text-align: center;
	border: 1px solid #ddd;
}

.aisatu div img{
	width: 100%;
	
}

.aisatu div p{
	font-size: 110%;
	font-weight: 400;
	margin-top: 8%;
	line-height: 125% !important;
	padding-bottom: 2% !important;
	margin-bottom: 0 !important;
}

.aisatu div span{
	font-size: 55%;
	font-weight: 400;
	display: block;
	clear: both;
	margin: 0 0 8% 0;
	padding: 0;
	line-height: 125% !important;
}
	
.aisatu_txt2{
	text-align: right;
	padding-right: 2% !important;
	font-size: 77%;
}
	
.aisatu_txt2 span{
	margin-left: 2%;
}
	
	
/*フォーラム
---------------------------------------------------------------------------*/
.for_sp{
	display: block;
	padding-top: 0px;
}

.forum_img{
	width: 28% !important;
	float: left;
	margin-right: 4%;
}
	
.topibox img{
	width: 100%;
	float: none !important;
	margin: 0px auto 25px auto !important;
	clear: both !important;
	display: block !important;
}

.topibox div{
	width: 100%;
	float: none;
	clear: both;
	padding: 1%;
}

.topibox div h4{
	font-size: 145%;
}
	
/*出版物（ガイドブック）
---------------------------------------------------------------------------*/
.topibox2,.topibox{
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
	
.gb_box,.topibox img{
	width: 95% !important;
	float: none !important;
	margin: 0px auto 20px auto!important;
	clear: both !important;
	display: block !important;
}

.topibox2_right{
	width: 100%;
	float: none;
	clear: both;
	padding: 1%;
	margin-bottom: 55px;
}
	
.topibox div{
	margin-bottom: 55px;	
}
	
.topibox div h4{
	font-size: 200%;	
}
	
/*俳句コンテスト
---------------------------------------------------------------------------*/
	
.act_head2 span{
	margin-right: 2% !important;
	padding-right: 0% !important;
	display: block;
}

	
.act_head2 img{
	width: 22%;
	float: left;
	margin-top: 0%;
}
	
/*標柱設置
---------------------------------------------------------------------------*/
	.inner_sm{
		padding: 0; 
		margin: 4% -1.7% 0 -1.7%;
	}
	
.inner_sm p{
	line-height: 200%;
	}
.hyoucyu div{
	width: 47%;
	border: 1px solid #ddd; 
	overflow: hidden;
	margin-bottom: 5%;
	padding: 0.5%;
}

.akari img{/*デザイン趣意書*/
	width: 6.2% !important;
	float: left !important;
	margin-right: 25px;
	margin-left: 22px;
	margin-bottom: 20px;
}

.akari p{/*デザイン趣意書*/
	font-size: 145%;
	font-weight: 600;
	margin-bottom: 10px !important;
	margin-left: 0;
	padding-left: 0;
	padding-bottom: 0 !important;
	padding-top: 20px !important;
	display: inline-block;
}
	
.akari li{/*デザイン趣意書*/
	margin-bottom: 18px;
}
	
.akari a{/*デザイン趣意書*/
	margin-bottom: 28px !important;
	margin-right: 20px;
}
	
/*巡礼地選定
---------------------------------------------------------------------------*/
.act_head img{
	width: 20%;
	float: left;
	margin-bottom: 1%;
}
	
.hyocyu_img{
	width: 16% !important;	
	margin-right: 2%;
	margin-top: 2%;
}
	
.act_head p{
	margin: 3.5% 2% 7% 0 !important;
	padding: 0 !important;
}
	
.sousei div{
	width: 100%;
	float: none;
	padding: 2% 4% 2% 0 !important;
	clear: both;
	margin-left: 0 !important;
}
	
.sousei div p{
	font-size: 100% !important;
	padding-right: 2% !important;
}
	
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s ul li a {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*飾り文字*/
#menubar-s ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 8px;		/*上から8pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	border-radius: 50%;	/*円形にする*/
	border: 1px solid #fff;
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #d58008 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #d58008 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main,.sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}
/*巡礼地検索
---------------------------------------------------------------------------*/
.junreis{
	text-align: left;
}
/*inner
---------------------------------------------------------------------------*/
.inner {
	padding-left: 2% !important;
	padding-right: 2% !important;
}

/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2,h3タグ*/
#contents h2 {
	font-size: 20px;	/*文字サイズ*/
}
/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	font-size: 20px;	/*文字サイズ*/
	padding-left: 10px;
	color: #403000 !important;
}
/*h3タグの１文字目*/
#contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
	padding: 0 10px 20px;
}

/*求人一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	padding: 10px;		/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス間の余白*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
}

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list2 li {
	width: auto;		/*幅*/
	margin: 0 0 10px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list2 a {
	height: auto;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	height: auto;
	width: 10%;
}
/*件数のテキスト。※list2内でspanタグで囲った場合。*/
.list2 span {
	font-size: 20px;/*文字サイズ*/
	right: 20%;		/*右から20%の場所に配置*/
	bottom: 6px;	/*下から6pxの場所に配置*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 10px;	/*文字サイズ*/
	width: 50px;		/*幅*/
	line-height: 20px;	/*高さ*/
	right: 10px;	/*右から10pxの場所に配置*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;	/*画面領域が狭いので非表示に。*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.photo {padding: 5px;border: 2px solid #fff;}
.ws,.wl {width: 94%;}
.fl {float: none;}
img.fl {float: none;display: block;width:90%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: none;display: block;width:90%;margin: 0 auto 20px;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅360px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:360px){

/*ta1設定
---------------------------------------------------------------------------*/
/*labelタグを2列から1列表示にする（CMS用）*/
.ta1.cms td label {
	float: none;
	width: 100%;
}

}