@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #000000;	/*全体の文字色*/
	font-family: 'Noto Sans JP', sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #FFFFFF;
}
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: 20px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {
    max-width: 100%;
    width:100%;
}
/*iframe {width: 100%;}*/

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

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 3%;	/*上下、左右へのボックス内の余白*/
}
/*グローバルナビ
---------------------------------------------------------------------------*/
.nav_inner {
	max-width: 1050px;	/*サイトの最大幅*/
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	padding: 0 4%;		/*上下、左右へのボックス内の余白*/
	position: absolute;
	right: 0;
	display: flex;
	width: 50%;
	text-align: center;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 120px;	/*ヘッダーの高さ*/
	color: #fff;	/*文字色*/
	display: block;
}
header a {
	color: #fff;	/*リンクテキストの文字色*/
}
/*トップページへの追加設定*/
.home header {
	/*height: 900px;	/*ヘッダーの高さを上書き。*/
}
/*ロゴ画像*/
header h1 {
	width: 300px;		/*ロゴ画像の幅*/
	padding-top: 40px;	/*上に空ける余白。上下のバランス調整をここでとって下さい。*/
}
/*トップページへの追加設定*/
/*.home header h1 {
	width: 300px;		/*ロゴ画像の幅を上書き*/
/*	padding-top: 90px;}	/*上に空ける余白の上書き。*/


/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
#header-nav {
	position: absolute;
	right: 3%;	/*ヘッダーの右から3%の場所に配置。*/
	top: 30px;	/*ヘッダーの上から30pxの場所に配置。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広げる指定*/
	font-size: 13px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#header-nav li {
	float: left;	/*左に回り込み*/
	margin-left: 10px;	/*メニュー間に空けるスペース*/
}
#header-nav li a {
	text-decoration: none;display: inline-block;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 0 10px;		/*上下、左右へのメニュー内の余白*/
}
#header-nav li a:hover {
	background: #fff;	/*マウスオン時の背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	position: relative;
	z-index: 100;
	/*background: #009c7b url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #FFFFFF;	/*背景色、背景画像の読み込み。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.4は色が40%ついた状態の事。*/
	height: 120px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷5個=20%）*/
}
#menubar li a {
	display: block;
	text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #000;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	height: 50px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 10px 0;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 10px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
}
/*「施設のご案内」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の一番上(0)を基準に読み込む。サイズは50px。*/
#menubar li.info {
	/* [disabled]background: url(../images/mark_menu.png) no-repeat 15px 0px / 50px; */
}
/*「イベント」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-100px)を基準に読み込む。サイズは50px。*/
#menubar li.event {
	/* [disabled]background: url(../images/mark_menu.png) no-repeat 15px -100px / 50px; */
}
/*「お買い物」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-200px)を基準に読み込む。サイズは50px。*/
#menubar li.shopping {
	/* [disabled]background: url(../images/mark_menu.png) no-repeat 15px -200px / 50px; */
}
/*「周辺マップ」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-300px)を基準に読み込む。サイズは50px。*/
#menubar li.map {
	/* [disabled]background: url(../images/mark_menu.png) no-repeat 15px -300px / 50px; */
}
/*「お問い合わせ」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-400px)を基準に読み込む。サイズは50px。*/
#menubar li.contact {
	/* [disabled]background: url(../images/mark_menu.png) no-repeat 15px -400px / 50px; */
}
/*装飾文字（英語表記）の設定*/
#menubar li a span {
	text-shadow: none;
	display: block;
	font-size: 11px;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする設定*/
	padding-left: 3px;		/*左に少しだけ余白を作る。*/
	opacity: 1;			/*60%だけ色がついた状態。*/
    margin-top: 5px;
}
/*マウスオン時メニューと、現在表示中(current)メニューの設定*/
#menubar li a:hover,#menubar li.current a {
	background: rgba(0,0,0,0.15);	/*0,0,0は黒の事で、0.15は15%だけ色がついた状態の事。*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
/*body.is-fixed-menu .contents:first-of-type {
margin-top: 100px;}	/*メニューブロックの高さを指定する。背景画像も高さ100pxなので通常はこのままで。*/

/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.is-fixed .contents:first-of-type {
	margin-top: 100px;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;overflow: hidden;
	padding-top: 50px;		/*上に空けるボックス内の余白*/
	padding-bottom: 50px;	/*下に空けるボックス内の余白*/
}

.contents2{
	padding-bottom: 24px;
}

