@charset "utf-8";


/*style-opening.cssの読み込み*/
@import url(style-opening.css);


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

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/


	font-size: 20px;	/*文字サイズ*/
	line-height: 3;		/*行間*/
	background: #7c160a;	/*背景色*/
	-webkit-text-size-adjust: none;
	overflow:hidden;
}
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;}
a img:hover {
	opacity: 0.7;	/*マウスオン時に画像を半透明にする設定。0.7は70%の透明度の意味。*/
	text-decoration: none;		/*画像リンクの下線を消す設定*/
	border: none;
}

iframe {width: 100%;}

.hr3{
  border: none;  border-top: 5px dotted #ff4500;  width: 100%; /* 濃いピンク点線 */}


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

/*header
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;	/*内容をセンタリング*/
	padding: 20px;
	z-index: 10;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 300px;
	background: #333;	/*背景色（古いブラウザ用）*/
	background: rgba(204,0,0,0.7);	/*背景色。0,0,0は黒の事で、0.7は色が70%ついた状態の事。*/
}
/*ロゴ画像（トップページ以外）*/
header #logo2 {
	margin: 20;
	width: 15%;	/*画像の幅*/
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;	/*角丸の指定*/
	background: #ffff00;	/*背景*/
	border: 2px dashed #ff0000;	/*枠線の幅、線種、色*/
}

header #logo2 a  {
	text-decoration: none;		/*画像リンクの下線を消す設定*/
	border: none;
}


/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 20px;		/*文字サイズ*/	
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 5px;		/*上下、左右へのメニューの外側にとる余白*/
}
#menubar li a {
	color: #fff;		/*文字色*/
	text-decoration: none;
	display: block;
	padding: 0px 20px;		/*上下、左右へのメニューの内側にとる余白*/
	text-decoration: none;	/*リンクの下線を消す設定*/
	border: none;
}
/*現在表示中(current)と、マウスオン時の指定*/
#menubar li.current a, #menubar li a:hover {
	background: #fff;		/*背景色*/
	color: #b30f0f;		/*文字色*/
	border-radius: 100px;	/*角丸のサイズ。大きめであれば適当で構いません。この１行を削除すると、長方形になります。*/
	text-decoration: none;	/*リンクの下線を消す設定*/
	border: none;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	background: rgba(204,0,0,0.7);	/*背景色。0,0,0は黒の事で、0.7は色が70%ついた状態の事。*/
	width: 80%;				/*幅*/
	margin: 0 auto 40px;	/*上、左右、下へのボックスの外側の余白。左右にautoを指定すると中央配置になる。*/
	padding: 30px;			/*ボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ。この行削除すれば角が尖った通常の四角形になります。*/
	color: #ffffff;		/*文字色*/
}


/*１つ目のブロック*/
.first {
	margin-top: 140px !important;	/*headerのheightの数字（300px）と、.innerのmarginの３つ目の数字（40px）を足した数にする。*/
}

/*contents
---------------------------------------------------------------------------*/
/*アニメーション設定------------------------*/
@keyframes contents {
/*0コマ目*/
0% {
	opacity: 0;
	top: 10px;
}
/*100コマ目*/
100% {
	opacity: 1;
	top: 0px;
}
}
/*contentsブロック*/
#contents {
	animation-duration: 0.5S;	/*アニメーションの実行時間。秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを、完了後は最後のキーフレームを維持する*/
	animation-name: contents;	/*上のアニメーション設定で使っているkeyframesの名前。contents。*/
	animation-delay: 0.5s;		/*アニメーションを遅れて開始させる指定。0.5sは0.5秒の事。*/
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
}
/*トップページのcontentsブロック*/
.home #contents {
	animation-delay: 5.5s;	/*アニメーションを遅れて開始させる指定の上書き。5.5sは5.5秒の事。アニメーションが終了した後、contentsを出力するまでの待機時間。*/
}
/*h2見出し*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	font-size: 30px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	line-height: 1.5;		/*行間をデフォルトから少し狭くする*/
	background: url(../images/bg_line2.png) repeat-x center bottom / auto 3px;	/*下線の背景画像の読み込み。X軸(横)にリピート、左右中央、下部に配置。幅はauto(自動)で高さを3pxにする。*/
	padding-bottom: 10px;
}
/*h3見出し*/
#contents h3 {
	clear: both;
	margin-bottom: 10px;	/*下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
	padding: 0 10px;		/*上下、左右へのブロック内の余白*/
}
/*段落タグ*/
#contents p {
	padding: 7px 20px 14px;		/*上、左右、下への余白*/
	font-size: 20px;		/*文字サイズ*/
	
}
/*段落タグが続いた場合の設定*/
#contents p + p {
	margin-top: 0px;
}



