@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #707070;	/*全体の文字色*/
	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: #707070;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #ffc999;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*トップページのメインイメージ
---------------------------------------------------------------------------*/
#mainimg {
	width: 100%;	/*画像の幅*/
	position: relative;
}
/*メインイメージ上の新作メニューバナー*/
#message {
	position: absolute;
	right: 3%;		/*#メインイメージに対して右から3%の場所に配置*/
	bottom: 40px;	/*#メインイメージに対して下から40pxの場所に配置*/
	background: #ccc;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.2);	/*背景色。255,255,255は白の事で0.2は20%色がついた状態の事。*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	width: auto;	/*バナーの幅*/
	padding: 1%;	/*バナー内の余白。一番外側のボーダーと、バナー画像との余白部分です。上のbackgroudが適用されます。*/
}

/*ヘッダー（左側のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff url(../images/header_bg.jpg) no-repeat center bottom / 100%;	/*背景色、背景画像の読み込み、リピートせず、中央、下側に配置。幅100%。*/
	width: 20%;	/*ヘッダー幅。イメージ的には左ブロック幅と考えて下さい。*/
	height: 100%;	/*高さ*/
	position: fixed;	/*画面に対して固定表示*/
	left: 5%;			/*ウィンドウに対して左から5%の場所に配置*/
	top: 0px;			/*ウィンドウに対して上から0pxの場所に配置*/
	border-top: 5px solid #ffc999;	/*上の線の幅、線種、色*/
	overflow: auto;	/*ブラウザの高さが狭いとヘッダーが途中で切れて見れなくなる事があるので、その場合にスクロールバーを出す設定*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.2は20%だけ色がついた状態の事。*/
}
/*ロゴ*/
header #logo {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。255,255,255は白の事で、0.9は90%色がついた状態の事。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。255,255,255は白の事で、0.9は90%色がついた状態の事。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
	font-size: 20px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	font-weight: bold;
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;	/*文字を中央よせ*/
	padding: 5px;		/*メニュー内の余白*/
	color: #ff9999;		/*文字色*/
}
#menubar li:nth-child(even) a {
	display:  block;text-decoration: none;
	text-align: center;	/*文字を中央よせ*/
	padding: 5px;		/*メニュー内の余白*/
	color: #88cfda;		/*文字色*/
}
/*説明表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-size: 9px;	/*文字サイズ*/
	font-weight:normal;
	color: #999;	/*文字色*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #ffc999;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*マウスオン時と、現在表示中メニューの飾り文字の設定*/
#menubar li a:hover span, #menubar li.current a span {
	color: #fff;
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents {
	overflow: hidden;
	padding: 50px 4% 100px 30%;	/*ボックス内の余白。上、右、下、左。*/
}
/*.bg1背景色*/
.bg1 {
	background: #FFFEF9;
} 
/*.bg2背景色*/
.bg2 {
	background: #FFF6F9;
} 
/*.bg3背景色*/
.bg3 {
	background: #ECFFFA;
} 
/*h2見出し*/
.contents h2 {
	clear: both;
	font-size: 40px;	/*文字サイズ*/
	margin-bottom: 40px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	line-height: 1.5;	/*行間*/
	color: #333;	/*文字色*/
	background: url(../images/line1.png) no-repeat center top/100%;	/*見出しの上に入っている装飾。*/
	padding-top: 50px;	/*見出しの上の装飾分、余白をとる*/
}
/*h2見出し内のspanタグ*/
.contents h2 span {
	display: block;
	font-family: Georgia, "Times New Roman", Times, "serif";
	font-style: italic;
	font-size: 15px;	/*文字サイズ*/
	color: #c79664;
}
/*h3見出し*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	text-align: center;		/*文字を中央に*/
	border: #707070 1px solid;
	border-radius: 30px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 0px 20px;		/*上下、左右への余白*/
}
/*段落タグ*/
.contents p {
	padding: 0 30px 20px;		/*上、左右、下への余白*/
}
/*段落タグが続いた場合の設定*/
.contents p + p {
	margin-top: -5px;	/*続いた段落タグを少し上に詰める設定*/
}
/*sectionが続いた場合の設定*/
.contents section + section {
	margin-top: 50px;
}

/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: minmax(100px, auto);
  grid-gap: 0.8em;
}

