@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #FFF;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
/*
input,textarea,select {
	font-size: 1em;
}
*/
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #ff7f00;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 977px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 95px;	/*ブロックの高さ*/
	background: url(../images/header_bg.jpg) no-repeat right bottom;	/*背景画像の読み込み＆リピートしない＆右側下部に配置*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #ff7f00;			/*文字色*/
	text-align: right;		/*右寄せ*/
	font-weight: normal;
}
header h1 a {
	color: black;
	text-decoration: none;
}
header h1 a:hover {
	color: #FFF;
	text-decoration: none;
}

/*ロゴ画像の設定*/
header #logo {
	/*position: absolute;*/
	position: relative;
	left: 20px;	ヘッダーブロックに対して左から20pxの場所に配置
	/*top: 20px;	ヘッダーブロックに対して上から20pxの場所に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	border-top: 4px solid rgba(0,0,0,0);	/*上の線の幅、線種、色。rgbaはRGBカラー(0,0,0は黒)に透明度(0は0％の事、1で100%の事になります。)を追加しています。*/
	margin-left: 3px;
}
nav#menubar ul li a {
	color: #FFF;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	width: 323px;	/*メニュー幅162px*/
	text-align: center;
	padding: 5px 0px;
	background-color: #ff7f00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ff7f00), to(#ff962e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ff7f00, #ff962e);	/*同上*/
	background-image: linear-gradient(#ff7f00, #ff962e);
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background: #333;
	color: #FFF;
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	border-top: 4px solid #ff7f00;	/*上の線の幅、線種、色*/
}
nav#menubar ul li#current a {
	color: #ff7f00;	/*文字色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 977px;
	height: 500px;
	position: relative;
/*	background-image: url(../images/sesbe-top.jpg);*/
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*トップページのひとつめのスライドショー
---------------------------------------------------------------------------*/
/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  max-width  : 977px;
  height     : 500px;
/*  margin     : 5% auto;*/
  margin-top : 9%;
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 20s infinite;   /* 4画像 × 各5s = 20s */
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
  background-image : url(../images/top1.jpg);   /* 背景の画像を指定 */
}
.box .src2 {
  background-image : url(../images/top2.jpg);   /* 背景の画像を指定 */
  animation-delay  : 5s;
}
.box .src3 {
  background-image : url(../images/top3.jpg);   /* 背景の画像を指定 */
  animation-delay  : 10s;
}
.box .src4 {
  background-image : url(../images/top4.jpg);   /* 背景の画像を指定 */
  animation-delay  : 15s;
}

@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}

/* --- 前面の文字定義（サンプルのため変更してください） ----- */
.box .boxString{
  position   : absolute;
  display    : inline-block;
  padding    : 20px;
  background : rgba(0, 0, 0, 0);          /* 半透明の青 */
  color      : #fff;
  top        : 50%;                               /* 中央寄せ */
  left       : 50%;
  transform  : translate(-50%,-50%);
  z-index    : 11;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	padding-top: 0px;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左側に回り込み*/ /* デフォルトは左側でleft */
	width: 977px;	/*メインコンテンツ幅*/ /* デフォルトは700px */
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #2b2c2e;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#454746, #2b2c2e);	/*同上*/
	background-image: linear-gradient(#454746, #2b2c2e);			/*同上*/
	-webkit-
	-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom: 5px solid #ff7f00;	/*下側の線の幅、線種、色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	clear: both;
	font-size: 100%;
	padding: 4px 10px 4px 15px;	/*左から、上、右、下、左側への余白*/
	color: #ff7f00;	/*文字色*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
	border-bottom: 5px solid #ff7f00;	/*下側の線の幅、線種、色*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*右側に回り込み*/ /* デフォルトは右側でright */
	width: 260px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	color: #FFF;	/*文字色*/
	font-size: 100%;
	padding: 5px 40px 5px 10px;	/*左から、上、右、下、左への余白*/
	background-color: #ff7f00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg_mark.png), -webkit-gradient(linear, left top, left bottom, from(#ff7f00), to(#ff962e));	/*グラデーション*/
	background-image: url(../images/bg_mark.png), -webkit-linear-gradient(#ff7f00, #ff962e);	/*同上*/
	background-image: url(../images/bg_mark.png), linear-gradient(#ff7f00, #ff962e);
	background-repeat: no-repeat;
	background-position: 95% center;
	border-top: 1px solid #ffad5c;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #a55200;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #a55200;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #ffad5c;		/*左側の線の幅、線種、色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	padding-left:10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-bottom: 1px dashed #666;	/*下の線の幅、線種、色*/
	color: #FFF;		/*文字色*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 ul li a {
	background: transparent;
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background: #FFF;	/*背景色*/
	color: #ff7f00;		/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	color: #FFF;		/*文字色*/
	padding: 10px;		/*ボックス内の余白*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 a {
	color: #FFF;	/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;				/*文字色*/
	background-color: #f28900;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	text-align: left;
	width: 982px;
	margin: 0px auto;
	margin-bottom: 20px;
	overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
}
.footermenu ul {
	float: left;
	width: 22.7%;	/*１列あたりの幅*/
	height: 130px;	/*１列あたりの高さ。※メニュー量に応じて調整して下さい。*/
	border-right: 1px solid #ffa05a;	/*列ごとの右側に入る線の設定*/
	padding-left: 20px;	/*境界線との間にとるスペース*/
}
/*１つめのulタグにのみ左側に線を入れる設定*/
.footermenu ul:first-child {
	border-left: 1px solid #ffa05a;
}

/*menu内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	height: auto;	/*ボックスの高さ*/
	width: 930px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 23px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 0px 1em;
	border: 1px solid #CCC;
	position: relative;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 15px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #ff7f00;	/*文字色*/
	border-left: none;
	border-bottom: 2px dotted #ff7f00;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

/*コンセプトブロック（PC用設定）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.concept {
	height: autopx;	/*ボックスの高さ*/
	width: 930px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 23px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 0px 1em;
	border: 1px solid #CCC;
	position: relative;
}
/*ボックス内の段落タグ設定*/
#main section.concept p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 15px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.concept h4 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #ff7f00;	/*文字色*/
	border-left: none;
	border-bottom: 2px dotted #ff7f00;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.concept img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

/*menu内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 457px;
	padding: 10px;
}
.ta1 td img.wa{
	height: auto;
	width: 100%;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	background-color: #e5e5e5;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	color: #FFF;	/*文字色*/
	background-color: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポンブロック全体の設定*/
#coupon {
	width: 100%;
	position: relative;
}
#coupon img {
	width: 100%;
	height: auto;
}
/*クーポン内の説明文設定*/
#coupon p {
	font-size: 20px;
	position: absolute;
	height: 250px;	/*ボックスの高さ*/
	width: 270px;	/*ボックスの幅*/
	top: 50px;		/*couponブロックに対して上から50pxの位置に配置*/
	right: 50px;		/*couponブロックに対して右から50pxの位置に配置*/
	padding: 20px;
	background: rgba(0,0,0,0.7);
	color: #FFF;
}