/*option1（productページのブロックの右上に斜めに配置している帯）
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;		/*幅*/
	position: absolute;
	right: 0px;		/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;			/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(93px,-45px);	/*45度回転。右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	background: #b30f0f;	/*背景色*/
	color: #fff;		/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広くとる*/
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅、0.15は色が15%出た状態の事。*/
}


/*box3指定（下のひよこ広告用）
---------------------------------------------------------------------------*/
.box3 {
	overflow: hidden;position: relative;
	width: 80%;				/*幅*/
	margin: 0 auto 40px;	/*上、左右、下へのボックスの外側の余白。左右にautoを指定すると中央配置になる。*/
	padding: 20px 40px;	/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	background: rgba(255,255,255,0.9);	/*背景色。0,0,0は黒の事で、0.9は色が90%ついた状態の事。*/
	color: #333333;		/*文字色*/
	text-align: center;
}

.box3 a {
	font-weight: bold;		/*太字にする*/
	color: #333333;		/*文字色*/
}

.box3 a:hover {
	color: #ff0000;
}

.box3 p {
	padding: 0 !important;
	line-height: 2;
}


/*box4指定（カウンター用ボックス）
---------------------------------------------------------------------------*/
.box4 {
	overflow: hidden;position: relative;
	width: 75%;				/*幅*/
	margin: 0 auto 40px;	/*上、左右、下へのボックスの外側の余白。左右にautoを指定すると中央配置になる。*/
	padding: 10px 40px;	/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
	background: #fff;		/*背景色。
	color: #545454;		/*文字色*/
}

/*----------------------------------------------------
  .count（あいさつうさぎまで含むテーブル）
----------------------------------------------------*/
.count {
	table-layout: fixed;
	width: 60%;
	margin: 0 auto 0px;
	border: 0px solid #ffd700;		/*上の線の幅、線種、色*/
}
.count th  { width: 100px; text-align: center;}
.count td  { width: 100%; text-align: center;}

 

/*----------------------------------------------------
  .sumaho（テーブル枠無しのスマホ対応）カウンター部分
----------------------------------------------------*/
.sumaho {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 0px;
	border: 0px solid #ffd700;		/*上の線の幅、線種、色*/
}
.sumaho th  { width: 50%; text-align: center;}
.sumaho td  { width: 50%; text-align: center;}
 
/*----------------------------------------------------
  .hiyoko（ひよこ広告テーブル）
----------------------------------------------------*/
.hiyoko {
	table-layout: fixed;
	width: 60%;
	margin: 0 auto 30px;
	border: 0px solid #ffd700;		/*上の線の幅、線種、色*/
}
.hiyoko th  { width: 100px; text-align: center;}
.hiyoko td  { width: 100%; text-align: center;}


/*list2ブロック（ＢＯＸを横並びにするための設定）
---------------------------------------------------------------------------*/
/*list2ブロック全体を囲むブロック*/
.list2-container {
	width: 80%;				/*幅*/
	margin: 0 auto 40px;	/*上、左右、下へのボックスの外側の余白。左右にautoを指定すると中央配置になる。*/
	display: flex;			/*flexボックスを使う指定*/
	flex-wrap: wrap;			/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: row;			/*子要素を横並びにする*/
}

/*「２カラムタイプ」のlistボックス。１個あたりのボックスの指定です。*/
.list2-container .list2{
	width: 46%;	/*ボックスの幅*/
}