/*コンテンツのh2タグ設定*/
.contents h2 {
    font-family: 'Roboto', sans-serif;
	clear: both;
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	padding: 6px;		/*上下、左右への余白*/
	font-size: 48px;		/*文字サイズ*/
	/*background: #003207;	/*背景色*/
	color: #000000;			/*文字色*/
	border-radius: 5px;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
    background-image: url("../images/index/title_bg.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    line-height: 1;
    display: inline-block;
}
/*h2タグの１文字目の設定。左側のアクセントラインです。*/
/*.contents h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
/*	padding-left: 15px;				/*線と文字列との間に空ける余白*/
/*}
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	background: none;padding: 0;
	font-size: 48px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	color: #000000;		/*文字色*/
}
.contents h2.simple::first-letter {
	border: none;
	padding: 0;
}
.contents h2.simple + p {
	margin-top: -20px;
}
/*コンテンツのh3タグ設定*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 6px 15px;		/*上下、左右への余白*/
	font-size: 18px;		/*文字サイズ*/
	/*border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	/*border-radius: 5px;		/*角丸のサイズ*/
	/*background: #fff;		/*背景色*/
	color: #DEAE47;			/*文字色*/
	font-weight: bold;
}
/*h3タグの１文字目への設定。左側のアクセントラインです。*/
.contents h3::first-letter {
	/*border-left: 3px solid #0b4613;	/*左の線の幅、線種、色*/
	/*padding-left: 15px;				/*線と文字列との間に空ける余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -10px;
}
.contents section + section {
	margin-top: 30px;
}
/*.contents p + p {
	margin-top: -8px;
}*/

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

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回り込み*/
	width: 20%;		/*ブロックの幅*/
}
/*h2見出しタグ設定*/
.sub h2 {
	margin-bottom: 0;
	letter-spacing: normal;
	font-size: 16px;
	background: #003207;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px 0;		/*上下、左右への見出し内の余白*/
	border-radius: 5px 5px 0px 0px;	/*上、右、下、左への角丸の指定*/
}
.sub h2::first-letter {
	border: none;padding: 0;
}
.sub h2 + p,
.sub h3 + p {
	margin-top: 0;
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	text-decoration: none;display: block;
	padding: 0 10px;	/*上下、左右のボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけ消す*/
	background: #fff;		/*背景色*/
	color: #666;	/*文字色*/
}
.sub .submenu li a:hover {
	color: #0b4613;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	overflow: hidden;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	background: #fff;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;	/*上の線だけ消す*/
	padding: 5px;		/*ボックス内の余白*/
	color: #666;		/*文字色*/
}
.sub .list a {
	color: #666;		/*リンクテキストの文字色*/
}
/*最後のlistボックスへの設定*/
.sub .list:last-of-type {
	margin-bottom: 20px;	/*ボックスの下に空ける余白*/
}
/*画像*/
.sub .list figure {
	float: left;		/*左に回り込み*/
	width: 30%;			/*画像幅*/
	margin-right: 5px;	/*画像の右に空けるスペース*/
}
/*h4見出しの文字色*/
.sub .list h4, .sub .list h4 a {
	color: #0b4613;
}

/*各ページ下部に配置している「アクセス」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック（地図が入っている方）*/
.href-left_access {
	float: left;	/*左に回り込み*/
	width: 49%;		/*ブロック幅*/
}
.href-left_access iframe{
	width: 100%;
}
/*右側ブロック（詳細情報）*/
.href-right_access {
	float: right;	/*右に回り込み*/
	width: 49%;		/*ブロック幅*/
}
.href-right_access img{
    margin-right: 5px;
}
.pin_red{
	background-image: url("../images/index/pin_red.png");
	background-repeat: no-repeat;
	background-position: center left 14px;
}
.pin_green{
	background-image: url("../images/index/pin_green.png");
	background-repeat: no-repeat;
	background-position: center left 14px;
}
.pin_yellowgreen{
	background-image: url("../images/index/pin_yellowgreen.png");
	background-repeat: no-repeat;
	background-position: center left 14px;
}
/*施設紹介の表
---------------------------------------------------------------------------*/
.href-left, .href-right{
	margin-top: 80px;
}
/*左側ブロック（写真が入っている方）*/
.href-left {
	float: left;	/*左に回り込み*/
	width: 29%;		/*ブロック幅*/
}
/*右側ブロック（詳細情報）*/
.href-right {
	float: right;	/*右に回り込み*/
	width: 69%;		/*ブロック幅*/
}
/*ソーシャルメディアアイコン*/
.icon img {
	width: 40px;	/*画像の幅*/
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 12px;	/*文字サイズ*/
	color: #b8b8b8;	/*文字色*/
	background: #444;	/*背景色*/
}
/*リンクテキスト*/
footer a {
	color: #b8b8b8;	/*文字色*/
	text-decoration: none;
}
/*リンクのマウスオン時*/
footer a:hover {
	color: #fff;
}
footer .pr {display: block;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 3%;	/*上下、左右のボックス内の余白*/
	background: url("../images/index/logo_white.png") no-repeat right center / 20%;	/*背景画像の読み込み。右側、上下中央に配置。画像はブロック幅の20%で読み込む。*/
	color: #fff;		/*文字色*/
}
/*１行分の設定*/
#footermenu ul {
	width: 50%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	display: flex;
}
#footermenu ul li{
	padding: 30px 20px;
}
/*「class="title"」をつけた場合の設定*/
#footermenu .title {
	font-weight: bold;	/*太字にする*/
}

