@charset "utf-8";
/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #fff; /*全体の文字色*/
  font-family: "Noto Sans Japanese";
  font-size: 14px; /*文字サイズ*/
  line-height: 1.6; /*行間*/
  background: #000; /*背景色*/
  overflow-x: hidden;
  background-image: url(../images/bg.png);
  background-attachment: fixed;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
}
ul {
  list-style-type: none;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
textarea {
  width: 100% !important;
}
iframe {
  width: 100%;
  border: none !important;
}
/*写真装飾
---------------------------------------------------------------------------*/
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);
}
.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;
  }
}
.scrollbar_none {
  height: 100px;
  overflow-y: auto;
  -ms-overflow-style: none;
}
.scrollbar_none::-webkit-scrollbar {
  display: none;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #FFF; /*リンクテキストの色*/
  -webkit-transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
  transition: 0.5s; /*同上*/
  text-decoration: none;
}
a:hover {
  color: #FF0; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時にリンクの下線を消す設定*/
}
a.link {
  color: #FF0; /*リンクテキストの色*/
  text-decoration: none;
  font-weight: bold;
}
a.link:hover {
  color: #CC6633; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時にリンクの下線を消す設定*/
  -webkit-transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
  transition: 0.5s; /*同上*/
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  width: 100%; /*画面横一杯使う為に100%指定*/
  height: auto;
  background: rgba(0, 0, 0, 0.8); /*背景色（古いブラウザ用）*/
}
/*サイト幅にしたheader内のブロック*/
header #inner {
  position: relative;
  width: 1000px; /*幅*/
  height: 130px; /*高さ*/
  margin: 0 auto;
}
/*ロゴ画像*/
header #inner #logo img {
  width: 40%; /*画像幅*/
  position: absolute;
  left: 0px; /*header #innerに対して左から0pxの場所に配置*/
  top: 10px; /*header #innerに対して上から30pxの場所に配置*/
}
/*TEL*/
header #inner #tel {
  background: #222; /*背景色の設定。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
  color: #fff; /*文字色*/
  width: 400px; /*ボックス幅*/
  height: 85px;
  padding: 10px 0px;
  text-align: center; /*内容をセンタリング*/
  position: absolute;
  top: 10px;
  right: 0px;
  border-radius: 4px; /*角丸のサイズ*/
  font-size: 20px; /*文字サイズ*/
  letter-spacing: 0.2em; /*文字間隔を少し広くとる設定*/
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /*同上*/
  border: 1px solid #fff; /*枠線の幅、線種、色（古いブラウザ用）*/
  border: 1px solid rgba(255, 255, 255, 0.4); /*同上。rgbaは色設定で255,255,255は白。0.4が透明度。*/
  font-family: "Sawarabi Mincho";
}
#tel a {
  color: #FF0;
}
#tel a:hover {
  color: #FFF;
}
/*TELブロック内の小文字*/
#tel span {
  display: block;
  font-size: 14px; /*文字サイズ*/
  letter-spacing: 1px; /*文字間隔を少し広くとる設定*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
  width: 100%; /*画面幅いっぱいにとる設定*/
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  background: #990000; /* Old browsers */
  background: -moz-linear-gradient(top, #CC6600 0%, #990000 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #CC6600 0%, #990000 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #CC6600 0%, #990000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#CC6600', endColorstr='#990000', GradientType=0); /* IE6-9 */
  /* box-shadow */
  box-shadow: 0px 2px 3px 0px #000000;
  font-family: "Sawarabi Mincho";
}
/*サイト幅にしたmenu-box内のブロック*/
#menubar {
  width: 1000px; /*幅*/
  overflow: hidden;
  margin: 0 auto;
  border-left: 1px solid #ccc; /*左の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li, #menubar-s li {
  float: left; /*左に回り込み*/
  width: 25%; /*メニュー幅*/
  text-align: center; /*内容をセンタリング*/
}
#menubar li:first-child {
  margin-left: 0px; /*１つ目のメニューのmarginを0に。*/
}
#menubar a, #menubar-s a {
  display: block;
  text-decoration: none;
  font-size: 16px; /*文字サイズ*/
  letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
  padding: 10px 0px 0px; /*上、左右、下へのボックス内の余白*/
  color: #FFF; /*文字色*/
  border-right: 1px solid #ccc; /*右の線の幅、線種、色*/
}
/*飾り文字（小さな補足用テキスト）*/
#menubar span, #menubar-s span {
  display: block;
  font-size: 10px; /*文字サイズ*/
  color: #FFF; /*文字色*/
  margin: -5px 0px 0px; /*ボックスの外側にあけるスペース。上、左右、下。*/
  padding-bottom: 10px; /*下へのボックス内の余白*/
}
/*マウスオン時と、現在表示中*/
#menubar li a:hover, #menubar li.current a {
  background: #e4ba07; /*背景色*/
  color: #fff; /*文字色*/
}
#menubar a:hover span {
  color: #fff;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
  display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
  display: none;
}
/*コンテンツ（main、subを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
  clear: both;
  overflow: hidden;
  padding-top: 40px; /*上部メインメニューと左右ブロックとの余白*/
}
/*サイト幅にしたcontents内のブロック*/
#contents .inner {
  width: 1000px; /*幅*/
  margin: 0 auto;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
  float: right; /*右側に回り込み*/
  width: 740px; /*幅*/
  padding-bottom: 30px;
  padding-right: 3px;
}
/*１カラム時のメインコンテンツ設定*/
.c1 #main {
  float: none;
  width: auto;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
  box-sizing: border-box;
  clear: both;
  margin-bottom: 15px;
  font-size: 110%;
  color: #FFF; /*文字色*/
  padding: 8px 15px; /*上下、左右への余白*/
  background: rgba(153, 0, 0, 0.6); /*背景色（古いブラウザ用）*/
  border-radius: 2px; /*角丸のサイズ*/
  border: solid 1px #ccc; /*線の線種、幅、色*/
  font-weight: normal;
}
#main h2::first-letter {
  border-left: 3px solid #FF0; /*左側のアクセント用ラインの幅、線種、色*/
  padding-left: 10px;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
  box-sizing: border-box;
  clear: both;
  margin-bottom: 15px;
  font-size: 110%;
  padding: 7px 15px; /*上下、左右への余白*/
  background: rgba(119, 119, 119, 0.3); /*背景色*/
  border-radius: 4px; /*角丸のサイズ*/
  border: solid 1px #ccc; /*線の線種、幅、色*/
  font-weight: normal;
}
/*mainコンテンツの段落タグ設定*/
#main p {
  padding: 7px 15px 14px; /*上、左右、下への余白*/
}
#main p + p {
  padding-top: 0px;
}
#main h2 + p, #main h3 + p {
  padding-top: 0px;
  margin-top: -5px;
}
/*セパレートタイプ
---------------------------------------------------------------------------*/
/*ボックスの設定*/
section.sepa {
  box-sizing: border-box;
  margin-bottom: 10px; /*ボックス間のスペース*/
  position: relative;
  padding: 0 10px; /*ボックス内の余白*/
  float: left;
}
section.sepa .left {
  padding-top: 10px;
  width: 23%;
  height: auto;
  float: left;
  text-align: center;
}
section.sepa .right {
  margin-top: 10px;
  width: 75%;
  height: auto;
  float: right;
  padding: 0;
}
/*ボックス内の段落タグ設定*/
section.sepa p {
  width: auto;
  margin-bottom: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: justify;
  text-justify: inter-ideograph;
}
/*ボックス内のh4タグ設定*/
section.sepa h4 {
  font-size: 120%;
  font-weight: normal;
  background: rgba(153, 102, 51, 0.3);
  color: #fff; /*文字色*/
  margin-bottom: 10px;
  letter-spacing: 1px;
  margin-top: 0px;
  padding: 3px 10px;
  border-radius: 2px;
  border-left: 3px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-family: "Sawarabi Mincho";
  /* box-shadow */
  box-shadow: 2px 2px 2px 0px #000000;
  -moz-box-shadow: 2px 2px 2px 0px #000000;
  -webkit-box-shadow: 2px 2px 2px 0px #000000;
}
section.sepa figure img {
  box-sizing: border-box;
  padding: 3px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  width: 100%; /*写真の幅*/
  height: auto; /*写真の高さ*/
  border-radius: 3px;
  z-index: 1000;
}
section.map {
  clear: both;
  box-sizing: border-box;
  margin: 10px 0 20px 0;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  text-align: left;
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
  float: left; /*左に回り込み*/
  width: 220px; /*幅*/
  padding-left: 3px;
}
/*１カラム時のsubコンテンツ*/
.c1 #sub {
  display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
  clear: both;
  margin-bottom: 15px;
  font-size: 100%;
  color: #FFF; /*文字色*/
  padding: 8px 15px; /*上下、左右への余白*/
  background: rgba(153, 0, 0, 0.6); /*背景色（古いブラウザ用）*/
  border-radius: 2px; /*角丸のサイズ*/
  border: solid 1px #ccc; /*線の線種、幅、色*/
  font-weight: normal;
  font-size: 110%;
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
  border-left: 3px solid #FF0; /*左側のアクセント用ラインの幅、線種、色*/
  padding-left: 10px;
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
  margin-bottom: 15px; /*メニューブロックの下に空けるスペース*/
  border-top: solid 1px #e4e4e4; /*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
  border-bottom: solid 1px #e4e4e4; /*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
  text-decoration: none;
  display: block;
  padding: 10px 10px; /*メニュー内の余白。上下、左右への設定。*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
  padding: 5px; /*ボックス内の余白*/
  margin-bottom: 15px; /*ボックスの下に空けるスペース*/
  border: solid 1px #ccc; /*線の線種、幅、色*/
  border-radius: 2px; /*角丸のサイズ*/
  background: rgba(119, 119, 119, 0.3);
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
  margin-bottom: 0px;
}
/*PAGE TOP設定（オリジナル）
---------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 85%;
  font-weight: bold;
}
#page-top a {
  background: #990000;
  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: #990000;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  clear: both;
  padding: 10px 0;
  background: #000; /*背景色*/
  color: #fff; /*文字色*/
  font-size: 100%; /*文字サイズ*/
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .pr {
  display: block;
  font-size: 80%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューボックス全体*/
#footermenu {
  width: 1000px; /*幅*/
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0px;
}
/*１行分の設定*/
#footermenu ul {
  float: left; /*左に回り込み*/
  width: 18%; /*幅。今回は５列作ったのでここの幅18%と下のpaddingの2%でトータル20%になるよう設定。列に応じて調整して下さい。*/
  padding-left: 2%;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  text-align: center;
  background: #000; /*背景色*/
}
#copyright a {
  text-decoration: none;
}
/*各種DL設定
---------------------------------------------------------------------------*/
/*CDデータ*/
dl.st {
  margin: 0 0 20px 10px;
  padding: 0 10px;
}
dl.st dt {
  float: left;
  width: 30px;
  padding: 3px 0;
  text-align: right;
  color: #FF0;
}
dl.st dd {
  padding: 3px 0px 3px 40px;
}
dl.md {
  margin: 0 0 0 10px;
  padding: 0 10px;
}
dl.md dt {
  float: left;
  width: 90px;
  padding: 3px 0;
  text-align: right;
  color: #FF0;
}
dl.md dd {
  padding: 3px 0px 3px 100px;
}
dl.lg {
  margin: 0 0 0 10px;
  padding: 0 10px;
}
dl.lg dt {
  float: left;
  width: 140px;
  padding: 3px 0;
  text-align: right;
  color: #FF0;
}
dl.lg dd {
  padding: 3px 0px 3px 150px;
}
dl.prc {
  margin: 0 0 0 10px;
  padding: 0 10px;
  font-size: 120%;
  font-family: "Sawarabi Mincho";
}
dl.prc dt {
  float: left;
  width: 330px;
  padding: 3px 0;
  text-align: left;
  color: #FFF;
}
dl.prc dd {
  margin: 0 0 10px 0;
  padding: 3px 50px 3px 330px;
  text-align: right;
  color: #FF0;
}
/*リンク集*/
dl.links {
  margin: 10px 10px 20px 10px;
}
dl.links dt {
  float: left;
  width: 180px;
  padding: 5px 0px;
  text-align: right;
}
dl.links dd {
  padding: 5px 0px 5px 200px;
  text-align: justify;
  text-justify: inter-ideograph;
}
ul.btn {
  margin-bottom: 20px;
  overflow: hidden;
}
ul.btn li {
  margin-top: 0px;
  margin-right: 10px;
  float: left;
  width: 50%;
  width: calc((100% - 10px) / 2);
  width: -webkit-calc((100% - 10px) / 2);
  width: -moz-calc((100% - 10px) / 2);
}
@media all and (-ms-high-contrast:none) {
  #demo-wrap ul.column3 li {
    width: calc((100% - 11px) / 2);
  }
}
ul.btn li:last-child {
  margin-right: 0;
}
.pricebox {
  display: block;
}
.menuphoto {
  flex: 1;
  padding: 0 20px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
  padding-left: 15px;
  margin-bottom: 15px;
}
/*日付設定*/
#new dt {
  float: left;
  padding: 5px 0;
  width: 100px;
}
/*記事設定*/
#new dd {
  padding: 5px 0 5px 140px;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  background: #F00;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  border-radius: 2px;
  margin-right: 5px;
  margin-left: 7px;
  padding: 3px 5px;
  /* box-shadow */
  box-shadow: 1px 1px 1px 0px #000;
  -moz-box-shadow: 1px 1px 1px 0px #000;
  -webkit-box-shadow: 1px 1px 1px 0px #000;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.price {
  background: #F00;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 12px;
  border: 2px solid #990000;
  border-radius: 3px;
  padding: 5px;
  background-image: url(../images/bg_btn2.png);
  background-size: 100% 100%;
}
.price2 {
  background: #996600;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 12px;
  border: 2px solid #660000;
  border-radius: 3px;
  padding: 5px;
  background-image: url(../images/bg_btn2.png);
  background-size: 100% 100%;
}
.price3 {
  background: #66CC00;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 12px;
  border: 2px solid #005500;
  border-radius: 3px;
  padding: 5px;
  background-image: url(../images/bg_btn2.png);
  background-size: 100% 100%;
}
.price4 {
  background: #0099FF;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 12px;
  border: 2px solid #0000BB;
  border-radius: 3px;
  padding: 5px;
  background-image: url(../images/bg_btn2.png);
  background-size: 100% 100%;
}
.option1 {
  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, 10px);
  -ms-transform: rotate(-45deg) translate(37px, 10px);
  transform: rotate(-45deg) translate(37px, 10px);
}
h2 span.option1 {
  width: auto;
  padding: 0px 5px;
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  display: inline-block;
}
.option2 {
  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, 10px);
  -ms-transform: rotate(-45deg) translate(37px, 10px);
  transform: rotate(-45deg) translate(37px, 10px);
}
h2 span.option2 {
  width: auto;
  padding: 0px 5px;
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  display: inline-block;
}
/*画面右上キャンペーンパーツ
---------------------------------------------------------------------------*/
#campaign {
  width: 130px; /*画像幅*/
  position: absolute;
  right: 0px; /*画面全体に対して右から0pxの場所に配置*/
  top: 0px; /*画面全体に対して上から0pxの場所に配置*/
}
#campaign:hover {
  width: 140px; /*マウスオン時の画像幅*/
}
/*その他
---------------------------------------------------------------------------*/
.look {
  color: #fff;
  background: #666;
  padding: 5px;
  border-radius: 4px;
}
.mb15, .mb1em {
  margin-bottom: 15px;
}
.clear {
  clear: both;
}
ul.disc {
  padding: 0em 25px 1em;
  list-style: disc;
}
.color1 {
  color: #222;
}
.color2 {
  color: crimson;
}
.color3 {
  color: #ff0;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
.l {
  text-align: left;
}
img.fr {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
img.fl {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.big1 {
  font-size: 30px;
  letter-spacing: 0.2em;
}
.mini1 {
  font-size: 13px;
}
.sh {
  display: none;
}
/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
  /*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
  /*サイト幅にしたheader内のブロック*/
  header #inner {
    width: 100%;
    height: 100px;
    background: none;
    position: relative;
  }
  header #inner #logo img {
    width: 50%;
    position: absolute;
    left: 10px;
    top: 0px;
  }
  header #inner #tel {
    font-size: 14px;
    width: 290px;
    height: 60px;
    position: absolute;
    right: 10px;
    top: 5px;
  }
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*メニューブロックの設定*/
  #menu-box {
    box-sizing: border-box;
    border-top: 1px solid #ccc; /*下線の幅、線種、色*/
    border-left: 1px solid #ccc;
    border-bottom: none;
  }
  #menubar {
    width: auto;
    border: none;
  }
  /*メニュー１個あたりの設定*/
  #menubar li {
    width: 50%;
    margin: 0px;
    border-bottom: 1px solid #ccc;
  }
  #menubar a, #menubar-s a {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /*コンテンツ（main、subを囲むボックス）