/*１個あたりのボックス設定*/
.list2-container .list2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;		/*子要素を縦並びにする*/
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	margin: 0 0px 40px;		/*上、左右、下へ空けるスペース*/
	background: rgba(204,0,0,0.7);	/*背景色。0,0,0は黒の事で、0.7は色が70%ついた状態の事。*/
	padding: 10px;				/*ボックス内の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.15は色が15%出た状態。*/
	border-radius: 20px;				/*角を丸くする指定*/
	overflow: hidden;				/*はみ出た要素を非表示にする。画像の角が飛び出ないようにする為の指定です。*/
	position: relative;		/*子要素でabsolute(絶対配置)を使うための指定*/
	color: #fff;
}



/*2023/01/19追記*/
.list2 div {
	flex: 1;
}

/*ボックス内のfigure画像*/
.list2 figure {
	margin: -10px -10px 0;	/*上の.list2で設定しているpadding分を相殺して画像をブロックいっぱいに出す*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	text-align: center;
	margin: 0;
	font-size: 1.2em;		/*文字サイズを120%に*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
	margin-bottom: 50px;	/*下に空けるスペース*/
}

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

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

.list2 a {
	font-weight: bold;		/*太字にする*/
}


.list2 a:hover {
	color: #ff4500;
	text-decoration: none;		/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	border: none;
}







/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*センタリング*/
	padding-bottom: 30px;
	color: #fff;	/*文字色*/
}
footer a {text-decoration: none;color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;}




/*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: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 50px;		/*下から50pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;		/*文字色*/
	border-radius: 50%;		/*円形にする指定。この行削除すれば正方形になります。*/
	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;	/*背景色*/
}



/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 42px;
}
ol {
	padding: 0 20px 20px 45px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #c3b5a2;background: rgba(0,0,0,0.1);padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #f16400 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 6.0vw;
	overflow:hidden;
}



/*box3指定（下の広告ひよこ用）
---------------------------------------------------------------------------*/
.box3 {
	padding: 10px 20px;	/*上下、左右へのボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ*/
	display:inline-block;		/*画像を横並びにする設定*/
}

.box3 img {
	width: 50px;		/* 画像の大きさ */
}

/*----------------------------------------------------
  .count（あいさつうさぎ含むテーブル）
----------------------------------------------------*/
.count {
	table-layout: fixed;
	width: 100%;
}
.count th  { width: 100px; text-align: center;}
.count td  { width: 100%; text-align: center;}



/*----------------------------------------------------
  .sumaho（テーブル枠無しのスマホ対応）カウンター部分
----------------------------------------------------*/
.sumaho { margin: 0 -10px; }
.sumaho th,td{
	width: 100%;
	display: block;
}

/*----------------------------------------------------
  .hiyoko（ひよこ広告テーブル）
----------------------------------------------------*/
.hiyoko {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	border: 0px solid #ffd700;		/*上の線の幅、線種、色*/
}
.hiyoko th  { width: 60px; text-align: center;}
.hiyoko td  { width: 100%; text-align: center;}


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

/*header
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo2 {
	width: 40%;	/*画像の幅*/
	margin: 0;
}

header {
	height: 300px;
	width: 90%;
}

#menubar {
	font-size: 100%;		/*文字サイズ*/	
}

#menubar li a {
	padding: 0px 5px;		/*上下、左右へのメニューの内側にとる余白*/
}

#contents h2 {
	font-size: 20px;		/*文字サイズ*/
}

/*list2ブロック（道の駅サンプルからコピー）
---------------------------------------------------------------------------*/
.list2-container {
	flex-direction: column;			/*子要素を縦並びにする*/
}

/*「２カラムタイプ」のlistボックス。１個あたりのボックスの指定です。*/
.list2-container .list2 {
	width: 95%;	/*ボックスの幅*/
}


/*１個あたりのボックス設定*/
.list2 {
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
}

.list2 h4 {
	font-size: 1.1em;		/*文字サイズを120%に*/
}



/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 20px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

}





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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 20px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	overflow:hidden;
}



/*inner
---------------------------------------------------------------------------*/
.inner {
	padding: 20px;			/*ボックス内の余白*/
	border-radius: 10px;	/*角丸のサイズ*/
}

/*contents
---------------------------------------------------------------------------*/
/*h2見出し*/
#contents h2 {
	font-size: 20px;
	letter-spacing: normal;
}
/*h3見出し*/
#contents h3 {
	font-size: 16px;
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}

}
