@charset "utf-8";

/* boilerplateリセットcss */
/* =============================================================================
   HTML5 表示定義
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
/* =============================================================================
   ベース
   ========================================================================== */
/*
 * 1. 本文のフォントサイズの設定に em 単位を使用している場合、IE6/7 のテキストの正常でないサイズ変更を修正
 * 2. IE 以外での垂直スクロールバーの使用を強制
 * 3. ユーザーズームを無効にしないと、デバイス方向の変更で iOS テキストサイズが調整されないように修正 : h5bp.com/g
 */
html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { margin: 0; font-size: 15px; line-height: 1.231; }
body, button, input, select, textarea { font-family: sans-serif; color: #222; }
/* =============================================================================
   リンク
   ========================================================================== */
a { color: #fff;
	text-decoration:none
}
a:visited { color:#9CC; }
/*a:hover { color: #ffc347; }*/

/* すべてのブラウザーで、フォーカスの設定時およびホバー時の読みやすさを改善 : h5bp.com/h */
a:hover, a:active { outline: 0; }
a:hover{
		color:#9b243a;
		/*background-color:#ffc347;*/
}
/*.hover{
		color:#9b243a;
		background-color:#ffc347;
}*/

/* =============================================================================
   リスト
   ========================================================================== */
ul, ol { margin: 0; padding: 0; }
dd { margin: 0; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
li{
	list-style-type:none;
	list-style-position:inside;
}

/* =============================================================================
   埋め込まれたコンテンツ
   ========================================================================== */
/*Image Hover*/
a:hover img.hover,
span:hover img.hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )"; 
}
a:hover img{
  opacity: 0.5;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )"; 
}
/*本文内リンク箇所*/
p.link a{
	display:block;
	width:auto;
  background: url(../images/arrow_link_large.png) no-repeat left center;
  padding-left: 3.5em;
}
  
/*===========画像用追記===========*/
  
img, object, embed, video {
	max-width: 100%;
}
img{
    max-width: 100%;
    height: auto;
    width /***/:auto;　/*IE8のみ適用*/
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  display:block;}

img.auto {
  margin: 0 auto;
  display: block; }

img.full {
  width: 100%;
  height: auto; }

.fR {
  float: right;
  /*display: inline; */}

.fL {
  float: left;
  /*display: inline; */}

.clear {
  clear: both;
}

.taR {
  text-align: right !important; }

.taC {
  text-align: center !important; }

.taL {
  text-align: left !important; }

.vT {
  vertical-align: top !important; }

.vM {
  vertical-align: middle !important; }

.vB {
  vertical-align: bottom !important; }

.hidden {
  display: none; 
}
.mB30{
	margin-bottom:30px !important;
}
.mB60{
	margin-bottom:60px !important;
}
.mT60{
	margin-top:60px !important;
}
	
/*
 * IE9 で非表示にならないオーバーフローを修正
 */
svg:not(:root) { overflow: hidden; }
/* =============================================================================
   フォーム
   ========================================================================== */
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
/* “ラベル” が、関連付けられたフォームエレメントにフォーカスをシフトするように指定 */
label { cursor: pointer; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
/*
 * 1. FF3/4 に合わせて行の高さを標準に定義 (UA スタイルシートで !important を使用して設定)
 * 2. IE6/7 で正常に表示されない内部間隔を修正
 */
button, input { line-height: normal; *overflow: visible; }
/*
 * IE6/7 のオーバーラップとホワイトスペースの問題を回避するために “テーブル” の内部間隔を再導入
 */
table button, table input { *overflow: auto; }
/*
 * 1. クリック可能なフォームエレメントの手の形のカーソルを表示
 * 2. iOS のクリック可能なフォームエレメントのスタイル付けを許可
 */
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
/*
 * 一貫したボックスのサイズ変更および外観を保持
 */
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
/* 
 * FF3/4 の内部余白とボーダーを削除 :  h5bp.com/l 
 */
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
/* 
 * 1. IE6/7/8/9 のデフォルトの垂直スクロールバーを削除 
 * 2. 垂直のサイズ変更のみを許可
 */
textarea { overflow: auto; vertical-align: top; resize: vertical; }
/* フォームの有効期間のカラー */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }

