@charset "utf-8";

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

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

body:before{
  content         : "";
  display         : block;
  position        : fixed;	/*固定配置*/
  top             : 0;		/*左上に固定*/
  left            : 0;
  z-index         : -1;
  width           : 100%;		/*画面全体を覆う*/
  height          : 100vh;
  background      : #cce5ff url(../images/BackNiji.jpg) center no-repeat;
  background-size : cover;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,textarea,input {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%;}

/*
#f81b84;ピンク
#f5ce28;黄
#43c0f6;青
#f2eee2;グレイ
#ef8630;オレンジ
#e9e847;黄
#78c257;緑
#2fb0e5;水色
#2855a6;青
#92278f;紫
transparent;
*/


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color      : #666;	/*リンクテキストの色*/
  color      : #000;	/*リンクテキストの色*/
  transition : 0.5s;	/*同上*/
}
a:hover {
  color           : #f35b7f;	/*マウスオン時の文字色*/
  text-decoration : none;		/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container（全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
  max-width : 1400px;	/*サイトの最大幅*/
  margin    : 0 auto;
  padding   : 0 4%;		/*上下、左右へのブロック内の余白*/
}

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  height   : 120px;		/*高さ*/
  position : relative;
}
/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	z-index: 1;
	width: 22%;	/*ロゴ画像の幅（※トップページ以外）*/
	position: absolute;
	left: 2%;	/*ヘッダーブロックに対して左から1%の場所に配置（※トップページ以外）*/
	bottom: 20px;	/*ヘッダーブロックに対して下から-30pxの場所に配置（※トップページ以外）*/
}


.imgArea {
  display    : inline-block;
  position   : relative;
  padding    : 0
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
  clear    : both;
  overflow : hidden;
  position : absolute;
  right    : 0%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
  bottom   : 0px;		/*ヘッダーブロックに対して下から0pxの場所に配置*/
  width    : 75%;		/*ブロック幅*/
}

/*メニュー１個あたりの設定*/
#menubar li {
  float        : left;	/*左に回り込み*/
  width        : 23.5%;	/*メニューの幅*/  padding-left : 1%;	/*メニューの左側に空ける余白（メニュー同士の余白）*/
}

#menubar li a {
  display         : block;
  text-decoration : none;
  text-align      : center;		/*文字を中央に*/
  //font-size       : 18px;		/*文字サイズ*/
  //color           : #000;		/*文字色*/
  //line-height     : 1.5;		/*行間*/
  margin          : 0 0 -10px 0;
  padding         : 15px 0 0 0;	/*上下、左右へのメニュー内の余白*/
}
/*マウスオン時、現在表示中(current)表示の設定（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a:hover, #menubar li.current a,
#menubar-s li a:hover, #menubar-s li.current a {
  //color       : #f81b84;	/*文字色*/
  //color       : #f35b7f;	/*文字色*/
  //font-size   : 16pt;		/* 文字サイズ */
  //font-weight : bold;		/* 太字 */
}

#menubar li a:hover{
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

/*装飾文字（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a span,
#menubar-s li a span {
	display: block;
	//text-shadow: none;
	//font-size: 10px;	/*文字サイズ*/
	//letter-spacing: 0.2em;	/*文字間隔を少し広く*/
	//color: #f5ce28;		/*文字色*/
	//color: #f81b84;		/*文字色*/
	//color: #f2eee2;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
//#menubar-s {
//	display: none;
//}
///*３本バーアイコンを表示させない*/
//#menubar_hdr {
//	display: none;
//}

/*コンテンツ（メイン、サブブロックを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
  clear: both;
  overflow: hidden;
  border-radius: 10px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
  background: #fff;	/*背景色*/
  padding: 3% 3% 3%;	/*ボックス内の余白。上、左右、下。*/
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
  box-shadow: 0px 0px 20px #fff;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
  overflow    : hidden;
  float       : left;	/*左に回り込み*/
  width       : 75%;	/*幅*/
  padding-top : 3%;		/*上に空ける余白*/
}