/*footerにロゴ入れた場合*/
/*ボックス全体*/
.bg_logo02 {
	overflow: hidden;
	padding: 20px 3%;	/*上下、左右のボックス内の余白*/
	color: #fff;		/*文字色*/
    background-image: url("../images/index/logo_white.png");
    background-position: right 5% center;
    background-repeat: no-repeat;
	background-size: 250px auto;
}
/*１行分の設定*/
.bg_logo02 ul {
	width: 60%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bg_logo02 ul li{
	padding: 30px 20px;
}

.bg_logo02 ul li:last-child{
	width:30%;
}
/*「class="title"」をつけた場合の設定*/
.bg_logo02 .title {
	font-weight: bold;	/*太字にする*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
	font-size: 12px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*リンクテキスト*/
#copyright a {text-decoration: none;color: #fff;}

/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	overflow: hidden;
	background: #F0EFEB;		/*背景色*/
	color: #666;			/*文字色*/
		/*上、左右、下へのボックスの外に空けるスペース*/
	
}
/*box1内のh4(見出し)タグ*/
.box1 h4 {
	color: #0b4613;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #0b4613;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1 p {padding: 0 !important;line-height: 1.5;}
.box1 p a {color: #666;}
/*box2内のbtn1。本体の設定はこの下の下のブロックにあります。*/
.box1 p.btn1 {margin-top: 20px;}
#carry .box1 .box1_food{
	width: 70%;
	margin: 30px auto 0;
	padding-bottom: 40px;
}
.box1_food{
	background: #009c7b;
	color: #ffffff;
	overflow: hidden;
	margin-bottom: 60px;		/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 20px 80px;
	border-radius: 10px;
	box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.1);
	clear: both;
}
.box1_food.center{
    margin-bottom: 60px;
}
.box1_food p {padding: 0 !important;line-height: 1.5;}
.box1_food p a {color: #E6F4BD;}
.box1_food h4 {
	color: #ffffff;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #0b4613;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box2（4カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	position: relative;
	width: 15%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	/*padding-bottom: 75px;	/*下の余白だけ上書き*/
	background: #fff;		/*背景色*/
	border: 2px solid #F1F4ED;	/*枠線の幅、線種、色*/
	border-radius: 10px;
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #666;		/*文字色*/
}
/*box2内の日付*/
.box2 span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #0b4613;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}
/*box2内のp(段落)タグ*/
.box2 p {
	padding: 0 !important;
	height: 4.5em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size: 16px;	/*文字サイズ*/
	text-align: left;	/*文字を左よせ*/
}
/*段落タグにリンクが設定された場合の文字色*/
.box2 p a {
	color: #666;
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	color: #0b4613;	/*文字色*/
	height: 1.5em;	/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
}
/*box2内のfigure(画像)タグ*/
.box2 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2内のbtn1。本体の設定はこの下のブロックにあります。*/
.box2 p.btn1 {
	height: auto;
	position: absolute;
	bottom: 30px;	/*box2の下から30pxの場所に配置*/
	width: 80%;		/*ボタンの幅*/
}
.box2 p.btn1 a {
	display: block;
	padding: 5px 0;	/*上下、左右へのボタン内の余白*/
}

/*box1、box2のfigure写真共通設定
---------------------------------------------------------------------------*/
.box1 figure a:hover,.box2 figure a:hover {
	opacity: 0.8;	/*マウスオン時に80%透明度にする*/
}

/*btn1
---------------------------------------------------------------------------*/
p.btn1 a {
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;	/*枠線の幅、線種、色。transparentは透明の事。*/
	background: #4D4D4D;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius: 3px;		/*角丸のサイズ*/
	padding: 5px 20px 5px 10px;		/*上下、左右へのボタン内の余白*/
	text-align: right;			/*文字をセンタリング*/
	width: 150px;
}
/*マウスオン時*/
p.btn1 a:hover {
	border: 1px solid #0b4613;	/*枠線の幅、線種、色。*/
	background: #fff;			/*背景色*/
	color: #0b4613 !important;	/*文字色*/
}

p.btn2 a {
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;	/*枠線の幅、線種、色。transparentは透明の事。*/
	background: #009C7B;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius: 3px;		/*角丸のサイズ*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
	text-align: center;			/*文字をセンタリング*/
	width: 225px;
}
/*マウスオン時*/
p.btn2 a:hover {
	border: 1px solid #009C7B;	/*枠線の幅、線種、色。*/
	background: #fff;			/*背景色*/
	color: #009C7B !important;	/*文字色*/
}
.service_list p.btn1 a{
	display: table-cell;
	height: 65px;
	vertical-align: middle;
}

.facilities p.btn2 a {
    display: table-cell;
    height: 65px;
    vertical-align: middle;
}
.service_list p.btn2 a{
	display: table-cell;
	height: 65px;
	vertical-align: middle;
}

/*写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 30%;	/*幅*/
	background-color: #F0F7E7;
}
.photo figure:hover{
	background: rgba(0,0,0,0.15);	/*0,0,0は黒の事で、0.15は15%だけ色がついた状態の事。*/
	/*opacity: 0.8;	/*マウスオン時に80%の透明度にする*/
}
/*photoボックス内の段落(p)タグ*/
.photo p {
	padding: 5px 0 !important;	/*上下、左右への段落タグ内の余白*/
	position: absolute;
	bottom: 0px;	/*photoボックスの下から0pxの場所に配置*/
	width: 100%;	/*幅*/
	background: #111;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は50%色がついた状態のこと*/
	color: #fff;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	font-size: 120%;
}
/*追記*/
.photo figure{
	width: 375px;
	height: 375px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;
	border-bottom: 1px thin #838383;
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
	color: #0b4613;	/*文字色*/
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空ける余白*/
}

#new img {
	width:200px;
	height: auto;
	margin-right: 20px;
	margin-bottom: 20px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px 0 10px 80px;			/*ボックス内の余白*/
	font-size: 24px;
	background-image: url(../images/index/logomark.png);
	background-repeat: no-repeat;
	background-position-y: center;
	background-position-x: 12px;
		
}
/*ta1設定*/
.ta1 {
	width: 90%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 15px 15px 15px 37px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 40%;		/*幅*/
	text-align: left;	/*左寄せ*/
	font-weight: normal;
}
/*リンクテキストの文字色*/
.ta1 a {color: #666;}
/*ta1のtdタグ内のリストタグ*/
.ta1 td ul.disc {padding: 0 5px 0 20px;}
/*ta1のtdタグ内の段落(p)タグ*/
.ta1 p {padding: 0;}

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

/*パンくずナビ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.pan {
	background: #111;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で、0.7は70%色がついた状態の事。*/
	margin-bottom: 40px;			/*ボックスの下に空けるスペース*/
	margin-top: -50px;				/*ボックスを上のメニューにつけるための指定*/
	padding: 10px 3%;				/*ボックス内の余白。上下、左右。*/
	color: #fff;					/*文字色*/
}
/*メニュー１個あたりの設定*/
.pan li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 5px;		/*余白*/
}
/*リンクテキストの文字色*/
.pan a {
	color: #bebebe;
}
/*マウスオン時リンクテキストの文字色*/
.pan a:hover {
	color: #fff;
}
/*リストタグの頭に加える記号*/
.pan li::before {
	content: ">";	/*このテキストを表示させる*/
	color: #bebebe;	/*文字色*/
	padding-right: 12px;	/*記号とテキストとの余白*/
}
/*１番目のリストタグの頭に加える文字のリセット*/
.pan li:first-child::before {
	content: "";	/*テキストを空にする*/
}

