@charset "utf-8";
/*全体の設定
---------------------------------------------------------------------------*/
body {
  color: #333; /*全体の文字色*/
  background-color: #f7f7f7; /*背景色（古いブラウザだとここの色のみが出ます）*/
  margin: 0px;
  padding: 0px;
  font: 14px/1.8 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*文字サイズ/行間、フォントファミリー*/
}
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;
  vertical-align: bottom;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
img.hv:hover {
  opacity: 0.5;
  filter: alpha(opacity=50); /* Ie用 */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
img.grow {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
img.grow:hover {
  -webkit-transform: scale(1.03, 1.03);
  -moz-transform: scale(1.03, 1.03);
  -ms-transform: scale(1.03, 1.03);
  -o-transform: scale(1.03, 1.03);
  transform: scale(1.03, 1.03);
}
input, textarea, select {
  font-size: 1em;
}
form {
  margin: 0px;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
iframe {
  width: 100%;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #222; /*リンクテキストの色*/
}
a:hover {
  color: #FFCC00; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
  width: 970px; /*コンテナー幅*/
  margin: 0px auto;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  text-align: center;
  padding-top: 30px;
}
/*h1タグの設定*/
header h1 {
  font-size: 12px; /*文字サイズ*/
  line-height: 12px; /*行間*/
  font-weight: normal; /*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
  letter-spacing: 1px;
  margin-bottom: 20px;
}
header #logo img {
  width: 460px; /*ロゴ画像の幅*/
  height: auto;
  margin: 10px 0;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
  padding-left: 110px;
  margin: 20px 0;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
  float: left;
  margin: 0px 7px;
}
nav#menubar ul li a {
  height: 30px; /*ボタンの高さ*/
  width: 110px; /*ボタンの幅*/
  line-height: 30px; /*行間*/
  text-decoration: none;
  display: block;
  color: #B1930F; /*文字色*/
  font-size: 13px; /*文字サイズ*/
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover, nav#menubar ul li#current a {
  color: #DF6CBE; /*文字色*/
}
/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
  /* box-shadow */
  box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -moz-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
}
#mainimg img {
  width: 100%;
  height: auto;
}
/*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
  clear: left;
  width: 870px; /*コンテンツ幅*/
  padding: 50px 50px 0px; /*ボックス内の余白*/
  color: #333; /*文字色*/
}
#contents a {
  color: #DB8941;
  text-decoration: none;
}
#contents a:hover {
  color: #FFCC00;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
  width: 100%; /*メインコンテンツ幅*/
  padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
  clear: both;
  font-size: 100%;
  font-weight: normal;
  color: #A59177; /*文字色*/
  padding: 7px 15px; /*左から、上、右、下、左への余白*/
  border-bottom: #A59177 2px solid;
  margin: 10px 0;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
  clear: both;
  font-size: 100%;
  padding: 4px 20px; /*左から、上下、左右への余白*/
  border-bottom: 1px solid #A59177; /*枠線の幅、線種、色*/
  border-left: 5px solid #A59177; /*枠線の幅、線種、色*/
  color: #A59177;
}
/*mainコンテンツの段落タグ設定*/
#main p {
  padding: 0.5em 15px 1em; /*左から、上、左右、下への余白*/
}
#main .bn img {
  width: 100%;
  margin-top: 20px;
}
/*machine.html内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.machine {
  padding: 10px; /*ボックス内の余白*/
  margin-bottom: 5px; /*ボックスの下に空けるスペース*/
  position: relative;
  overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.machine p {
  padding: 10px;
  margin-left: 34%; /*左の写真とのバランスをとって設定*/
  margin-top: 15px;
  line-height: 2;
}
/*ボックス内の写真設定*/
#main section.machine figure img {
  float: left; /*画像を左へ回り込み*/
  background-color: #fff; /*画像の背景色。ここでは枠線と画像の間の色になります。*/
  padding: 5px; /*余白。ここに上の行で設定した背景色が出ます。*/
  border: 1px solid #CCC; /*枠線の幅、線種、色*/
  width: 30%; /*写真の幅*/
  height: auto; /*写真の高さ*/
  margin-top: 10px;
  margin-left: 10px;
  box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -moz-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
}
/*ボックス内のh4タグ設定*/
#main section.machine h4 {
  padding: 2px 0px 2px 10px; /*左から、上、右、下、左側への余白*/
  margin-left: 0; /*左の写真とのバランスをとって設定*/
  font-size: 100%;
  border-left: 5px solid #A59177; /*左側の線の幅、線種、色*/
  border-bottom: 1px solid #A59177; /*下側の線の幅、線種、色*/
  margin-bottom: 0.5em;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #A59177;
}
/*topページ2からむ　index.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .sepa {
  margin: 0px 10px;
}
/*左側ボックス*/
#main .sepa .left {
  float: left; /*左に回り込み*/
  width: 500px; /*幅*/
  padding-bottom: 15px;
}
/*右側ボックス*/
#main .sepa .right {
  width: 330px; /*幅*/
  float: right; /*右に回り込み*/
  padding-bottom: 15px;
  text-align: left;
}
#main .sepa .right a {
  color: #997F56;
  text-decoration: none;
}
#main .sepa .right a:hover {
  color: #FFCC00;
  text-decoration: none;
}
/*menuページ2からむ　menu.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .menu {
  margin: 0px 10px;
  border: 2px #A59177 solid;
  border-radius: 5px;
}
/*左側ボックス*/
#main .menu .left {
  float: left; /*左に回り込み*/
  width: 300px; /*幅*/
}
/*右側ボックス*/
#main .menu .right {
  width: 510px; /*幅*/
  float: right; /*右に回り込み*/
}
#main .menu .right p {
  padding: 10px 10px 10px 20px;
}
/*menuページ2からむ　menu.html
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.menu {
  padding: 10px; /*ボックス内の余白*/
  margin-bottom: 10px; /*ボックスの下に空けるスペース*/
  position: relative;
  overflow: hidden;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd');
  /*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
  /*Element must have a height (not auto)*/
  /*All filters must be placed together*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#dddddd')";
  /*Element must have a height (not auto)*/
  /*All filters must be placed together*/
  background-image: -moz-linear-gradient(top, #ffffff, #dddddd);
  background-image: -ms-linear-gradient(top, #ffffff, #dddddd);
  background-image: -o-linear-gradient(top, #ffffff, #dddddd);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#dddddd));
  background-image: -webkit-linear-gradient(top, #ffffff, #dddddd);
  background-image: linear-gradient(top, #ffffff, #dddddd);
  /*--IE9 DOES NOT SUPPORT CSS3 GRADIENT BACKGROUNDS--*/
}
/*ボックス内の写真設定*/
#main section.menu figure img {
  float: left; /*画像を左へ回り込み*/
  background-color: #fff; /*画像の背景色。ここでは枠線と画像の間の色になります。*/
  padding: 5px; /*余白。ここに上の行で設定した背景色が出ます。*/
  border: 1px solid #CCC; /*枠線の幅、線種、色*/
  width: 280px; /*写真の幅*/
  height: auto; /*写真の高さ*/
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -moz-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
}
/*ボックス内の写真設定*/
#main section.menu figure img.mt50 {
  float: left; /*画像を左へ回り込み*/
  background-color: #fff; /*画像の背景色。ここでは枠線と画像の間の色になります。*/
  padding: 5px; /*余白。ここに上の行で設定した背景色が出ます。*/
  border: 1px solid #CCC; /*枠線の幅、線種、色*/
  width: 280px; /*写真の幅*/
  height: auto; /*写真の高さ*/
  margin-bottom: 10px;
  margin-top: 65px;
  box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -moz-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
}
/*ボックス内のh4タグ設定*/
#main section.menu h4 {
  padding: 3px 0px 3px 15px; /*左から、上、右、下、左側への余白*/
  margin-left: 0; /*左の写真とのバランスをとって設定*/
  font-size: 120%;
  margin-bottom: 20px;
  margin-top: 5px;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 3px;
  font-weight: normal;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfc78a', endColorstr='#ad955a');
  /*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
  /*Element must have a height (not auto)*/
  /*All filters must be placed together*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#dfc78a', endColorstr = '#ad955a')";
  /*Element must have a height (not auto)*/
  /*All filters must be placed together*/
  background-image: -moz-linear-gradient(top, #dfc78a, #ad955a);
  background-image: -ms-linear-gradient(top, #dfc78a, #ad955a);
  background-image: -o-linear-gradient(top, #dfc78a, #ad955a);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#dfc78a), to(#ad955a));
  background-image: -webkit-linear-gradient(top, #dfc78a, #ad955a);
  background-image: linear-gradient(top, #dfc78a, #ad955a);
  /*--IE9 DOES NOT SUPPORT CSS3 GRADIENT BACKGROUNDS--*/
  /* box-shadow */
  box-shadow: rgba(51, 51, 51, 0.65098) 2px 2px 3px 0px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.65098) 2px 2px 3px 0px;
  -moz-box-shadow: rgba(51, 51, 51, 0.65098) 2px 2px 3px 0px;
}
#main section.menu h4.op {
  padding: 3px 0px 3px 15px; /*左から、上、右、下、左側への余白*/
  margin-left: 0; /*左の写真とのバランスをとって設定*/
  font-size: 120%;
  margin-bottom: 20px;
  margin-top: 5px;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 3px;
  font-weight: normal;
  background: rgb(222, 168, 34);
  background: -moz-linear-gradient(180deg, rgba(222, 168, 34, 1) 0%, rgba(244, 71, 31, 1) 17%, rgba(253, 29, 29, 1) 73%, rgba(252, 176, 69, 1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(222, 168, 34, 1) 0%, rgba(244, 71, 31, 1) 17%, rgba(253, 29, 29, 1) 73%, rgba(252, 176, 69, 1) 100%);
  background: linear-gradient(180deg, rgba(222, 168, 34, 1) 0%, rgba(244, 71, 31, 1) 17%, rgba(253, 29, 29, 1) 73%, rgba(252, 176, 69, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dea822", endColorstr="#fcb045", GradientType=1);
}
/*ボックス内のh4タグ設定*/
#main section.menu h5 {
  padding: 5px 0px 3px 15px; /*左から、上、右、下、左側への余白*/
  margin-left: 0; /*左の写真とのバランスをとって設定*/
  font-size: 100%;
  margin-bottom: 0.5em;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #3C74D8;
  border-radius: 3px;
  font-weight: normal;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4e4ff', endColorstr='#8ccaff');
  /*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
  /*Element must have a height (not auto)*/
  /*All filters must be placed together*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#d4e4ff', endColorstr = '#8ccaff')";
  /*Element must have a height (not auto)*/
  /*All filters must be placed together*/
  background-image: -moz-linear-gradient(top, #d4e4ff, #8ccaff);
  background-image: -ms-linear-gradient(top, #d4e4ff, #8ccaff);
  background-image: -o-linear-gradient(top, #d4e4ff, #8ccaff);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#d4e4ff), to(#8ccaff));
  background-image: -webkit-linear-gradient(top, #d4e4ff, #8ccaff);
  background-image: linear-gradient(top, #d4e4ff, #8ccaff);
  /*--IE9 DOES NOT SUPPORT CSS3 GRADIENT BACKGROUNDS--*/
  /* box-shadow */
  box-shadow: rgba(51, 51, 51, 0.65098) 2px 2px 3px 0px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.65098) 2px 2px 3px 0px;
  -moz-box-shadow: rgba(51, 51, 51, 0.65098) 2px 2px 3px 0px;
}
/*menuページ2からむ　menu.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .menuintro {
  margin: 0px 10px;
}
/*左側ボックス*/
#main .menuintro .left {
  float: left; /*左に回り込み*/
  width: 400px; /*幅*/
  margin-top: 10px;
}
/*右側ボックス*/
#main .menuintro .right {
  width: 400px; /*幅*/
  float: right; /*右に回り込み*/
  margin-top: 10px;
}
#main .menuintro .right p {
  padding: 0;
}
/*menuページ2からむ　menu.html
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.menuintro {
  padding: 10px; /*ボックス内の余白*/
  margin-bottom: 5px; /*ボックスの下に空けるスペース*/
  position: relative;
  overflow: hidden;
}
/*ボックス内の写真設定*/
#main section.menuintro figure img {
  float: left; /*画像を左へ回り込み*/
  background-color: #fff; /*画像の背景色。ここでは枠線と画像の間の色になります。*/
  padding: 5px; /*余白。ここに上の行で設定した背景色が出ます。*/
  border: 1px solid #CCC; /*枠線の幅、線種、色*/
  width: 388px; /*写真の幅*/
  height: auto; /*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.menuintro h4 {
  padding: 2px 0px 2px 10px; /*左から、上、右、下、左側への余白*/
  margin-left: 0; /*左の写真とのバランスをとって設定*/
  font-size: 100%;
  border-left: 5px solid #A59177; /*左側の線の幅、線種、色*/
  border-bottom: 1px solid #A59177; /*下側の線の幅、線種、色*/
  margin-bottom: 0.5em;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #A59177;
}
/*aboutページ2からむ　about.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .about {
  margin: 0px 10px;
}
/*左側ボックス*/
#main .about .left {
  float: left; /*左に回り込み*/
  width: 230px; /*幅*/
  margin-left: 10px;
}
/*右側ボックス*/
#main .about .right {
  width: 560px; /*幅*/
  float: right; /*右に回り込み*/
  padding-bottom: 15px;
}
#main .about .right p {
  padding: 10px 10px;
}
/*aboutページ2からむ　about.html
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.about {
  padding: 10px; /*ボックス内の余白*/
  margin-bottom: 5px; /*ボックスの下に空けるスペース*/
  position: relative;
  overflow: hidden;
}
/*ボックス内の写真設定*/
#main section.about figure img {
  float: left; /*画像を左へ回り込み*/
  background-color: #fff; /*画像の背景色。ここでは枠線と画像の間の色になります。*/
  padding: 5px; /*余白。ここに上の行で設定した背景色が出ます。*/
  border: 1px solid #CCC; /*枠線の幅、線種、色*/
  width: 100%; /*写真の幅*/
  height: auto; /*写真の高さ*/
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  -moz-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
}
/*ボックス内のh4タグ設定*/
#main section.about h4 {
  padding: 2px 0px 2px 10px; /*左から、上、右、下、左側への余白*/
  margin-left: 0; /*左の写真とのバランスをとって設定*/
  font-size: 100%;
  border-left: 5px solid #A59177; /*左側の線の幅、線種、色*/
  border-bottom: 1px solid #A59177; /*下側の線の幅、線種、色*/
  margin-bottom: 0.5em;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #A59177;
}
#main section.blog {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  height: auto;
  overflow: auto;
}
.scrollbar_none {
  height: 100px;
  overflow-y: auto;
}
.scrollbar_none::-webkit-scrollbar {
  display: none;
}
/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
  font-size: 10px; /*文字サイズ*/
  color: #FFF; /*文字色*/
  background: #A59177; /*背景色*/
  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);
}
dl.menudata {
  margin-bottom: 10px;
}
/*時間*/
dl.menudata dt {
  float: left;
  width: 120px;
  text-align: right;
  margin-right: 10px;
  color: #DF6CBE;
  line-height: 1.8;
  padding: 5px 0px;
  letter-spacing: 1px;
}
/*記事設定*/
dl.menudata dd {
  border-bottom: 1px solid #d2d2d2; /*下線の幅、線種、色*/
  padding: 5px 0px 5px 130px;
  line-height: 1.8;
  text-align: justify;
}
/*linkページ　link.html
---------------------------------------------------------------------------*/
dl.link {
  margin: 10px 10px 20px 10px;
}
/*時間*/
dl.link dt {
  float: left;
  width: 180px;
  text-align: center;
  margin-right: 10px;
  color: #CF4F14;
  line-height: 1.8;
  padding: 5px 0px;
}
/*記事設定*/
dl.link dd {
  border-bottom: 1px solid #d2d2d2; /*下線の幅、線種、色*/
  padding: 5px 0px 5px 190px;
  line-height: 1.8;
}
/*aboutページ　about.html
---------------------------------------------------------------------------*/
#main section.map {
  margin: 0 auto;
  margin-top: 10px;
  padding: 2px;
  margin-bottom: 10px; /*ボックス間のスペース*/
  border-radius: 5px; /*角丸のサイズ*/
  border: 1px solid #CCC; /*枠線の幅、線種、色*/
  background: #FFF;
  text-align: center;
}
dl.aboutdata {
  margin-top: 10px;
  margin-bottom: 10px;
}
/*時間*/
dl.aboutdata dt {
  float: left;
  width: 90px;
  text-align: right;
  color: #B1930F;
  line-height: 1.8;
  padding: 5px 0px;
  letter-spacing: 1px;
}
/*記事設定*/
dl.aboutdata dd {
  border-bottom: 1px solid #d2d2d2; /*下線の幅、線種、色*/
  padding: 5px 0px 5px 110px;
  line-height: 1.8;
}
/*SNS設定
---------------------------------------------------------------------------*/
section.snsbox {
  clear: both;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
  display: block;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  clear: both;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .pr {
  display: block;
  font-size: 80%;
}
footer a {
  text-decoration: none;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
  margin-bottom: 15px;
}
#new dl {
  padding-left: 10px;
}
/*日付設定*/
#new dt {
  font-weight: bold; /*太字にする設定。標準がいいならこの行削除。*/
  float: left;
  width: 8em;
  padding: 5px 0;
}
/*記事設定*/
#new dd {
  border-bottom: 1px solid #777; /*下線の幅、線種、色*/
  padding-left: 8em;
  padding: 5px 0;
}
#new dd img {
  vertical-align: middle;
}
/*PAGE TOP設定（オリジナル）
---------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 77%;
}
#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 100px;
  padding: 15px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
/*比較枠　machine.html
---------------------------------------------------------------------------*/
section.hikaku {
  margin: 0px 10px;
  float: left;
}
section.hikaku .mleft {
  margin: 0px 10px;
  width: 405px;
  float: left;
}
section.hikaku .mright {
  margin: 0px 10px;
  width: 405px;
  float: right;
}
/*比較テーブル
---------------------------------------------------------------------------*/
table.hikaku2 {
  margin: 0 auto;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
  border: 1px #999 solid;
  font-size: 12px;
}
table.hikaku2 th {
  text-align: center;
  padding: 5px;
  font-weight: normal;
  background: #A59177;
  white-space: nowrap;
  color: #FFF;
  border-bottom: 1px #999 solid;
  border-right: 1px #999 solid;
}
table.hikaku2 th.shr {
  padding: 5px;
  background: #F57329;
  text-align: center;
  color: #FFF;
  border: 1px #F57329 solid;
}
table.hikaku2 td {
  text-align: left;
  padding: 5px;
  background: #f7f7f7;
  border-bottom: 1px #999 solid;
  border-right: 1px #999 solid;
}
table.hikaku2 td.midashi {
  padding: 5px;
  background: #F4EFE9;
  text-align: center;
  width: 70px;
}
/*比較テーブル SHRのテーブル
---------------------------------------------------------------------------*/
table.shrt {
  margin: 0 auto;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  border: 1px #F57329 solid;
  font-size: 12px;
}
table.shrt th {
  text-align: center;
  padding: 5px;
  font-weight: normal;
  background: #A59177;
  white-space: nowrap;
  color: #FFF;
  border-bottom: 1px #F57329 solid;
  border-right: 1px #F57329 solid;
}
table.shrt th.shr {
  padding: 5px;
  background: #F57329;
  text-align: center;
  color: #FFF;
}
table.shrt td {
  text-align: left;
  padding: 5px;
  background: #f7f7f7;
  border-bottom: 1px #F57329 solid;
  border-right: 1px #F57329 solid;
}
table.shrt td.midashi {
  padding: 5px;
  background: #F4EFE9;
  text-align: center;
  width: 70px;
}
/*その他
---------------------------------------------------------------------------*/
.look {
  background: #333;
}
.mb15, .mb1em {
  margin-bottom: 15px;
}
.clear {
  clear: both;
}
.mb30 {
  margin-bottom: 30px !important;
}
ul.disc {
  padding: 0em 25px 1em;
  list-style: disc;
}
.color1 {
  color: #D05729;
}
.pr {
  font-size: 10px;
}
.btn {
  font-size: 13px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
figcaption {
  font-size: 11px;
}
img {
  max-width: 100%;
  height: auto;
}
.small {
  font-size: 80%;
}
.big130 {
  font-size: 130%;
}
.newicon {
  background: #F00;
  color: #FFF;
  font-size: 12px;
  line-height: 12px;
  padding: 0px 5px;
  border-radius: 2px;
  margin-left: 5px;
}
.newicon2 {
  margin-bottom: 20px;
  background: #F00;
  color: #FFF;
  font-size: 120%;
  line-height: 120%;
  padding: 10px;
  border-radius: 5px;
}
p.intro {
  padding: 10px;
}
p.bn {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.blinking {
  -webkit-animation: blink 0.6s ease-in-out infinite alternate;
  -moz-animation: blink 0.6s ease-in-out infinite alternate;
  animation: blink 0.6s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
#menubar_hdr {
  display: none;
}
/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:760px) {
  /*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
  #container {
    width: 96%;
  }
  /*上部のメインメニュー
---------------------------------------------------------------------------*/
  /*メニューブロック全体の設定*/
  nav#menubar ul {
    padding-left: 0px;
    width: 600px;
    margin: 0px auto;
    text-align: center;
  }
  /*メニュー１個ごとの設定*/
  nav#menubar ul li {
    float: left;
    margin: 0px 5px;
  }
  nav#menubar ul li a {
    height: 30px; /*ボタンの高さ*/
    width: 90px; /*ボタンの幅*/
    line-height: 30px; /*行間*/
    font-size: 11px; /*文字サイズ*/
    margin-bottom: 10px;
  }
  /*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
  #contents {
    width: auto;
    padding: 10px 10px 0px;
  }
  /*メインコンテンツ
---------------------------------------------------------------------------*/
  #main {
    width: auto;
  }
  /*topページ　index.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .sepa {
    margin: 0px;
  }
  /*左側ボックス*/
  #main .sepa .left {
    width: 57%;
  }
  /*右側ボックス*/
  #main .sepa .right {
    width: 40%;
  }
  /*menuページ　menu.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .menu {
    margin: 0px;
    border: 1px #A59177 solid;
    border-radius: 5px;
  }
  /*左側ボックス*/
  #main .menu .left {
    width: 45%;
  }
  /*右側ボックス*/
  #main .menu .right {
    width: 52%;
  }
  /*メニューページ*/
  dl.menudata {
    width: 100%;
    height: auto;
    margin: 5px 5px 0px;
  }
  dl.menudata dt {
    float: none;
    width: auto;
    text-align: left;
    padding-left: 10px;
  }
  dl.menudata dd {
    padding-left: 10px;
    margin-right: 10px;
  }
  /*menuページ　menu.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .menuintro {
    margin: 0px;
  }
  /*左側ボックス*/
  #main .menuintro .left {
    width: 47%;
  }
  /*右側ボックス*/
  #main .menuintro .right {
    width: 47%;
    margin-right: 10px;
  }
  /*aboutページ　about.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .about {
    margin: 0px;
  }
  /*左側ボックス*/
  #main .about .left {
    width: 35%;
  }
  /*右側ボックス*/
  #main .about .right {
    width: 60%;
  }
  /*マシン比較回りこみ
---------------------------------------------------------------------------*/
  section.hikaku .mleft {
    margin: 0 10px;
    width: 46%;
    height: auto;
    float: left;
  }
  section.hikaku .mright {
    margin: 0 10px;
    width: 46%;
    height: auto;
    float: right;
  }
  table.hikaku2 {
    font-size: 12px;
    width: 100%;
  }
  /*COUPONページ
---------------------------------------------------------------------------*/
  /*クーポンブロック全体の設定*/
  #coupon, #coupon img {
    width: 100%;
    height: auto;
  }
  /*クーポン内の説明文設定*/
  #coupon p {
    font-size: 16px;
    width: 100%;
    top: 35%;
    left: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /*その他
---------------------------------------------------------------------------*/
  /*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
  .textbr {
    display: block;
  }
  body.s-n #sub {
    display: none;
  }
}
/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px) {
  /*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  header {
    padding-top: 10px;
  }
  /*h1タグの設定*/
  header h1 {
    display: none;
  }
  /*ロゴ画像の設定*/
  header #logo img {
    width: 90%; /*ロゴ画像の幅*/
    height: auto;
  }
  /*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
  #container {
    width: 96%;
  }
  /*上部のメインメニュー
---------------------------------------------------------------------------*/
  /*メニューブロック全体の設定*/
  nav#menubar ul {
    padding-left: 0px;
    width: 300px;
    margin: 0px auto;
  }
  /*メニュー１個ごとの設定*/
  nav#menubar ul li {
    float: left;
    margin: 0px 5px;
  }
  nav#menubar ul li a {
    height: 30px; /*ボタンの高さ*/
    width: 90px; /*ボタンの幅*/
    line-height: 30px; /*行間*/
    font-size: 11px; /*文字サイズ*/
    margin-bottom: 10px;
  }
  /*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
  #contents {
    width: auto;
    padding: 10px 10px 0px;
  }
  /*メインコンテンツ
---------------------------------------------------------------------------*/
  #main {
    width: auto;
  }
  /*machine.html内の各ブロック
---------------------------------------------------------------------------*/
  /*各ボックスの設定*/
  #main section.machine {
    padding: 10px; /*ボックス内の余白*/
  }
  /*ボックス内の段落タグ設定*/
  #main section.machine p {
    margin-left: 0;
  }
  /*ボックス内の写真設定*/
  #main section.machine figure img {
    float: none;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: 10px;
  }
  /*ボックス内のh4タグ設定*/
  #main section.machine h4 {
    margin-left: 0; /*左の写真とのバランスをとって設定*/
  }
  /*topページ2からむ　index.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .sepa {
    margin: 0px;
  }
  /*PC環境で左右に分かれていたボックス*/
  #main .sepa .left, #main .sepa .right {
    float: none;
    width: auto;
  }
  #main .sepa .left figure {
    width: 100%;
    margin: 0px auto;
    text-align: center;
  }
  /*menuページ2からむ　menu.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .menu {
    margin: 0px;
    border: 1px #A59177 solid;
    border-radius: 5px;
  }
  /*PC環境で左右に分かれていたボックス*/
  #main .menu .left, #main .menu .right {
    float: none;
    width: auto;
  }
  /*menu.html内の各ブロック
---------------------------------------------------------------------------*/
  /*各ボックスの設定*/
  #main section.menu {
    padding: 10px; /*ボックス内の余白*/
  }
  /*ボックス内の段落タグ設定*/
  #main section.menu p {
    margin-left: 0;
  }
  /*ボックス内の写真設定*/
  #main section.menu figure img {
    float: none;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  #main section.menu figure img.mt50 {
    float: none; /*画像を左へ回り込み*/
    background-color: #fff; /*画像の背景色。ここでは枠線と画像の間の色になります。*/
    padding: 5px; /*余白。ここに上の行で設定した背景色が出ます。*/
    border: 1px solid #CCC; /*枠線の幅、線種、色*/
    width: 100%; /*写真の幅*/
    height: auto; /*写真の高さ*/
    margin-bottom: 10px;
    margin-top: 0;
    box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.168627) 0px 0px 5px 1px;
  }
  /*ボックス内のh4タグ設定*/
  #main section.menu h4 {
    margin-left: 0; /*左の写真とのバランスをとって設定*/
  }
  /*menuページ2からむ（上部イントロ部分）　menu.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .menuintro {
    margin: 0px;
  }
  /*PC環境で左右に分かれていたボックス*/
  #main .menuintro .left, #main .menuintro .right {
    float: none;
    width: auto;
  }
  /*menu.html内の各ブロック（上部イントロ部分）
---------------------------------------------------------------------------*/
  /*各ボックスの設定*/
  #main section.menuintro {
    padding: 10px; /*ボックス内の余白*/
  }
  /*ボックス内の段落タグ設定*/
  #main section.menuintro p {
    margin-left: 0;
  }
  /*ボックス内の写真設定*/
  #main section.menuintro figure img {
    float: none;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /*ボックス内のh4タグ設定*/
  #main section.menuintro h4 {
    margin-left: 0; /*左の写真とのバランスをとって設定*/
  }
  /*menuページ2からむ　menu.html
---------------------------------------------------------------------------*/
  /*写真とテーブルを囲むボックス*/
  #main .about {
    margin: 0px;
  }
  /*PC環境で左右に分かれていたボックス*/
  #main .about .left, #main .about .right {
    float: none;
    width: auto;
  }
  /*menu.html内の各ブロック
---------------------------------------------------------------------------*/
  /*各ボックスの設定*/
  #main section.about {
    padding: 10px; /*ボックス内の余白*/
  }
  /*ボックス内の段落タグ設定*/
  #main section.about p {
    margin-left: 0;
  }
  /*ボックス内の写真設定*/
  #main section.about figure img {
    float: none;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /*ボックス内のh4タグ設定*/
  #main section.about h4 {
    margin-left: 0; /*左の写真とのバランスをとって設定*/
  }
  /*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
  section#new h2.open {
    clear: both;
    font-size: 100%;
    font-weight: normal;
    color: #B1930F; /*文字色*/
    padding: 7px 10px; /*左から、上、右、下、左への余白*/
    border-bottom: #B1930F 2px solid;
    margin: 10px 0;
  }
  /*ブロック全体の設定*/
  #new dl {
    height: auto;
    margin: 0;
  }
  /*日付設定*/
  #new dt {
    float: none;
    width: auto;
  }
  /*記事設定*/
  #new dd {
    padding-left: 0;
  }
  /*各ページ　DL設定
---------------------------------------------------------------------------*/
  /*リンク集ページ*/
  dl.link {
    width: 100%;
    height: auto;
    margin: 5px 5px 0px;
  }
  dl.link dt {
    float: none;
    width: auto;
    text-align: left;
  }
  dl.link dd {
    padding-left: 0;
  }
  /*会社概要ページ*/
  dl.aboutdata {
    width: 100%;
    height: auto;
    margin: 5px 5px 0px;
  }
  dl.aboutdata dt {
    float: none;
    width: auto;
    text-align: left;
  }
  dl.aboutdata dd {
    padding-left: 0;
  }
  /*メニューページ*/
  dl.menudata {
    width: 100%;
    height: auto;
    margin: 5px 5px 0px;
  }
  dl.menudata dt {
    float: none;
    width: auto;
    text-align: left;
    padding-left: 10px;
  }
  dl.menudata dd {
    padding-left: 10px;
    margin-right: 10px;
  }
  /*テーブル１
---------------------------------------------------------------------------*/
  .ta1 {
    width: 100%;
  }
  /*テーブル内の右側*/
  .ta1 td {
    width: auto;
    padding: 2px;
  }
  /*テーブル内の左側の見出し部分*/
  .ta1 th {
    width: 100px;
    padding: 2px;
  }
  /*COUPONページ
---------------------------------------------------------------------------*/
  /*クーポンブロック全体の設定*/
  #coupon, #coupon img {
    width: 100%;
    height: auto;
  }
  /*クーポン内の説明文設定*/
  #coupon p {
    font-size: 12px;
    width: 100%;
    height: 120px;
    top: 35%;
    left: 0px;
    padding: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /*その他
---------------------------------------------------------------------------*/
  .textbr {
    display: block;
  }
  p.tate {
    width: 1em;
    height: 50px;
    writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
  }
  section.hikaku .mleft {
    margin: 0 10px;
    width: auto;
    float: none;
  }
  section.hikaku .mright {
    margin: 0 10px;
    width: auto;
    float: none;
  }
  table.hikaku2 {
    font-size: 12px;
  }
  /*<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;
  }
}