#message {
  padding: 0 25px;
}

/*メインコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	//background: #ffe5f2;
	background: #f35b7f;	/*背景色*/
	border-radius: 30px;	/*角丸のサイズ*/
	color: #f35b7f;			/*文字色*/
	color: #fff;			/*文字色*/
	position: relative;
	border: solid 2px #f35b7f;	/*線の線種、幅、色*/
}
/*装飾用画像の土台設定*/
#main h2::after, #main h3::after {
	display: block;
	position: absolute;
	right: 0px;	/*h2,h3タグに対して右から0pxの場所に配置*/
	top: -20px;	/*h2,h3タグに対して上から-20pxの場所に配置*/
}
/*装飾用画像（飛行機）*/
#main h2.bg1::after, #main h3.bg1::after {
	content: url(../images/bg1.png);
}
/*装飾用画像（木馬）*/
#main h2.bg2::after, #main h3.bg2::after {
	content: url(../images/bg2.png);
}
/*装飾用画像（列車）*/
#main h2.bg3::after, #main h3.bg3::after {
	content: url(../images/bg3.png);
}
/*装飾用画像が入った場合、テキストと画像が重ならないように右側に余白をとる設定*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3 {
	padding-right: 160px;
}
/*メインコンテンツのh3タグの設定*/
#main h3 a{
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	border: 2px solid #f35b7f;	/*線の幅、線種、色*/
	border-radius: 30px;	/*角丸のサイズ*/
	background: #fff;		/*背景色*/
	color: #f35b7f;			/*文字色*/
	position: relative;
	width: 50%;	/*幅*/
	background: #ffeff7;		/*背景色*/
	text-decoration : none !important;		/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

#main h3 a:hover {
  background: #fff;		/*背景色*/
  text-decoration : none;		/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

#main h3 {
	margin-left: 50px;
}

#main h4 {
	font-size: 18px;	/*文字サイズ*/
	border-bottom: 4px dotted #f35b7f;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	margin: 0 20px 10px;
	color: #f35b7f;		/*文字色*/
}

/*施設のご案内ページ用ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;
	overflow: hidden;
	margin: 0 2.5% 15px;	/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #FFF;		/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF, #f1f1f1);			/*背景色グラデーション*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 0.8%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;	/*写真の幅*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);	/*ボックスの影の設定。右へ、下へ、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 18px;	/*文字サイズ*/
	border-bottom: 4px dotted #f35b7f;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	margin-left: 35%;	/*左の画像とバランスをとって設定する*/
	color: #f35b7f;		/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 35%;	/*左の画像とバランスをとって設定する*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*幅*/
	padding-top: 3%;	/*上に空ける余白*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	text-align: center;		/*内容をセンタリング*/
	background: #43c0f6;/*青*/
	background: #f5ce28;/*黄*/
	background: #f81b84;/*ピンク*/
	background: #f35b7f;/*背景色*/
	color: #fff;			/*文字色*/
}

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

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

#sub img {
	padding: 5px 0;
}
#sub a img:hover{
  transform: rotateY( 360deg );
  transition-duration: 1s;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	//background: #f35b7f;	/*背景色*/
	//background: #43c0f6;/*青*/
	//background: #f2eee2;	/*グレイ*/
	//background: #fff;	/*グレイ*/
	color: #fff;	/*文字色*/
	color: #666;	/*文字色*/
	text-align: center;
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	border-radius: 0px 0px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 50px;
	margin-bottom: 20px;
	padding: 15px 0;
	padding: 10px 0;
}
footer a {
	color: #fff;
	color: #666;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
	color: #666;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	color: #f35b7f;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}

/*「広報誌バックナンバー」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#magazine dl {
	padding: 0 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#magazine dt {
	float: left;
	width: 0em;
	color: #f35b7f;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#magazine dd {
	padding-left: 0em;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
.faq {
	padding: 0 20px;
}
.faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #f35b7f;	/*文字色*/
}
.faq dd {
	padding-bottom: 15px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 95%;	/*テーブル幅*/
	margin: 0 auto 20px;
	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
}
.ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブル内側の線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*テーブルta1内にリストタグを入れた場合の設定*/
.ta1 td ul.disc {padding-bottom: 0;padding-left: 20px;}
.ta1 td ol {padding-bottom: 0;padding-left: 22px;}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
	margin-bottom: 10px;
	background: #f35b7f;	/*背景色*/
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;	/*背景色*/
	background: #f5ce28;
	color: #fff;		/*文字色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0 20px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #000;}