/*背景色（bg1）
---------------------------------------------------------------------------*/
.bg1 {
	background:url("../images/index/access_bg.png");	/*背景色*/
}
.bg3 {
	background:url("../images/index/contact_back.jpg");
	background-size: cover;
	background-repeat: no-repeat;
/*背景色*/
}
.bg4 {
	background:url("../images/index/company_back.png");
	background-size: cover;
	background-repeat: no-repeat;
/*背景色*/
}
/*背景色（bg2）
---------------------------------------------------------------------------*/
.bg2 {
	background: #EDDCD2;	/*背景色*/
	color: #003207;	/*文字色*/
}
.bg2 a {color: #fff;}
.bg2 h2 {color: #fff !important;}

/*背景色（bg-access）※全ページ下部にある「アクセス」ブロック
---------------------------------------------------------------------------*/
.bg-access {
	background: #184062 url("../images/index/access_bg.png");	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #184062 url("../images/index/access_bg.png") center / cover;	/*背景色、背景画像の読み込み。*/
}
.bg-access,.bg-access a {color: #000000;}
/*bg-access内のテーブル(ta1)*/
.bg-access .ta1 {
	background: transparent;
	color: #000;
}
/*bg-access内の「h2 class="simple"」見出し*/
.bg-access h2.simple {
	color: #000000;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@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;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ。円形にする。正方形がいいならこの１行削除。*/
	bottom: 30px;	/*下から30pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%ついた状態の事。*/
	color: #fff;	/*文字色*/
	border: 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: #999;	/*背景色*/
}

/*「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;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;	/*背景色*/
	color:#fff;				/*文字色*/
	padding: 10px 25px !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb40 {margin-bottom: 40px !important;}
.clear {clear: both;}
.ofh {overflow: hidden;}
ul.disc {padding: 0em 25px 20px;list-style: disc;}
.color1, .color1 a {color: #0b4613;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr,figure.fr {float: right;margin: 10px;}
img.fl,figure.fl {float: left;margin: 10px;}
.fr {float: right;}
.fl {float: left;}
.w30p {width: 30%;}
.w65p {width: 65%;}
.big1 {font-size: 28px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.link {display: block;margin-top: -120px;padding-top: 120px;}

/*追記！*/

.logo{
	position: fixed;
	left: 5%;
	z-index: 1000;
}
#mainimg{
	height: auto;
	position: relative;
}
#mainimg p{
	position: absolute;
	z-index: 90;
	top: 400px;
	right: 100px;
}
.slide-animation{
    animation: fadezoom 8s 0s forwards;
}
.policy .services .facilities{
	width: 50%;
	position: relative;
}
.policy_bg{
	background: rgba(193,193,193,0.2);
	background-repeat: no-repeat;
	background-position: top;
    background-size: contain;
}
.policy p.btn1{
	padding-top: 40px;
}

.policy p.btn2{
	padding-top: 40px;
}

p.txt{
	margin: 0 auto 20px;
	text-align: center;
}
.info_bg{
	background-image: url("../images/info/tomei.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 300px;

}
.info_list .ta2, .recruit .ta2{
	width: 950px;
}
.info_list .ta2 th:first-of-type{
	width: 25%;
}
.info_list .ta2 td:last-of-type{
	text-align: left;
}
.info_list .box1{
	width: 750px;
	margin: 0 auto;
}
.message, .services, .facilities{
	width: 50%;
}
.message{
	background:rgba(255,255,255,0.7);
    margin: 0 auto;
    text-align: center;
}
.contents .message h2{
    text-align: center;
}
.contents .message p{
    text-align: left;
}

.contents .message .sign{
	text-align: right;
}
.map div{
    width:45%;
}
.map iframe{
	width: 100%;
}
.map h3{
    color: #000;
    text-align: center;
}
#inquiry ul{
	display: flex;
	align-items: stretch;
	justify-content: space-evenly;
	
	
}
#inquiry ul a{
	text-decoration: none;
	flex-basis: 30%;
	text-align: center;
	background-color: #FFFFFF;
    color: #307638;
    display: flex;
    align-items: center;
    justify-content: center;
	
}

#inquiry ul li{
	/*padding: 67px 0 64px;*/
	padding: 15px 0;
    width:100%;
}
#inquiry p{
    padding: 0;
}
#inquiry .txt , .access_top .txt{
    font-size: 18px;
}
.tel {
    align-items: center;
}
.tel span , .mail span{
    font-size: 150%;
    font-weight: bold;
}
.tel{
    background-image: url("../images/index/tel.png");
    background-repeat: no-repeat;
    background-position: 15% center;
}
.mail{
    background-image: url("../images/index/mail.png");
    background-repeat: no-repeat;
    background-position: 10% center;
}
/*#inquiry ul a:last-child{
	border-left: 1px solid #5E7F66;
}*/

#inquiry ul li.mail:hover{
/*	background: rgba(0,0,0,0.15);	/*0,0,0は黒の事で、0.15は15%だけ色がついた状態の事。*/
}
#download ul{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
#download ul li{
	margin: 30px 0 0 20px;
}
#download a:hover{
	opacity: 0.6;
}
.download input[type="button"]{
	background: #0b4613;
	color: #ffffff;
	border-radius: 5px;
	padding: 5px 30px;
	width: auto;
}
.download input[type="button"]:hover{
	border: 1px solid #0b4613;
	background: #ffffff;
	color: #0b4613;
}
.video{
	width: 80%;
	margin: 0 auto;
}
.video div{
	text-align: center;
}
/*ta2設定*/
.ta2 {
	width: 80%;
	margin: 30px auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}	