---------------------------------------------------------------------------*/
  #contents {
    padding-top: 0px;
  }
  /*サイト幅にしたcontents内のブロック*/
  #contents .inner {
    width: auto;
    margin: 10px;
  }
  /*main,subコンテンツ
---------------------------------------------------------------------------*/
  #main, #sub {
    float: none;
    width: auto;
  }
  /*フッターメニュー
---------------------------------------------------------------------------*/
  /*ボックス全体*/
  #footermenu {
    width: 90%;
  }
  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub {
    display: none;
  }
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
  /*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
  /*サイト幅にしたheader内のブロック*/
  header #inner {
    height: 190px;
    text-align: center;
  }
  /*ロゴ画像*/
  header #inner #logo img {
    margin: 0 auto;
    width: 90%;
    position: static;
    padding: 10px 0 0 0;
  }
  /*TEL*/
  header #inner #tel {
    margin: 0 auto;
    font-size: 100%;
    width: 90%;
    position: static;
    line-height: 1.5;
  }
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*メニュー１個あたりの設定*/
  #menubar-s li {
    width: 100%;
    margin: 0px;
  }
  /*スマホ用メニューを非表示から表示に切り替える*/
  #menubar-s {
    display: block;
  }
  /*PC用メニューを非表示にする*/
  #menubar {
    display: none;
  }
  #menubar-s a {
    border-right: none;
    border-bottom: 1px solid #555;
  }
  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    position: absolute;
    top: 10px; /*上から10pxの場所に配置*/
    right: 10px; /*右から10pxの場所に配置*/
    width: 30px; /*幅*/
    border: 1px solid #fff; /*枠線の幅、線種、色*/
    padding: 12px 10px 5px; /*上、左右、下へのボックス内余白*/
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
  }
  /*３本のバー（1本あたり）*/
  #menubar_hdr span {
    display: block;
    border-top: 3px solid #fff; /*枠線の幅、線種、色*/
    margin-bottom: 7px; /*バー同士の余白*/
  }
  /*ボックスの設定*/
  section.sepa {
    box-sizing: border-box;
    margin-bottom: 10px; /*ボックス間のスペース*/
    position: relative;
    padding: 0px; /*ボックス内の余白*/
    float: left;
  }
  section.sepa .left {
    padding-top: 10px;
    width: auto;
    height: auto;
    float: none;
    text-align: center;
  }
  section.sepa .right {
    margin-top: 10px;
    width: auto;
    height: auto;
    float: none;
    padding: 0;
  }
  section.sepa h4 {
    font-size: 100%;
    font-weight: normal;
    text-align: center;
  }
  /*フッターメニュー
---------------------------------------------------------------------------*/
  /*ボックス全体*/
  #footermenu {
    display: none;
  }
  /*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
  section#new h2.open {
    background: #222 url(../images/btn_minus.png) no-repeat right center/34px 34px;
  }
  section#new h2.close {
    background: #222 url(../images/btn_plus.png) no-repeat right center/34px 34px;
  }
  /*ブロック全体の設定*/
  #new dl {
    padding-left: 0px;
    margin-bottom: 15px;
  }
  /*日付設定*/
  #new dt {
    font-weight: bold; /*太字にする設定。標準がいいならこの行削除。*/
    float: none;
    width: auto;
  }
  /*記事設定*/
  #new dd {
    display: block;
    width: 100%;
    padding-left: 0px;
  }
  /*画面右上キャンペーンパーツ
---------------------------------------------------------------------------*/
  #campaign {
    display: none;
  }
  /*その他
---------------------------------------------------------------------------*/
  .ws, .wl {
    width: 95%;
  }
  img.fr, img.fl {
    float: none;
    margin: 0;
    width: 100%;
  }
  .sh {
    display: block;
  }
  .pc {
    display: none;
  }
  /*各種DL設定
---------------------------------------------------------------------------*/
  /*店舗データ*/
  dl.st {
    margin: 10px 0px 20px 0px;
    padding-left: 0px;
    font-size: 100%;
  }
  dl.md {
    margin: 10px 10px 20px 10px;
  }
  dl.md dt {
    float: none;
    width: auto;
    padding: 0;
    text-align: left;
  }
  dl.md dd {
    padding: 0 0 10px 0;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  dl.lg {
    margin: 10px 10px 20px 10px;
  }
  dl.lg dt {
    float: none;
    width: auto;
    padding: 0;
    text-align: left;
  }
  dl.lg dd {
    padding: 0 0 10px 0;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  dl.prc {
    margin: 10px 0px 20px 0px;
    padding: 0 0 0 0;
  }
  dl.prc dt {
    float: none;
    width: auto;
    margin-bottom: 8px;
    padding: 0 0 0 0;
    text-align: left;
    font-size: 85%;
  }
  dl.prc dd {
    clear: both;
    width: auto;
    padding: 0 0 0 0;
    margin: 0 0 10px 0 !important;
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 100%;
    border-bottom: 1px solid #444;
  }
  /*リンク集*/
  dl.links {
    margin: 10px 10px 20px 10px;
  }
  dl.links dt {
    float: none;
    width: auto;
    margin: 5px 0;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
  }
  dl.links dd {
    padding: 5px 0px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  ul.btn li {
    float: none;
    width: 100%;
  }
  .tbr {
    display: block;
  }
  .pricebox {
    display: block;
  }
  .menuphoto {
    flex: 1; /* これが重要！ */
    padding: 10px;
  }
}