.color2, .color2 a {color: #f35b7f;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}


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


/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 150px;	/*高さ*/
}

#logo {
	width: 30%;	/*ロゴの幅（※トップページ以外）*/
	bottom: 70px;	/*ヘッダーブロックに対して下から-20pxの場所に配置（※トップページ以外）*/
}

#menubar {
  clear    : both;
  overflow : hidden;
  position : absolute;
  left     : 2px;
  right    : 0%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
  bottom   : 0px;		/*ヘッダーブロックに対して下から0pxの場所に配置*/
  width    : 100%;		/*ブロック幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li a {
	font-size: 15px;	/*文字サイズ*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	padding: 3% 0 0;	/*上、左右、下へのボックス内の余白*/
}
#sub {
  text-align : center;                     /* 文字位置 */
}


/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	width: 50%;		/*半分の幅にする*/
	float: left;	/*左に回り込み*/
}
/*偶数番目のメニューの左のラインを消す設定*/
#sub ul.submenu li:nth-child(even) a {
	border-left: none;
}

#sub img {
	width: 45%;
}

}

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

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}

}

@media screen and (max-width:700px){

header {
	height: 120px;	/*高さ*/
}
#logo {
	width: 30%;	/*ロゴの幅（※トップページ以外）*/
	top: 10px;	/*ヘッダーブロックに対して下から-20pxの場所に配置（※トップページ以外）*/
}

}

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

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	height: 110px;	/*高さ*/
}
/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	width: 30%;	/*ロゴの幅（※トップページ以外）*/
	top: 10px;	/*ヘッダーブロックに対して下から-20pxの場所に配置（※トップページ以外）*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*装飾用画像を非表示にする*/
#main h2.bg1::after, #main h3.bg1::after,
#main h2.bg2::after, #main h3.bg2::after,
#main h2.bg3::after, #main h3.bg3::after {
	content: url(none);
}
/*装飾用画像が入った場合、テキストと画像が重ならないように右側に入れていた余白をリセットする*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3 {
	padding-right: 20px;
}

}



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

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 90px;	/*高さ*/
}

#menubar-s li a {
	font-size: 15px;	/*文字サイズ*/
}

}



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

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

#menubar li a {
  margin          : 0 0 -7px 0;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツのh2とh3タグ*/
#main h2, #main h3 a{
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	padding: 5px 10px;
}
/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*施設のご案内ページ用ボックス
---------------------------------------------------------------------------*/
/*ボックス内のh4タグ設定*/
#main h4 {
	font-size: 14px;	/*文字サイズ*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	width: auto;
	float: none;
}
/*偶数番目のメニューの左のラインを戻す設定*/
#sub ul.submenu li:nth-child(even) a {
	border-left: 1px solid #dcdcdc;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub ul.submenu li a {
	padding: 10px;	/*メニュー内の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 10px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 30%;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
 	font-size: 14px;	/*文字サイズ*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}

}



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

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;	/*高さ*/
}

#logo {
	width: 30%;	/*ロゴの幅（※トップページ以外）*/
	top: 5px;	/*ヘッダーブロックに対して下から-20pxの場所に配置（※トップページ以外）*/
}

#menubar li a {
  margin          : 0 0 -7px 0;
}


}


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

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	height: 60px;	/*高さ*/
}

/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	width: 30%;		/*ロゴ画像の幅*/
	bottom: 30px;	/*ヘッダーブロックに対して下から-35pxの場所に配置（※トップページ以外）*/
}

#menubar li a {
  margin          : 0 0 -5px 0;
}

}