.ta2 caption {
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	/*background: #E6F4D7;		背景色*/
	color: #0b4613;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px 20px;			/*ボックス内の余白*/
	font-size: 24px;
}
/*ta2の項目*/
.ta2 th {
	text-align: center;	/*センタリング*/
	font-weight: bold;
	background-color: #f0efeb;
}
.ta2 th:first-of-type{
	width: 15%;
}
.ta2 th:nth-of-type(2){
	width: 40%;
}
.ta2 th:nth-of-type(3){
	width: 25%;
}
.ta2 th:nth-of-type(4){
	width: 10%;
}
.ta2 td:nth-of-type(3){
	width: 20%;
}
.ta2 td:last-of-type{
	text-align: center;
}
/*リンクテキストの文字色*/
.ta2 a {color: #666;}
/*ta1のtdタグ内のリストタグ*/
.ta2 td ul.disc {padding: 0 5px 0 20px;}
/*ta1のtdタグ内の段落(p)タグ*/
.ta2 p {padding: 0;}
/*画像*/
.ta2 img{
	align-items: center;
}
.service_list{
	width: 800px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.service_list btn1{
	line-height: 1.5em;
}
#dustbox table{
	width: 70%;
}
#dustbox .ta2 th{
	text-align: center;	/*センタリング*/
	font-weight: bold;
	background-color: #f0efeb;
	width: auto;
}
#dustbox .ta2 td{
	text-align: center;	/*センタリング*/
	width: auto;
}
#dustbox .scb table{
	width: 30%;
}
#dustbox p.btn1 a{
	background-color: #009c7b;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
}
.wood ul{
	display: flex;
	margin: 0 auto;
}
.wood ul li{
	width: 400px;
	height: 250px;
	margin: 20px;
}
.fa_bg{
	background-image: url("../images/facilities/facilities_bg.png");
	background-repeat: no-repeat;
	background-position-y: 62px;
	background-size: 100%;
}
.facilities_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.facilities_flex .facilities_flex_left{
    flex-basis: 40%;
}
.facilities_flex .facilities_flex_right{
    flex-basis: 60%;
}
.facilities_flex_left img{
	padding-bottom: 20px;
}
.sv_bg{
	background-image: url(../images/services/services_bg1.png);
	background-repeat: no-repeat;
	background-position-y: 62px;
	background-size: 100%;
}
.sv1 h3{
	font-size: 20px;
}
.sv1_list ul{
	width: 50%;
	margin: 0 auto;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sv1_list ul li{
    position: relative;
    display: flex;
    justify-content: center;
	padding: 10px 10px 20px;
	font-size: 18px;
    width:100%;
    margin-bottom: 10px;
}
.sv1_list ul li a{
    color:#000;
}
.sv1_list ul li::after{
    position: absolute;
    bottom: 0;
    left: center;
     content: "";
    width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #1C7E3B;
}

.sv1_list ul li:last-child::after{
    content:none;
}
.step{
    text-align: center;
    width:20%;
    line-height: 1.4;
    color:#1C7E3B;
}
.step span{
    font-size: 200%;
}
.sv1_list ul li:first-child{
    background-image: none;    
}
.sv1_list ul li p{
    padding: 0 0 20px!important;
}
.sv1_list ul li p .step_line{
    background:linear-gradient(transparent 60%, #E5B94A 60%);
    font-size: 18px;
}
.sv1_list h3{
	text-align: center;
	font-size: 24px;
}
.container ul{
	display: flex;
	margin: 0 auto;
}
.container ul li{
	margin: 20px auto;
}
/*ta3設定*/
.ta3 {
	width: 80%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.ta3, .ta3 td, .ta3 th{
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}	
.ta3 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	/*background: #E6F4D7;		背景色*/
	color: #0b4613;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px 20px;			/*ボックス内の余白*/
	font-size: 24px;
}
/*ta3の項目*/
.ta3 th {
	text-align: center;	/*センタリング*/
	font-weight: bold;
	background-color: #f0efeb;
	width: 20%;
}

/*リンクテキストの文字色*/
.ta3 a {color: #666;}
/*ta1のtdタグ内のリストタグ*/
.ta3 td ul.disc {padding: 0 5px 0 20px;}
/*ta1のtdタグ内の段落(p)タグ*/
.ta3 p {padding: 0;}
/*画像*/
.ta3 img{
	align-items: center;
}
#main, #pla, #wood, #carry, #industry, #dustbox, #headoffice, #woodwaste, #intermediate{
	margin-top: -130px;
	padding-top: 130px;
}
.center{
	text-align: center;
	margin: 20px auto 0;
	max-width: 1000px;
}
.center2{
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}
.tour ul{
	display: flex;
}
.tour ul li{
	margin: 20px;
}
.shushu .box2{
	padding-bottom: 20px;
	padding-top: 20px;
}
.shushu .box2 p{
	height: 3em;
}
.recruit .ta2 th:first-of-type{
	width: 25%;
}
.recruit .ta2 td:last-of-type{
	text-align: left;
}
/*box2_5（5カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2_5 {
	width: 20%;		/*ボックスの幅*/
	text-align: center;	/*内容をセンタリング*/
	padding: 2%;		/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border: 2px solid #F1F4ED;	/*枠線の幅、線種、色*/
	border-radius: 10px;
	line-height: 1.5;	/*行間*/
	color: #666;		/*文字色*/
}
/*box2内のp(段落)タグ*/
.box2_5 p {
	padding: 0 !important;
	font-size: 16px;	/*文字サイズ*/
	text-align: left;	/*文字を左よせ*/
}
/*box2内のh3タグ*/
.box2_5 h3 {
	font-size: 18px;
}
.box2_5 p:nth-of-type(3){
	font-size: 14px;
}
.box2_5 p:nth-of-type(3) a{
	color: #DF3437;
}
#carry div:nth-of-type(3) p:nth-of-type(2){
	width:80%;
    text-align: left;
    font-size: 16px;
}
.bg_logo{
    background-image: url(../images/index/bg_logo_s.png);
    background-position: center;
    background-repeat: no-repeat;
}