/* フォームのプレースホルダーのカラー */
/*Webkit*/ 
::-webkit-input-placeholder{
	color: #563636;
	padding-left:1em;
} 
/*Firefox 19以降*/ 
::-moz-placeholder  {
	color: #563636;
	padding-left:1em;
} 
/*Firefox 18以前*/ 
:-moz-placeholder   {
	color: #563636;
	padding-left:1em;
} 
/*Windows IE*/ 
:-ms-input-placeholder  {
	color: #563636;
	padding-left:1em;
} 



/* =============================================================================
   テーブル
   ========================================================================== */
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
/* ==|== 非セマンティックヘルパークラス ========================================
   ========================================================================== */
/* スクリーンリーダーとブラウザーの両方で非表示 : h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }
/* 視覚的にのみ非表示にする。ただし、スクリーンリーダーでは使用できるようにする : h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* キーボードを介して移動されたエレメントをフォーカスできるようにするために .visuallyhidden クラスを拡張 : h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
/* スクリーンリーダーで視覚的に非表示 (ただし、レイアウトは保持) */
.invisible { visibility: hidden; }
/* フロートを含める : h5bp.com/q */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
/* ==|== スタイルを印刷 ======================================================= */
 @media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* 黒は速く印刷される : h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* イメージのリンクまたは javascript/内部リンクを表示しない */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}
/* =============================================================================
   リセット
   ========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
figure, figcaption, input,
article, section, nav, header, footer {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal; 
}

/*------body--------*/
/* YUI3 CSS Fonts フォントサイズ対応表
12px:77%     13px:85%     14px:93% 
15px:100%    16px:108%    17px:116%
18px:123.1%  19px:131%    20px:138.5%
21px:146.5%  22px:153.9%  23px:161.6%
24px:167%    25px:174%    26px:182%
27px:189%    28px:197%
*/
body {
	font-size:18px;
	line-height:1.6;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color:#421c1c;
	color:#fff;
	/*background-image:url(../images/bg.jpg);
	background-repeat:repeat;*/
}



/* モバイルレイアウト : 480 px およびそれ以下. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;
}
/*-------------------モバイルHEADER------------------*/

#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
/*----------header追加---------*/
#header {
	/*background-color:#9b243a;*/
	text-align:center;
}
/*
#header h1{
	display:none;
}*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}


#header img{
	margin:0 auto;
}
#header a:hover img{
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha( opacity=100 )"; 
}

/*-------モバイルCATCH-PHRASE---------*/

#header h2.catch-phrase{
	height:2em;
	line-height:2em;
	border-top:1px solid #c2894b;
	color:#fff;
	font-size: clamp(8px, 12.5px, 13px);
  white-space: nowrap;
}

/*-------------------モバイルNAVI------------------*/


#navi {
}

#navi ul {
	width: 100%;
}

#navi li {
	float: left;
	width: 25%;
	height:110px;
	background-image:url(../images/bg-nav.png);
	background-size:100% 100%;
}
#navi li:first-child {
	background-image:url(../images/bg-nav-first.png);
}
#navi li:last-child {
	background-image:url(../images/bg-nav-last.png);
}

#navi li a {
	display: block;
	width: 100%;
	height:50px;
	padding-top:10px;
	color: #fff;
	font-size:85%;
	text-align: center;
}

#navi li a span {
	display: block;
	color: #ffc347;
	text-transform: uppercase;
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1;
}
#navi li a:hover{
		color:#9b243a;
	background-image:url(../images/bg-nav-hover.png);
		background-size:100% 100%;
}
#navi li a:hover span {
		color:#9b243a;
}
/* -----------   カレントページ   ----------- */
#navi li a.current{
		color:#9b243a;
	background-image:url(../images/bg-nav-hover.png);
		background-size:100% 100%;
}
#navi li a.current span{
		color:#9b243a;
}


