@charset "utf-8";
/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
@import url("slide.css");
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px; /*文字サイズ*/
  line-height: 1.7; /*行間*/
  color: #444; /*文字色*/
  background: #fff; /*背景色*/
  -webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form, select, textarea, input {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style-type: none;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
img.photo {
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  /*filter: drop-shadow(0px 0px 2px #000);*/
  -webkit-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
}
img.hv:hover {
  opacity: 0.5;
  filter: alpha(opacity=50); /* Ie用 */
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
iframe {
  width: 100%;
  border: none;
}
textarea {
  width: 100% !important;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
video {
  max-width: 100%;
}
p.inter {
  text-align: justify;
  text-justify: inter-ideograph;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #666;
  transition: 0.4s;
  text-decoration: none;
}
a:hover {
  color: #5ead00;
  text-decoration: none;
}
a.hv {
  transition: 0.4s;
}
a.hv:hover {
  opacity: 0.5;
  filter: alpha(opacity=50); /* Ie用 */
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.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;
  }
}
/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  position: fixed; /*ヘッダーを上部に固定する指定*/
  z-index: 1;
  left: 0px; /*左からの配置場所の指定*/
  top: 0px; /*上からの配置場所の指定*/
  width: 100%; /*幅*/
  background: rgba(237, 122, 47, 0.9); /*背景色*/
  font-size: 13px; /*文字サイズ*/
  height: 50px; /*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
  margin: 10px 0 0 20px;
  height: 30px; /*高さ。上のheaderのheightと合わせる。*/
  float: left; /*左に回り込み*/
  /*background: #5ead00;*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
  margin-left: 30px;
  float: left;
}
/*メニュー１個あたりの指定*/
#menubar li {
  float: left;
  letter-spacing: 0.1em;
}
#menubar li a, .ddmenu-title {
  display: block;
  text-decoration: none;
  color: #fff; /*文字色*/
  padding: 0px 20px; /*上下、左右へのメニュー内の余白*/
  line-height: 50px; /*行間。headerのheightと数字を合わせる。*/
}
/*マウスオン時の背景色*/
#menubar li a:hover {
  background: none !important;
  color: #ff0;
}
/*#menubar li a:hover {
  background: #5ead00 !important;
}*/
/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
  padding-left: 40px; /*アイコン分の余白を確保*/
  background: url(../images/arrow1.png) no-repeat 10px center / auto 25px; /*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}
/*小さい端末用メニューを非表示にする*/
#menubar-s, #menubar-s2 {
  display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
  display: none;
}
/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
  position: absolute;
  visibility: hidden;
  z-index: 10;
  width: auto;
  margin-left: -40px; /*.ddmenu-titleのpadding-leftと数字を合わせてマイナス記号をつける。*/
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li {
  float: none;
}
#menubar ul.ddmenu li a {
  background: rgba(0, 0, 0, 0.5); /*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
  border: 1px solid rgba(255, 255, 255, 0.4); /*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
  border-top: none; /*上の線だけ消す*/
}
/*１つ目のメニューへの追加指定*/
#menubar ul.ddmenu li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.4); /*上の線の指定*/
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
  animation-name: opa1; /*keyframes.cssで使う@keyframesの指定*/
  animation-duration: 0.4S; /*アニメーションの実行時間。0.4秒。*/
  animation-fill-mode: both; /*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
  background: rgba(0, 0, 0, 0.2);
}
/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
  float: right; /*アイコンブロックを右に回り込み*/
  margin-right: 20px; /*右側に空けるスペース*/
}
/*アイコン１個あたりの設定*/
ul.icon li {
  display: inline-block; /*横並びにさせる指定*/
  padding-top: 10px; /*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
}
/*アイコン画像の設定*/
ul.icon img {
  width: 30px; /*画像の幅*/
  margin-right: 5px; /*画像同士の余白*/
}
#subimg {
  width: 100%;
  height: auto;
}
/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
  margin-top: 50px;
  /*padding: 3%;*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
  margin-top: 840px; /*スライドショーの高さに合わせて調整して下さい*/
}
/*h2タグ*/
#contents h2 {
  float: left;
  box-sizing: border-box;
  margin: 20px;
  font-size: 140%; /*文字サイズ*/
  /*background: #000;*/
  color: darkgoldenrod; /*文字色*/
  /*line-height: 50px;
  border-left: 50px solid #5ead00;
  padding-left: 30px;*/
}
/*h2タグ内のspanタグ*/
#contents h2 span {
  font-size: 80%; /*文字サイズ*/
  padding-left: 20px /*左に空ける余白*/
}
/*h3タグ*/
#contents h3 {
  clear: both;
  margin-bottom: 5px;
  font-size: 120%; /*文字サイズ*/
  /*border-bottom: 2px solid #ccc;*/
  padding-left: 20px; /*左に空ける余白*/
  color: cornflowerblue;
}
#contents h3.noul {
  border-bottom: none; /*下の線の幅、線種、色*/
}
#contents h4 {
  clear: both;
  margin-bottom: 20px; /*下に空けるスペース*/
  font-size: 120%; /*文字サイズ*/
  padding-left: 20px;
  color: darkgoldenrod;
  border-bottom: 1px solid darkgoldenrod;
}
/*段落タグ設定*/
#contents p {
  padding: 0px 20px 20px; /*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
  margin-top: -5px;
}
#contents h2 + p, #contents h3 + p {
  margin-top: -10px;
}
#contents section + section {
  margin-top: 30px;
}
.box {
  box-sizing: border-box;
  float: left;
  width: 100%;
  /*background: #000;
  background: rgba(0, 0, 0, 0.5);*/
  padding: 0 30px; /*ボックス内の余白*/
  margin-bottom: 30px; /*ボックスの下に空けるスペース*/
  /*border: 1px solid #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);*/
}
/*メニュー紹介の4ブロック
---------------------------------------------------------------------------*/
.boxmenu {
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  float: left;
  width: 100%;
  /*background: #000;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;*/
  margin-bottom: 30px; /*ボックスの下に空けるスペース*/
  /*border: 1px solid #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);*/
}
section.minibox3 {
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 2px;
  position: relative;
  width: 32%;
  height: auto;
  float: left;
  margin-left: 0.9%;
  /*border: 1px solid #eee;*/
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
}
section.minibox3 h4 {
  padding: 10px 0 !important;
  font-size: 140%;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin-bottom: 5px !important;
  letter-spacing: 1px !important;
  font-family: 'Merriweather', serif;
  font-style: italic;
}
section.minibox3 p {
  width: auto;
  margin: 5px;
  padding: 0 !important;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
section.minibox3 figure img {
  float: none;
  width: 100%;
  margin: 0;
  border: none;
}
section.minibox4 {
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 2px;
  position: relative;
  width: 32%;
  height: auto;
  float: left;
  margin-left: 0.9%;
  /*border: 1px solid #eee;*/
  border-radius: 3px;
  background: rgba(218, 165, 32, 0.9);
  -webkit-box-shadow: 0px 3px 5px -2px rgba(218, 165, 32, 0.9);
  -moz-box-shadow: 0px 3px 5px -2px rgba(218, 165, 32, 0.9);
  box-shadow: 0px 3px 5px -2px rgba(218, 165, 32, 0.9);
}
section.minibox4 h4 {
  padding: 10px 0 !important;
  font-size: 140%;
  line-height: 1.2;
  text-align: center;
  color: #fff !important;
  margin-bottom: 5px !important;
  letter-spacing: 1px !important;
  font-family: 'Merriweather', serif;
  font-style: italic;
}
section.minibox4 p {
  width: auto;
  margin: 5px;
  padding: 0 !important;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
section.minibox4 figure img {
  float: none;
  width: 100%;
  margin: 0;
  border: none;
}
.w23p {
  box-sizing: border-box;
  padding: 0 5px;
  width: 23%;
}
.w75p {
  box-sizing: border-box;
  padding: 0 5px;
  width: 75%;
}
.w50p {
  box-sizing: border-box;
  padding: 10px;
  width: 50%;
}
.w50pbg {
  box-sizing: border-box;
  padding: 10px;
  width: 50%;
  background: rgba(0, 0, 0, 0.03);
}
.bkbox {
  padding: 20px;
  background: #000;
  color: #fff;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.midle {
  display: table-cell;
  vertical-align: middle;
  justify-content: center;
}
.pdwaku {
  box-sizing: border-box;
  padding: 40px;
}
.bg1 {
  width: 50%;
  height: 300px;
  background-image: url("../photo/2_m.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.line {
  text-decoration: line-through;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  clear: both;
  text-align: center;
  font-size: 90%; /*文字サイズ*/
  color: #fff; /*文字色*/
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .pr {
  display: block;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  padding: 10px 0;
  clear: both;
  text-align: center;
  background: #000; /*背景色*/
  line-height: 1.4 !important;
}
#copyright a {
  text-decoration: none;
}
#copyright a:hover {
  color: #666;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
  padding: 0px 20px; /*上下、左右へのブロック内の余白*/
  margin-bottom: 20px; /*ブロックの下(外側)に空ける余白*/
  height: outo; /*高さ*/
  /*overflow: auto;*/
}
/*日付設定*/
#new dt {
  float: left;
  width: 9em;
  letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
  padding-left: 9em;
  text-align: justify;
  text-justify: inter-ideograph;
  /*border-bottom: 1px solid #ccc;*/
}
dl.sche {
  width: 100%;
  float: left;
  box-sizing: border-box;
  margin: 0;
  padding: 0 10px 20px 10px;
}
dl.sche dt {
  box-sizing: border-box;
  float: left;
  width: 210px;
  /*margin-bottom: 5px;*/
  /*padding: 5px 0;*/
  text-align: right;
  color: chocolate;
}
dl.sche dd {
  /*margin-bottom: 10px;*/
  padding: 0px 0px 0px 250px;
  text-align: left;
  text-align: justify;
  color: chocolate;
}
dl.sche dd.mb20 {
  margin-bottom: 20px;
  color: #333;
}
dl.mark {
  width: 100%;
  float: left;
  box-sizing: border-box;
  margin: 0;
  padding: 0 10px 20px 10px;
}
dl.mark dt {
  box-sizing: border-box;
  float: left;
  width: 13px;
  /*margin-bottom: 5px;*/
  /*padding: 5px 0;*/
  text-align: right;
}
dl.mark dd {
  /*margin-bottom: 10px;*/
  padding: 0px 0px 0px 30px;
  text-align: left;
  text-align: justify;
}
/*トップページ内「宣伝」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#sales dl {
  margin: 10px;
  padding: 20px; /*上下、左右へのブロック内の余白*/
  margin-bottom: 20px; /*ブロックの下(外側)に空ける余白*/
  height: 170px; /*高さ*/
  overflow: auto; /*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
  /*border: 1px solid #888;*/
  background: #f5f5f5;
  border-radius: 3px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.4) inset;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.4) inset;
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.4) inset;
}
/*日付設定*/
#sales dt {
  float: left;
  width: 130px;
  color: brown;
}
/*記事設定*/
#sales dd {
  margin-bottom: 10px;
  padding-left: 150px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  text-align: justify;
  text-justify: inter-ideograph;
}
/*予約・お問い合わせ*/
dl.contact {
  margin: 10px 20px 20px 20px;
  width: auto;
}
dl.contact dt {
  float: left;
  width: 180px;
  padding: 5px 0 5px 10px;
  text-align: right;
  font-weight: normal;
  letter-spacing: 1px;
  color: darkorange;
}
dl.contact dd {
  width: auto;
  padding: 5px 0 10px 220px;
  text-align: left;
}
dl.contact dd.uline {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc
}
dl.contact dd img {
  width: 200px;
  height: auto;
}
/*テーブルフォーム　送信枠
---------------------------------------------------------------------------*/
ul.action {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0;
  width: 230px;
  height: 40px;
  list-style-type: none;
  text-align: center;
}
ul.action li {
  margin: 0 20px 0 0;
  padding: 0;
  width: 105px;
  height: 40px;
  float: left;
  text-align: center;
}
ul.action li.nom {
  margin: 0;
}
/*pan
---------------------------------------------------------------------------*/
ul.pan {
  margin: 0 0 20px 20px;
  padding: 0;
  width: auto;
  list-style-type: none;
  text-align: center;
  display: inline-block;
  font-size: 90%;
}
ul.pan li {
  padding: 5px;
  width: auto;
  height: auto;
  float: left;
  text-align: center;
  border-radius: 5px;
}
ul.pan li.color {
  background: #f5deb3;
  border: 1px solid #f4a460;
}
ul.pan li.nom {
  margin: 0;
}
/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  width: auto;
  background: #F00;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  border-radius: 2px;
  margin-top: 10px;
  margin-right: 5px;
  margin-left: 0px;
  padding: 3px 5px;
  filter: drop-shadow(1px 1px 1px #000000);
  -webkit-filter: drop-shadow(1px 1px 1px #000000);
  -moz-filter: drop-shadow(1px 1px 1px #000000);
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
  display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 50px; /*幅*/
  line-height: 50px; /*高さ*/
  z-index: 1;
  position: fixed;
  bottom: 20px; /*下から20pxの場所に配置*/
  right: 3%; /*右から3%の場所に配置*/
  background: #666; /*背景色（古いブラウザ用）*/
  background: rgba(0, 0, 0, 0.6); /*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
  color: #fff; /*文字色*/
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  animation-name: opa1; /*keyframes.cssで使う@keyframesの指定*/
  animation-duration: 1S; /*アニメーションの実行時間*/
  animation-fill-mode: both; /*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
  background: #999; /*背景色*/
}
/*その他
---------------------------------------------------------------------------*/
.look {
  background: #222;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #333;
  color: #fff;
}
.mb15, .mb1em {
  margin-bottom: 15px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.clear {
  clear: both;
}
.color1, .color1 a {
  color: #5ead00 !important;
}
.colorred {
  color: red;
}
.colorblue {
  color: blue;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
.l {
  text-align: left;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.big1 {
  font-size: 40px;
}
.big2 {
  font-size: 120%;
}
.big3 {
  font-size: 150%;
}
.mini1 {
  font-size: 11px;
  display: inline-block;
  line-height: 1.5;
}
.dn {
  display: none;
}
.sh {
  display: none;
}
.tbr {
  display: none;
}
/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*スマホ用メニューブロック全体*/
  #menubar-s {
    display: block;
    overflow: auto;
    height: 100%;
    text-align: left;
    position: fixed;
    z-index: 100;
    top: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /*背景色*/
    border-top: 1px solid #fff; /*上の線の幅、線種、色*/
    animation-name: opa1; /*keyframes.cssで使う@keyframesの指定*/
    animation-duration: 0.5s; /*アニメーションの実行時間。0.5秒。*/
    animation-fill-mode: both; /*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
    font-size: 16px; /*文字サイズ*/
  }
  /*メニュー１個あたりの設定と、子メニューの見出し。*/
  #menubar-s ul li a, #menubar_hdr2 {
    display: block;
    text-decoration: none;
    padding: 10px 15px; /*上下、左右へのメニュー内の余白*/
    border-bottom: 1px solid #fff; /*下の線の幅、線種、色*/
    color: #fff; /*文字色*/
  }
  /*PC用メニューを非表示にする*/
  #menubar {
    display: none;
  }
  /*子メニュー
---------------------------------------------------------------------------*/
  /*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
  #menubar_hdr2 {
    padding-left: 35px;
  }
  /*子メニューメニューブロック全体*/
  #menubar-s2 {
    display: block;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.5); /*背景色*/
    border: 1px solid #666; /*上の線の幅、線種、色*/
    border-bottom: none; /*下の線のみ消す*/
  }
  /*「＞」アイコン設定*/
  #menubar_hdr2.close {
    background: url(../images/arrow2.png) no-repeat 10px 14px / 18px;
  }
  /*「＾」アイコン設定*/
  #menubar_hdr2.open {
    background: url(../images/arrow3.png) no-repeat 10px 14px / auto 18px;
  }
  /*子メニュー１個あたりの設定*/
  #menubar-s2 li a {
    color: #fff !important; /*文字色*/
    padding: 5px; /*余白*/
    border-bottom: 1px solid #666 !important; /*下の線の幅、線種、色*/
  }
  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0px; /*上からの配置場所*/
    right: 0px; /*右からの配置場所*/
  }
  #menubar_text {
    display: block;
    position: absolute;
    z-index: 111;
    top: 0px; /*上からの配置場所*/
    right: 0px; /*右からの配置場所*/
  }
  /*アイコン共通設定*/
  #menubar_hdr.close, #menubar_hdr.open {
    width: 50px; /*幅*/
    height: 50px; /*高さ*/
  }
  /*三本バーアイコン*/
  #menubar_hdr.close {
    background: url("../images/icon_menu_tx.png") no-repeat center top/50px; /*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
  }
  /*閉じるアイコン*/
  #menubar_hdr.open {
    background: url("../images/icon_menu_tx.png") no-repeat center bottom/50px; /*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
  }
  /*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
  /*アイコン全体を囲むブロック*/
  ul.icon {
    float: left; /*アイコンブロックを左に回り込み*/
    margin-left: 20px; /*左側に空けるスペース*/
  }
  .sh {
    display: block;
  }
  dl.sche {
    box-sizing: border-box;
    margin: 0;
    padding: 10px;
  }
  dl.sche dt {
    box-sizing: border-box;
    float: none;
    width: 100%;
    margin-bottom: 0px;
    padding: 5px 0 0 0;
    text-align: left;
    font-size: 140%;
    line-height: 1.2;
  }
  dl.sche dd {
    margin-bottom: 5px;
    padding: 0px 0px 5px 0px;
    text-align: left;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  /*予約・お問い合わせ*/
  dl.contact {
    margin: 0px;
    width: 100%;
  }
  dl.contact dt {
    float: none;
    width: 100%;
    padding: 5px 0 5px 0px;
    text-align: left;
    font-size: 120%;
    font-weight: normal;
    letter-spacing: 1px;
  }
  dl.contact dd {
    width: auto;
    padding: 5px 0 10px 0;
    text-align: left;
  }
}
/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px) {
  /*全体の設定
---------------------------------------------------------------------------*/
  body {
    font-size: 12px;
    font-size: 2.93vw;
  }
  /*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  header {
    height: 90px; /*ヘッダーの高さ*/
    background: rgba(237, 122, 47, 0.9); /*背景色*/
    text-align: center;
  }
  /*ロゴ画像*/
  header #logo img {
    margin: 10px 0;
    float: none; /*左に回り込み*/
  }
  /*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
  /*アイコン全体を囲むブロック*/
  ul.icon {
    float: none;
    margin: 0px;
  }
  /*アイコン１個あたりの設定*/
  ul.icon li {
    padding-top: 0px;
  }
  /*コンテンツ（contents）
---------------------------------------------------------------------------*/
  /*コンテンツブロック全体*/
  #contents {
    margin-top: 100px;
  }
  /*トップページのコンテンツへの追加指定*/
  .home #contents {
    margin-top: 400px; /*スライドショーの高さに合わせて調整して下さい*/
  }
  /*h2タグ*/
  #contents h2 {
    line-height: inherit;
    /*border-left: 5px solid #5ead00;
    padding-left: 10px;*/
  }
  /*h3タグ*/
  #contents h3 {
    padding-left: 15px; /*左に空ける余白*/
  }
  /*段落タグ設定*/
  #contents p {
    padding: 0px 15px 20px; /*上、左右、下への余白*/
  }
  .box {
    padding: 0 10px; /*ボックス内の余白*/
  }
  section.minibox3, section.minibox4 {
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 5px;
    position: relative;
    width: auto; /*compactタイプの幅*/
    height: auto; /*compactタイプの高さ*/
    float: none;
    margin-left: 0;
    border: 1px solid #ccc;
  }
  section.minibox3 h4, section.minibox4 h4 {
    font-size: 160%;
  }
  section.minibox3 p, section.minibox4 p {
    font-size: 16px;
  }
  .w23p, .w75p, .w50p, .w50pbg {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px 10px;
  }
  .fr {
    float: none;
  }
  .fl {
    float: none;
  }
  /*テーブル（ta1）
---------------------------------------------------------------------------*/
  /*ta1設定*/
  .ta1, .ta1 td, .ta1 th {
    padding: 5px; /*ボックス内の余白*/
  }
  /*ta1の左側ボックス*/
  .ta1 th {
    width: 100px;
  }
  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub, body.s-n #footermenu {
    display: none;
  }
  .big1 {
    font-size: 20px !important;
  }
  .pc {
    display: none;
  }
  .ws, .wl {
    width: 94%;
  }
  .fl {
    float: none;
  }
  .fr {
    float: none;
  }
  #new dt, #sales dt {
    float: none;
    width: 100%;
  }
  #new dd, #sales dd {
    padding-left: 0;
  }
}