.flex{
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}

.recruit_top .flex div{
    width:40%;
}
.recruit_top .flex div img{
    width:100%;
}
  #inquiry .tel{
		position: relative;
	}
#inquiry h2 , .access_top h2{
    display: inline-block;
    text-align: center;
}

.map{
    
}


/*qa
------------------------------------------------------------------------------------------------------------------------------------------*/
.w1000{
    max-width: 1000px;
    margin: 0 auto;
}
.qa h3{
    margin-bottom: 0px;
}
.faq {
  margin-bottom: 32px; /* 各Q&Aの下に余白 */
}
.faq dl{
    margin-bottom: 30px;
}
.faq__dt {
  position: relative;
  padding-left: 24px;
    margin: 15px 0;
    padding-top:20px; 
}
 .faq__dd {
  position: relative;
  padding-left: 24px;
    margin: 15px 0;
    padding-bottom:15px; 
}
.faq__dt::before, .faq__dd::before {
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.faq__dt {
  font-weight: bold; /* 質問文は太字にしてみました */
  border-top: 1px solid #999;
  margin-bottom: 15px; /* 下にちょい余白 */
}
.faq__dt:first-child{
    border-top:none; 
    margin-top: 0px;
}
.faq__dt::before {
  content: 'Q.';
  color: #c80021; /* 「Q」の文字色 */
    padding-top:20px; 
}

.faq__dd::before {
  content: 'A.';
  color: #0085C8; /* 「A」の文字色 */
}


    .recruit .recruit_btn{
        display: inline-block;
        padding:30px;
        border-radius: 10px;
        background-color: #1C7E3B;
        width:250px;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        margin-top: 30px;
    }





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


/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){
#mainimg p{
	right: 5%;
	top: 70%;
	}
	#footermenu ul{
		width: auto;
	}
	.info_list{
		margin: 0;
	}
	.sv1_list ul li{
		font-size: 16px;
		line-height: 1.5em;
		padding-top: 12px;
	}
    .sv1_list ul li p {
        padding:0 0 10px 0!important;
    }
	
	.bg_logo{
    background-image: url("../images/index/logo_white.png");
    background-size: 90% auto;
	}
	.bg_logo02 ul{
	}
}
 /*画面幅1050px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1024px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li a {
	font-size: 16px;	/*文字サイズ*/
	height: 65px;		/*高さ*/
	padding-top: 15px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
}
    .ta3{
        width:90%;
    }
    .facilities_flex{
        justify-content: center;
    }
    .facilities_flex .facilities_flex_left{
        flex-basis: 70%;
        margin-bottom: 20px;
    }
    .facilities_flex .facilities_flex_right{
        flex-basis: 100%;
    }

.facilities_flex img{
	margin-bottom: 20px;
}
/*追記！*/
	.message, .services, .facilities {
    width: 90%;
	}
	.info_list .ta2{
		width: 85%;
		margin: 0 auto;
	}
	.service_list{
		width: auto;
	}
    .sv1_list ul{
	width: 100%;
    }
	.facilities ul.service_list{
		width: auto;
	}
	.recruit .ta2{
		width: 85%;
		margin: 0 auto;
	}
    .recruit_top .flex div {
    width: 45%;
}
    #inquiry ul a {
    flex-basis: 40%;
}
    .tel {
    background-position: 10% center;
}
    .mail {
    background-position: 5% center;
}
.info_bg{
	background-size: 300px;

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


/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 100px;	/*上から100pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 100;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	height: 85px;		/*高さ。下のpadding-top(15)と合計して「100」になるようにする。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
	padding: 10px 0 10px 40px;
}
/*「施設のご案内」メニューの設定
背景色。アイコンの読み込み。左から15pxの場所に配置。背景画像の一番上(0)を基準に読み込む。サイズは50px。*/
#menubar-s li.info {
	background: rgba(0,0,0,0.8);
}
/*「イベント」メニューの設定
背景色。アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-100px)を基準に読み込む。サイズは50px。*/
#menubar-s li.event {
	background: rgba(0,0,0,0.8);
}
/*「お買い物」メニューの設定
背景色。アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-200px)を基準に読み込む。サイズは50px。*/
#menubar-s li.shopping {
	background: rgba(0,0,0,0.8);
}
/*「周辺マップ」メニューの設定
背景色。アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-300px)を基準に読み込む。サイズは50px。*/
#menubar-s li.map {
	background: rgba(0,0,0,0.8);
}
/*「お問い合わせ」メニューの設定
背景色。アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-400px)を基準に読み込む。サイズは50px。*/
#menubar-s li.contact {
	background: rgba(0,0,0,0.8);
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズを小さく*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 24px;	/*上から24pxの場所に配置*/
	left: 3%;	/*左から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）の設定をなくす
---------------------------------------------------------------------------*/
body.is-fixed-menu .contents:first-of-type,
body.is-fixed .contents:first-of-type {
	margin-top: 0px;
}

/*contents
---------------------------------------------------------------------------*/
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	font-size: 30px;	/*文字サイズ*/
}