/*-----------javaでスクロール固定---------*/
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
		z-index:9999;
}
.fixedsub {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
		z-index:9998;
		/*background-color:#fff;*//*背景色白の場合*/
		/*border-top:5px solid #563636;*//*背景色白の場合*/
		/*border-bottom:5px solid #563636;*//*背景色白の場合*/
		background-color:#563636;
		border-top:2px solid #7f5e5e;
		/*background-image:url(../images/subnavi-bg.png);
		background-size:100% 100%;*/
}

/*-------------------モバイルRESPONSIVE-SLIDER---------*/

#responsive-slider {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	margin-bottom:30px;
}

#responsive-slider img{
	margin:0 auto;
	/*max-height:300px;*/
}


/*-------------------モバイルCONTENTS------------------*/
#contents {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	/*background-color:#fbfbf3;*//*背景色白の場合*/
}



/*------------------------------------------------*/

/*-----------mainbox--------------*/

#contents main{
	float:none;
	width:100%;
	margin-bottom:2em;
}

#contents main,
#contents main a{
	/*color:#251e1d;*//*背景色白の場合*/
}

#contents main section h2{
	font-size:138.5%;
	color:#fff;
	letter-spacing:0.5em;
	line-height:3em;
	/*text-indent:1em;*/
	background-color:#563636;
	margin-bottom:1em;
	border-radius:0.5em;
	text-align:center;
}
#contents main section h2 img.animation-icon{
	display:inline-block;
	height:30px;
	width:auto;
	vertical-align:middle;
}

#contents main section article{
	/*margin-top:1em;*/
	padding-bottom:1em;
	margin-bottom:2em;
	/*border-bottom:1px dotted #C2894b;*/
}

/*#contents main section article h1,
#contents main section article p{
	font-size:100%;
}*/


#contents main section article h3 {
	/*color:#f26161;*//*リンクのピンク*/
	color:#ffc347;
	font-size:116%;
	margin-bottom:1em;
	text-align:center;
	/*font-weight:bold;*/
	/*margin-bottom:0.5em;*/

	background-image:url(../images/bg-dot-orange.png);
	background-position:center;
	background-repeat:repeat-x;
}
#contents main section article h3 span.bg-basecolor{
	padding-left:1em;
	padding-right:1em;
	background-color:#421c1c;
}
	
#contents main section article p{
	margin-bottom:1em;
}

#contents main section article a:hover{
		color:#ffc347;
}

#contents main section article iframe{
	background-image:url(../icon/loading.gif);
	background-repeat:no-repeat;
	background-position:top center;
}
 


/*新着情報*/
	
/*.newsBlock figure {
	float:left;
	width:45%;
	margin-right:5%
}
.newsBlock figure img {
	width:100%;
}

.newsBlock .entryInfo{
	width:100%;
}
.newsBlock .entryInfo .categories {
		float: left; 
		margin-right: 1em; 
		
}
.newsBlock .entryInfo .categories ul {
		*zoom: 1; 
}
.newsBlock .entryInfo .categories ul li {
		float: left;
}
.newsBlock .entryInfo .categories ul li a {
	display:block;
		background-color: #c4744c;
		padding: 0 1em;
}
.newsBlock .entryInfo .categories ul li a:hover {
		color:#9b243a;
		background-color:#ffc347;
}
.newsBlock .entryInfo time {
		float: left;
		padding: 0 1em;
}
.newsBlock h1 a {
	line-height:2em;
	color:#ffc347;
}
.newsBlock h1 a:hover {
color:#9b243a;
}

.newsBlock .textbox{
	float:right;
	width:100%;
}
.newsBlock p.readmore {
	float:right;
}
.newsBlock p.readmore a {
	background: url(../images/arrow_link_21.png) no-repeat left center;
  padding-left:2em;	
}
.newsBlock p.readmore a:hover {
color:#9b243a;
		background-color:#ffc347;
}*/