/*FAQ・LINKページ
---------------------------------------------------------------------------*/
.faq {
	padding: 0px 15px;
}
.faq dt {
	color: #000;
	font-weight: bold;
}
.faq dd {
	border-bottom: 1px solid #CCC;
	overflow: hidden;
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*トップページスライドショー周囲のコンテンツ設定
---------------------------------------------------------------------------*/
#toppage {
	float: right;	/*左側に回り込み*/ /* デフォルトは左側でleft */
	width: 977px;	/*メインコンテンツ幅*/ /* デフォルトは700px */
	padding-bottom: 30px;
}
/*toppageコンテンツのh2タグの設定*/
#toppage h2 {
	background-color: #2b2c2e;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#454746, #2b2c2e);	/*同上*/
	background-image: linear-gradient(#454746, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom: 5px solid #ff7f00;	/*下側の線の幅、線種、色*/
}
/*toppageコンテンツのh3タグの設定*/
#toppage h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	clear: both;
	font-size: 100%;
	padding: 4px 10px 4px 15px;	/*左から、上、右、下、左側への余白*/
	color: #ff7f00;	/*文字色*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
	border-bottom: 5px solid #ff7f00;	/*下側の線の幅、線種、色*/
}
/*toppageコンテンツのh4タグの設定*/
#toppage h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
/*toppageコンテンツの段落タグ設定*/
#toppage p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em,
.mb15 {
	margin-bottom: 1em;
}
.pt15 {
	padding-top: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
img.fl {
	margin: 0px 10px 10px 0px;
	float: left;
}
img.fr {
	margin: 0px 0px 10px 10px;
	float: left;
}
img.wa {
	max-width: 100%;
	height: auto;
}
.square_btn{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: orange;/*ボタン色*/
    color: #FFF;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
}
.square_btn:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

/***その他のページ---------------------------------------------------------------------------*/
#other_page{}
#other_page h4{
	/*font-size:100%;*/
	font-weight:100;
	line-height:1.5em;
	vertical-align:top;
	margin:20px 0 0 0;
	color:#333333;
	border:solid #FF0066;
	/*text-indent:2px;*/
	padding-left:1em;
	border-width:0 0 0 5px;
}

/*ロゴ　＋　メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar1 {
	position: fixed;	/*ウィンドウに対して固定表示*/
	top: 0px;			/*上から0pxの場所に配置*/
	left: 0px;			/*左から0pxの場所に配置*/
	z-index: 20;
	width: 100%;
}
/*メニューブロック内にあるanimatemeブロック*/
#menubar1 .animateme {
	width: 100%;
	height: 70px;	/*高さ*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(rgba(0,0,0,0.8),#000 60%);/*グラデーション*/
}
/*メニューブロック内にあるロゴ画像*/
#menubar1 h1 img {
	height: 70px;	/*ロゴ画像の高さ。下の「#menubar ul li」の「line-height」の数字と合わせる。*/
	float: left;	/*左に回り込み*/
	padding: 0 50px;	/*上下、左右への余白*/
}
/*メニュー１個あたりの設定*/
#menubar1 ul li {
	float: left;	/*左に回り込み*/
	line-height: 70px;	/*行間。上の「#menubar h1 img」の「height」の数字と合わせる。*/
	margin-left: 3%;	/*左側に空けるスペース。*/
}
#menubar1 ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
	padding-bottom: 5px;	/*マウスオン時の下線との間にとるスペース*/
}
/*メニューのマウスオン時*/
#menubar1 ul li a:hover {
	border-bottom: 3px solid #9f1b3b;	/*下線の幅、線種、色*/
}
/*スマホ用メニューを表示させない*/
#menubar1-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar1_hdr {display: none;}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
	overflow: hidden;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header h1 {
	display: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 49%;
	border-top: 4px solid rgba(0,0,0,0);
	box-sizing: border-box;
}
nav#menubar ul li a {
	width: auto;
}