.list-item {
	background: ;
	overflow: auto;
	min-width: 0;
	padding: 1em;
	border-bottom: 1px solid #717171;
}

/*写真の設定*/
.list-item img {
	display: block;
	border-radius: 50%;		/*円形にする設定。30pxなどにすると角丸になります。この行を削除すればそのままの画像が表示されます。*/
	border: 3px #fff solid;
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
}
/*ボックス内のh4見出し*/
.list-item h4 {
	text-align: center;	/*文字をセンタリング*/
	border-bottom: 2px dotted #ffc999;	/*下線の幅、線種、色*/
	margin-bottom: 5px;	/*見出しの下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
}
.goods-price {
	text-align: center;
	font-size:15px;
	margin:0 0 8px 0;
}
/*ボックス内の段落タグ*/
.list-item p {
	padding: 0!important;
	line-height: 1.5;	/*行間を少し狭くする*/
}

/*inviewのスタイル
---------------------------------------------------------------------------*/
/*共通設定（待機中）*/
.up, .left, .right, .transform1, .transform2 {
	opacity: 0;		/*透明度（透明の状態）*/
}
/*共通設定（要素が見えたら実行するアクション）*/
.upstyle, .leftstyle, .rightstyle, .transform1style, .transform2style {
	opacity: 1;		/*透明度（色が100%出た状態）*/
	transition: 0.5s 0.5s;	/*0.5sはアニメーションの実行時間0.5秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*upスタイル。下から上にフェードインしてくるスタイル（待機中）*/
.up {
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle {
	bottom: 0px;	/*基準値まで戻す*/
}
/*leftスタイル。左からフェードインしてくるスタイル（待機中）*/
.left {
	left: -100px;	/*基準値より左に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle {
	left: 0px;		/*基準値まで戻す*/
}
/*rightスタイル。右からフェードインしてくるスタイル（待機中）*/
.right {
	right: -100px;	/*基準値より右に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle {
	right: 0px;		/*基準値まで戻す*/
}
/*transform1スタイル。その場で回転するスタイル（待機中）*/
.transform1 {
	transform: scaleX(0);	/*幅を0%でスタート*/
}
/*要素が見えたら実行するアクション*/
.transform1style {
	transform: scaleX(1);	/*幅を100%に戻す*/
}
/*transform2スタイル。倒れた状態から起き上がるスタイル（待機中）*/
.transform2 {
	transform: perspective(400px) rotateX(100deg);
}
/*要素が見えたら実行するアクション*/
.transform2style {
	transform: perspective(0px) rotateX(0deg);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*文字を右寄せ*/
	padding: 20px 80px;	/*上下、左右へのボックス内の余白*/
}
footer a {text-decoration: none;}
footer .pr {display: block;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 30px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	vertical-align: top;
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;	/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	z-index: 100;
	position: fixed;
	bottom: 20px;	/*ウィンドウの下から20pxの場所に配置*/
	right: 1%;		/*ウィンドウの右から1%の場所に配置*/
	background: #c79664;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #e5cbb3;
}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #C3C3C3;background: rgba(0,0,0,0.1);padding: 5px 10px;border-radius: 4px;}
.look2 {border: 1px solid #ddd; background: #FFF;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: #c79664 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 50px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

/*フレックスボックス
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.flexbox {
  display: flex;
  flex-wrap: wrap;
  padding: 0.4em;
  margin: 0 0 2em;
}

.flexbox > div {
  padding: 1em;
  flex: 1 0 300px;
  margin: 0.4em;
}
/*プロフィールリスト*/
ul.prf{
  font: 14px;
  padding: 10px 10px 20px;
  color: #707070;

  list-style: none;
}
ul.prf li{
  position: relative;
  line-height: 35px;
  padding-left: 20px;
  border-bottom: dotted 1px #ccc;
}
ul.prf li:before{
  content: "・";
  position: absolute;
  left: 0px;
  color: #c79664;
}

/* プロフィール用ボタン　*/
.btn-prf {
  display: inline-block;
  text-align: center;
  border: 1px solid #9ec34b;
  color: #9ec34b;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: .4s;
}

.btn-prf:hover {
  background-color: #9ec34b;
  border-color: #cbe585;
  color: #FFF;
}

/* トップページ用ボタン　*/
.btn-top {
  display: inline-block;
  width: auto;
　height: 50px;
  text-align: center;
  color: #fff;
  background-color: #9ec34b;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  transition: .2s;
}

.btn-top:hover {
  background-color: #cbe585;
  color: #fff;
}

.btn-f{
  display: inline-block;
  text-decoration: none;
  background: #3B5998;
  color: #FFF;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .4s;
}

.btn-f:hover{
	color: #fff;
    background: #668ad8;
}

.prf-img {
	display: block;
	border-radius: 20px;		/*円形にする設定。30pxなどにすると角丸になります。この行を削除すればそのままの画像が表示されます。*/
	border: 5px #fff solid;
	box-shadow: 3px 3px 6px #ddd;
}

/*アコーディオン
---------------------------------------------------------------------------*/
/*テキストエリア全体*/
.soudan-text{
    padding:0 30px 30px;
}
/*ボックス全体*/
.accbox {
	margin: 10px 0 15px;
    padding: 0;
}

/*ラベル*/
.accbox label {
    display: block;
    padding : 2px 12px;
    color: #ffba47;
    font-weight: bold;
    background: #fff2cc;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f0fe';
    font-family: 'Font Awesome 5 Free';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#ffe9a9;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
	background: #fff;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 10px 20px;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f146';
}

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

/*トップページのメインイメージ
---------------------------------------------------------------------------*/
/*メインイメージ上の新作メニューバナー*/
#message {
	width: auto;	/*バナーの幅*/
	padding:10px 15px;
	bottom: 10px;
}

/*ヘッダー（左側のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: none;
	width: 50%;
	height: auto;
	position: absolute;
	border-top: none;
	box-shadow: none;
}
/*ロゴ*/
header #logo {
	background: transparent;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 50;
	top: 0px;
	width: 100%;
	background: rgba(255,255,255,0.9);	/*背景色*/
	border-top: 1px solid #c79664;		/*上の線の幅、線種、色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*メニュー内の余白*/
	border-bottom: 1px solid #c79664;	/*下の線の幅、線種、色*/
	color: #c79664;	/*文字色*/
	font-size: 20px;
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: #B7B7B7;	/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

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

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents {
	padding: 150px 4% 100px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*コンテンツ（※トップページのみ）*/
.top .contents {
	padding: 50px 4% 100px 4%;	/*ボックス内の余白。上、右、下、左。*/
}

/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	width: 40%;			/*ボックスの幅*/
	margin: 0 5% 20px;	/*上、左右、下へのボックス内の余白*/
	height: 400px;		/*ボックスの高さ。*/
}
/*写真の右上にある金額*/
.list figure span {
	width: 70px;	/*幅*/
	line-height: 70px;	/*高さ*/
	font-size: 14px;	/*文字サイズ*/
}

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

}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
	line-height: 1.2;	/*行間*/
}

}



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

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

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents {
	padding: 20px 4% 50px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents {
	padding: 70px 4% 30px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*コンテンツ（※トップページのみ）*/
.top .contents {
	padding: 20px 4% 30px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*h2見出し*/
.contents h2 {
	font-size: 24px;	/*文字サイズ*/
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: normal;
	padding-top: 20px;	/*見出しの上の装飾分、余白をとる*/
}
/*h2見出し内のspanタグ*/
.contents h2 span {
	font-size: 10px;	/*文字サイズ*/
}
/*段落タグ*/
.contents p {
	padding: 0 0 20px;		/*上、左右、下への余白*/
}

/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
  display: flex;
  flex-wrap: wrap;
  padding: 0.4em;
  margin: 0 0 2em;
}

.list > div {
  padding: 1em;
  flex: 1 0 300px;
  margin: 0.4em;
}
.nokoshi{
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 20px;
	overflow:scroll;
}
/*写真の設定*/
.list figure img {
	float: left;	/*左に回り込み*/
	width: 30%;		/*写真の幅*/
}
/*写真の右上にある金額*/
.list figure span {
	width: 40px;	/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 10px;	/*文字サイズ*/
	left: 0px;	/*listブロックに対して左から0pxの場所に配置*/
	top: 0px;	/*listブロックに対して上から0pxの場所に配置*/
}
/*ボックス内のh4見出しと段落タグ*/
.list h4, .list p {
	text-align: left;	/*文字を左寄せ*/
	margin-left: 35%;	/*左に空けるスペース。上の写真の幅をみて調整して下さい。*/
}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
	margin-bottom: 8px;
}

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

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

}