/*ページ番号*/
/*.postNavi{
	text-align:center;
}
*/
/*-----404----*/
/*#contents #notFound404{
	background-color:#fff;
	height:300px;
	color:#251e1d;
}
#contents #notFound404 h1{
	text-indent:1em;
}
#contents #notFound404 section{
	padding-top:3em;
}
#contents #notFound404 section a{
	color:#f26161;
	font-weight:bold;
}*/

/*-----楽時屋とは----*/
.newsBlock p span.readTitle {
		background-color: #c4744c;
		padding:0.5em 1em;
}
.newsBlock p span.readSubTitle{
		background-color: #715a50;
		padding:1em;
}





/*-----コンタクト----*/
/*.newsBlock .contact h3 span.readTitle ,
.newsBlock .map h3 span.readTitle ,
.newsBlock .form h3 span.readTitle {
		background-color: #c4744c;
		padding:0 1em;
		font-size:85%;
		padding-top:0.3em;
		padding-bottom:0.3em;
}
.newsBlock .contact h4 span.readSubTitle{
		background-color: #715a50;
		padding:0 1em;
}
.newsBlock .contact, .newsBlock .map, .newsBlock .form{
	width:100%;
}
.newsBlock .contact{
	font-size:100%;
}
*/


/*------------------モバイル-backTOtop------------------*/
#backTOtop{
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#backTOtop{
	/*background-color:#563636;*/
	text-align:right;
	border-bottom:10px solid #563636;
}
#backTOtop p {
	float:right;
}
#backTOtop p a{
	display:block;
	/*width:8em;*/
  background: url(../images/arrow_circle_top.png) no-repeat left center;
  padding-left:2.5em;
	height:30px;
	line-height:30px;
	
}
#backTOtop p a:hover{
		color:#9b243a;
		background-color:#ffc347;
}

/*------------------モバイル-FOOTER------------------*/

#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#footer{
  /*position: relative;*/
	background-image:url(../images/bg-footer-sp.jpg);
	background-repeat:no-repeat;
	/*background-position:left top;*/	
/*	-moz-background-size:100% auto;
	-ms-background-size:100% auto;
	-o-background-size:100% auto;
	-webkit-background-size:100% auto;
	background-size:100% auto;*/
	/*background-position:top center;
	background-size: auto 100%;*/
	background-position:center center;
	background-size:cover;
}

#footer{
  /*padding-bottom:50%;*/
}

#footer nav{
	width:100%;
	margin-top:1em;
	margin-bottom:60px;
  overflow: hidden;
  height: auto;
}

#footer .footerBlock {
  width: 99%;
	border-bottom:1px solid #c2894b;
}

#footer .footerBlock h2{
	font-weight: bold;
/*  background: url(../images/arrow_link_large.png) no-repeat left center;
  padding-left: 3.5em;
*/	font-size:100%;
}
#footer .footerBlock h2 a{
	display:block;
	width:auto;
  background: url(../images/arrow_link_large.png) no-repeat left center;
  padding-left: 3.5em;
	height:3em;
	line-height:3em;
}

#footer .footerBlock ul li {
  vertical-align: bottom;
	width:100%;
}

#footer .footerBlock ul li a{
	display:block;
	width:auto;
  background: url(../images/arrow_link_large_onlyfooter.png) no-repeat left center;
  padding-left:3.5em;
	height:3em;
	line-height:3em;
	border-top:1px dotted #c2894b;
}

#footer h2 a:hover ,
#footer li a:hover{
		color:#9b243a;
		background-color:#ffc347;
}
#footer .footerBlock h2 a:hover ,
#footer .footerBlock li a:hover{
		color:#9b243a;
		background-color:#ffc347;
}

#footer p.copyRight{
	font-size:100%;
	text-align:center;
	margin-bottom:2em;
}