/*main,sub
---------------------------------------------------------------------------*/
.main, .sub{
	float: none;
	width: auto;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	line-height: 2;		/*行間*/
	padding: 10px;		/*ボックス内の余白*/
}
/*画像*/
.sub .list figure {
	width: 15%;			/*画像幅*/
	margin-right: 10px;	/*画像の右に空けるスペース*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side,body.s-n #footermenu .bg_logo02{display: none;}
.sh {display:block;}
.pc {display:none;}
.link {margin-top: 0;padding-top: 0;}

 
.ta3{
        width:95%;
    }
.logo{
	left: auto;
	right: 10%;
	position: absolute;
	}
#mainimg p{
	width: 60%;
	}
.photo figure{
		height: 300px;
	}
.href-left_access{
	float: none;
	width: auto;
	}
	.href-right_access{
		float: none;
		width: auto;
	}
	.message, .services, .facilities {
    	width: auto;
	}
	.sv1_list ul li{
		font-size: 14px;
		line-height: 1.5em;
        padding: 20px 5px 35px;
	}
	.sv1_list ul{
	width: 100%;
	margin: 0 auto;
	display: flex;
	text-align: center;
	background-size: 100%;
	background-repeat: no-repeat;
}
	.ta2{
		width: auto;
	}
	.ta2, .ta2 td, ta2 th{
		padding: 5px;
	}
	#main, #pla, #wood, #carry, #industry, #dustbox, #woodwaste{
	margin-top: 0;
	padding-top: 0;
	}
	#dustbox .ta2{
		width: auto;
	}
	#dustbox .scb table{
		width: auto;
	}
	.box2_5 p:nth-of-type(3){
	font-size: 12px;
}
 .recruit_top .flex div img {
    margin-top: 100px;
}
    #inquiry ul {
    justify-content: space-between;
}
    #inquiry ul a {
    flex-basis: 47%;
}
    .mail {
    background-size: 45px;
}
}   
	
/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

/*contents
---------------------------------------------------------------------------*/
.contents {
	padding-top: 20px;		/*上に空けるボックス内の余白*/
	padding-bottom: 20px;	/*下に空けるボックス内の余白*/
}
.contents section + section {
	margin-top: 20px;
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
/*.box1 {
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
/*}*/

	
	
/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	padding: 3%;		/*余白の上書き*/
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 2;	/*行間*/
}
/*box2内のp(段落)タグ*/
.box2 p {
	height: auto;	/*高さ。*/
	font-size: 100%;		/*文字サイズ*/
	margin-bottom: 15px;
	text-align: center;
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	height: auto;	/*高さ*/
}
/*box2内のbtn1*/
.box2 p.btn1 {
	position: static;
	width: 99%;		/*ボタンの幅*/
}

/*施設紹介の写真と表
---------------------------------------------------------------------------*/
/*左側ブロック、右側ブロック*/
.href-left,.href-right {
	float: none;
	width: auto;
	padding-bottom: 30px;
}

/*パンくずナビ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.pan {
	margin-bottom: 20px;	/*ボックスの下に20pxのスペースを空ける*/
	margin-top: -20px;		/*ボックスを上のメニューにつけるための指定*/
	padding: 0;				/*ボックス内の余白。上下、左右。*/
}
/*追記！*/
	#download ul{
		margin: 40px 20px;
		display: block;
	}
	#download ul li{
		margin: 25px 20px;
	}
	.w30p{
		width: auto;
	}
	#inquiry ul{
		display: block;
		height: auto;
	}
	#inquiry ul a:last-child{
		border-left: none;
	}
	#inquiry ul a:first-child{
		border-bottom: 1px solid #5E7F66;
	}
	iframe{
		height: 350px;
	}
	#footermenu ul{
		display: block;
		width: auto;
	}
	#footermenu ul li{
		padding: 5px 20px;
	}
	#footermenu {
	background-size: auto;
}
	/*footerにロゴ入れた場合*/
	.bg_logo02 ul{
		display: block;
		width: auto;
	}
	.bg_logo02 ul li{
		padding: 5px 20px;
	}
	.bg_logo02 {
	background-size: auto;
}
	.sv_bg, .fa_bg{
		background-position-y: 42px;
	}
	p.btn1 a{
		padding: 10px 30px;
	}
	#carry .box1, .box1_food{
		width: auto;
	}
	/*TOPページ　お問い合わせ案内の下線
	#inquiry .tel{
	border-bottom: 1px solid #5E7F66;
	}*/
	.service_list{
		justify-content: space-around;
	}
	.service_list li{
		width: 45%;
	}
	.service_list p.btn1 a{
		height: 96px;
	}
	
	.facilities_list p.btn1 a{
		height: 96px;
	}
	.sv1_list ul li{
        width:100%;
    }
	.map iframe{
		margin-bottom: -30px;
	}
	.ta1{
		width: auto;
	}
	.ta1 caption, .ta2 caption{
		font-size: 20px;
	}
	.video{
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		height: 0;
	}
	.video iframe{
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}
	tr th .pin{
		margin-left: 8px;
	}
/*box2_5（5カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2_5 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	padding: 3%;		/*余白の上書き*/
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 2;	/*行間*/
	height: auto;
}
/*box2内のp(段落)タグ*/
.box2_5 p {
	height: auto;	/*高さ。*/
	font-size: 100%;		/*文字サイズ*/
	margin-bottom: 15px;	
	text-align: center;
}
/*footerにロゴ入れた場合*/
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページへの追加設定*/
.home header {
	height: 70px;	/*ヘッダーの高さを上書き。*/
}
/*追加*/
.logo{
	right:5%;
	left: auto;
	}
header h1{
		padding-top: 15px;
		width: 70%;
	}
/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
#header-nav {
	top: 10px;			/*ヘッダーの上から10pxの場所に配置。*/
	font-size: 11px;	/*文字サイズ*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 10px;	/*上から10pxの場所に配置*/
}