/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 3px;
}


/*現在表示中メニュー。current*/
/*nav#menubar ul li#current {
	box-sizing: border-box;
	border: 1px solid #ff7f00;
}*/

/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	border-top: 4px solid #ff7f00;	/*上の線の幅、線種、色*/
}
nav#menubar ul li#current a {
	color: #ff7f00;	/*文字色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
}

/*奇数番目のメニューの設定*/
nav#menubar li:nth-child(odd) {
	width: 49%;
	margin-left: 3px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
/*	background-image : url(../images/m-top.jpg);*/   /* 背景の画像を指定 */
}
#slide_image {
	height: auto;
	width: 100%;
	position: absolute;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	width: auto;
	box-sizing: border-box;
}
#main section.list figure img {
	height: auto;
	width: 100%;
}

/*コンセプトブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.concept {
	width: auto;
	box-sizing: border-box;
}
#main section.concept figure img {
	height: auto;
	width: 100%;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	width: auto;
}
.footermenu ul {
	width: 25%;
	padding-left: 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo img {
	/*width: 60%;	画面に対して60％の幅に（デフォルト設定）*/
	width: 90%;	/*画面に対して90％の幅に*/
	text-align: center;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 49%;
	border-top: 4px solid rgba(0,0,0,0);
	box-sizing: border-box;
}
nav#menubar ul li a {
	width: auto;
}

/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 3px;
}

/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	border-top: 4px solid #ff7f00;	/*上の線の幅、線種、色*/
}
nav#menubar ul li#current a {
	color: #ff7f00;	/*文字色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
}

/*奇数番目のメニューの設定*/
nav#menubar li:nth-child(odd) {
	width: 49%;
	margin-left: 3px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}
#main p {
	padding: 0;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	position: relative;
	height: auto;
	width: 100%;
/*	background-image : url(../images/m-top.jpg);*/   /* 背景の画像を指定 */
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*トップページのひとつめのスライドショー
---------------------------------------------------------------------------*/
/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  width      : 100%;
  height     : 500px;
  margin-top : 40%;
  overflow   : hidden;
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 50%;
  margin-left: -180%;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 20s infinite;   /* 4画像 × 各5s = 20s */
}


/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
  background-image : url(../images/top1.jpg);   /* 背景の画像を指定 */
  background-size:cover;
}
.box .src2 {
  background-image : url(../images/top2.jpg);   /* 背景の画像を指定 */
  animation-delay  : 5s;
}
.box .src3 {
  background-image : url(../images/top3.jpg);   /* 背景の画像を指定 */
  animation-delay  : 10s;
}
.box .src4 {
  background-image : url(../images/top4.jpg);   /* 背景の画像を指定 */
  animation-delay  : 15s;
}

@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}

/* --- 前面の文字定義（サンプルのため変更してください） ----- */
.box .boxString{
  position   : absolute;
  display    : inline-block;
  padding    : 20px;
  background : rgba(0, 0, 0, 0);          /* 半透明の青 */
  color      : #fff;
  top        : 60%;                               /* 中央寄せ */
  left       : 50%;
  transform  : translate(-50%,-50%);
  z-index    : 11;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	height: auto;
	width: 100%;
	margin: 0px 0px 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main section.list figure img {
	height: auto;
	width: 100%;
}

/*コンセプトブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.concept {
	height: auto;
	width: 100%;
	margin: 0px 0px 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main section.concept figure img {
	height: auto;
	width: 100%;
}

/*menu内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 0px;
	padding-bottom: 10px;
	text-align: left;
}
ul.navmenu li {
	display: inline;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#454746, #2b2c2e);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#454746, #2b2c2e);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#454746, #2b2c2e);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#454746, #2b2c2e);
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポン内の説明文設定*/
#coupon p {
	font-size: 14px;
	position: absolute;
	height: 100px;	/*ボックスの高さ*/
	width: 100%;	/*ボックスの幅*/
	top: 0px;		/*couponブロックに対して上から0pxの位置に配置*/
	left: 0px;		/*couponブロックに対して左から0pxの位置に配置*/
	padding: 10px;
	background: rgba(0,0,0,0.7);
	color: #FFF;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	width: auto;
}
.footermenu ul {
	width: 50%;
	padding-left: 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #ffa05a;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

}