/*---------------------YouTube-------------------------*/
.youtube_wrap{
	width:100%;/*動画の幅を指定*/
	margin-left:auto;
	margin-right:auto;
}
.youtube_wrap .youtube{
	position:relative;
	width:100%;
	height:0;
	padding-top:56.25%;/*縦横比　１６：９*/
}
.youtube_wrap .youtube iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
@media only screen and (min-width: 769px) {
	.youtube_wrap{
		width:80%;/*動画の幅を指定*/
	}
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}
/*-------------------タブレットHEADER------------------*/
#header {
}

/*-------CATCH-PHRASE---------*/
#header h2.catch-phrase{
	font-size:100%;
}

/*-------------------タブレットNAVI------------------*/
#navi {
}
	#navi li a {
		font-size:100%;
	}

/*-------------------タブレットRESPONSIVE-SLIDER------------------*/


/*------------------タブレットbreadcrumbs-----------------*/


/*------------------タブレット-CONTENTS------------------*/



/*新着情報*/
/*.newsBlock figure {
	float:left;
	width:25%;
}
.newsBlock figure img {
	float:none;
	width:100%;
	margin:0;
}

.newsBlock .entryInfo{
	float:right;
	width:70%;
}
.newsBlock .textbox{
	float:right;
	width:70%;
}
.newsBlock h1 a {
	line-height:3em;
}*/

	
/*-------------------タブレットFOOTER------------------*/

#footer {
}

#footer .footerBlock {
	box-sizing:border-box;
  width: 25%;
	/*height:12em;*/
  float: left;
  /*margin-right: 10px;
	margin-bottom:2em;*/
  /*padding-left: 9px;*/
	border:none;
	/*border-radius:0;
	margin-bottom:0;*/
  /*border-left: 1px dotted #715a50;*/
}

#footer .footerBlock h2 {
  /*margin-bottom:0.5em;*/
/*  font-weight: bold;
  background: url(../images/footer_arrow.png) no-repeat 2px center;
  padding-left: 1.5em;
*/  border: none;
  /*font-size: 100%;*/
}
#footer .footerBlock h2 a{
	width:auto;
  padding-left: 3.5em;
}

#footer .footerBlock ul li {
  /*padding-left:3.5em;*/
  vertical-align: bottom;
	/*height:2em;
	line-height:2em;*/
}

#footer .footerBlock ul li a{
	border-top:none;
}

#footer p.copyRight{
	margin-top:10em;
}


}

@media only screen and (min-width: 768px) {
.newsBlock article div#flyer p{
    width:45%;
    margin-right:5%;
		float:left;
}


}


/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
}

/*-------------------デスクトップHEADER------------------*/

#header {
	text-align:left;
}

#header img{
	height:125px;
	float:left;
}

/*-------------------デスクトップCATCH-PHRASE-------------*/
#header h2.catch-phrase{
	float:left;
	width:60%;
	font-size:85%;
	/*padding-top:0.5em;*/
	padding-left:3em;
	/*padding-bottom:0.5em;*/
	border-top:none;
}



/*-------------------デスクトップNAVI------------------*/
#header #navi {
	float:right;
	width:78%;
}
/*--------スクロール固定------------*/
.fixed {
    position: fixed;
    top: 0;
    left: 50%;
		margin-left:-39%;
		z-index:9999;
}



/*------------デスクトップRESPONSIVE-SLIDER---------*/


/*-------------------デスクトップbreadcrumbs------------*/


/*------------------デスクトップ-CONTENTS---------*/

/*page.php用*/
.marginTop{
	margin-top:1em;
}





/*-------rightbox--------*/

/*#contents main{
	float:right;
	width:75%;
	margin:1em 0;
}
#contents main section h2{
	border:3px solid #715a50;
}*/

/*-----コンタクト----*/



/*------------------デスクトップ-FOOTER------------------*/

#footer{
	/*background-image:url(../images/bg-footer-pc.jpg);*/
  /*padding-bottom:10%;*/
}


}



/* GoogleNexus10対応　文字数のレイアウト崩れ : ～最大 1280 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 1281px) {
#header h2.catch-phrase{
	font-size:17px;
}
}