/*contents
---------------------------------------------------------------------------*/
/*コンテンツのh2タグ設定*/
.contents h2 {
	padding: 5px 10px;	/*上下、左右への余白*/
	font-size: 28px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*コンテンツのh3タグ設定*/
.contents h3 {
	padding: 3px 10px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	font-size: 18px;	/*文字サイズ*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 10px 10px;	/*上、左右、下への余白*/
}

.contents2 .btn2 {
	padding: 0px 30px 10px;	/*上、左右、下への余白*/
}
/*他*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}

.ta3 th {
	text-align: center;	/*センタリング*/
	font-weight: bold;
	background-color: #f0efeb;
	width: 35%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
/*#footermenu {
	background: #444;	/*背景色のみに上書き*//*
}*/
/*１行分の設定*/
#footermenu ul {
	width: auto;	/*１列あたりの幅の再設定*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
/*.ta1 caption {
	padding: 5px;
}*/
/*テーブル内の左側*/
.ta1 th {
	padding: 5px;
}

/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*box1とbox2
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1 h4,.box1_food h4, .box2 h4 {
	font-size: 16px;	/*文字サイズ*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,figure.fr,img.fl,figure.fl {float: none;margin: 0;width: 100%;}
.fr, .fl {float: none;}
.w30p, .w65p {width: auto;}
.big1 {font-size: 18px;letter-spacing: normal;}
	
p.btn2 a {
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;	/*枠線の幅、線種、色。transparentは透明の事。*/
	background: #009C7B;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius: 3px;		/*角丸のサイズ*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
	text-align: center;			/*文字をセンタリング*/
	width: 300px;
}
	
/*追記！*/
	
.what’snew_season ul li img{
		margin-top: 30px;
	}
section.policy{
	width: auto;
	padding: 0;
	}
.box1, .box1_food{
	/*margin: 0 -10px 20px 15px;*/
	padding: 3%;
	box-shadow: 5px 5px 7.5px 0px rgba(0, 0, 0, 0.1);
	}

ul.download{
	width: 40%;
	}
.photo{
	width: 100%;
    margin-top: 25px;
	}
    .photo:first-child{
        margin-top: 5px;
    }
.sv_bg, .fa_bg{
	background-position-y: 34px;
	}
.contents h2.simple + p {
    margin-top: 0;
}
    .sv1_list ul {
        justify-content: center;
} 
	.service_list p.btn1 a{
		padding: 10px 5px;
	}
	.box2_5 p:nth-of-type(3){
	font-size: 12px;
}
	.service_list p.btn1 a{
		height: 65px;
	}
	.pin_red, .pin_green, .pin_yellowgreen{
		background-position: center right 14px;
	}
    
    #new dt {
    float: none;
        width: auto;
}
    #new dd {
    padding-left: 0;
        margin-top: 5px;
}
    .recruit_top .flex div {
    width: 100%;
}
    .recruit_top .flex div:first-child {
    order: 2;
}
    
    .recruit_top .flex div img {
    margin-top: 10px;
}
    p.btn1 a {
    width: auto;
}
    #inquiry .txt, .access_top .txt {
    font-size: 16px;
}
    #inquiry ul a:last-child {
    margin-top: 25px;
}
    
    .mail {
    background-position: 8% center;
}
    .bg_logo02 {
    padding-bottom: 70px;
        background-image: url(../images/index/logo_white.png);
            background-position:center bottom 15px;
            background-size: 75%;

}
    .bg_logo02 ul li {
    padding: 5px;
        width: 30%;
        text-align: center;
}    .bg_logo02 ul li:last-child {
        width: 100%;
}
    .bg_logo02 ul {
    display: flex;
    flex-wrap: wrap;
}
    .recruit .ta2 {
    width: 95%;
    margin: 0 auto;
}
    .recruit .ta2 th {
    padding: 5px;
    }
    .map div {
    width: 100%;
    height: 420px;
}    
}

/*--------------------------お知らせ一覧-----------------------------*/
.news_flex ul{
    display: flex;
    flex-wrap: wrap;
}
.news_flex a{
    width:30%;
    margin-left: 5%;
    color: #000;
    text-decoration: none;
    margin-bottom: 30px;
}
.news_flex img{
    height:250px;
    width:100%;
    object-fit: cover;
}
.news_flex a:hover{
    opacity: .5;
}
.news_flex a:nth-of-type(3n+1){
    margin-left: 0px;
}
.contents .day{
    font-size: 90%;
    padding-bottom: 0px;
}
@media screen and (max-width: 1024px) {
    
.news_flex img{
    height:200px;
}
}
@media screen and (max-width: 768px) {
    
.news_flex img{
    height:150px;
}
.news_flex a{
    width:100%;
    margin-left: 0%;
    margin-bottom: 15px;
}
}
@media screen and (max-width: 480px) {
    
.news_flex img{
    height:200px;
}
}

/*--------------------------お知らせ詳細-----------------------------*/
.news_box{
    max-width:900px;
    margin: 0 auto 20px;
    text-align: center;
}
.news_box img{
    margin-bottom: 10px;
    
}
.news_box p{
    text-align: left;
}
.news_title h2{
    font-size: 200%;
}
.contents .news_title p{
    padding-bottom: 10px;
} 
.news_title{
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
a[href^="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block; }
.sp{ display: none!important; }
    .sp .slick-slide img{
        display: none;
    }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width:750px){
    .pc { display: none!important; }
    .sp{ display: block!important; }
}
	.what’snew_season h3{
	    text-align: center;
    margin: 20px auto 0;
    max-width: 1000px;
	}

#dismantling{
    margin-top: -120px;
    padding-top: 120px;
}
.icon_insta{
    width:350px;
}

@media screen and (max-width: 480px) {
.icon_insta{
    width:180px;
}

    
}