@charset "utf-8";
/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
html {
  height: 100%;
}
body {
  margin: 0px;
  padding: 0px;
  color: #333; /*全体の文字色*/
  /*background: #eee;*/
  font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px; /*文字サイズ*/
  line-height: 1.6; /*行間*/
  -webkit-text-size-adjust: none;
  background-image: url("../images/bg_main.png");
  background-attachment: fixed;
  /*display: flex;
	flex-flow: column;
	min-height: 100vh;*/
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}
ul {
  list-style-type: none;
}
ol {
  padding-left: 40px;
  padding-bottom: 15px;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
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);
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
iframe {
  width: 100%;
  border: none;
}
.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;
  }
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #333; /*リンクテキストの色*/
  -webkit-transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
  transition: 0.5s; /*同上*/
  text-decoration: none;
}
a:hover {
  color: #a50601; /*マウスオン時の文字色（全体）*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a.link {
  color: #FF6600; /*リンクテキストの色*/
  -webkit-transition: 0.5s; /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
  transition: 0.5s; /*同上*/
  text-decoration: none;
}
a.link:hover {
  color: #FF9966; /*マウスオン時の文字色（全体）*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  width: 100%;
  background: #ff8c00; /*背景色（古いブラウザ用）*/
  background: radial-gradient(circle 250px at 20% -50px, #ffbf1a, #ff8c00); /*ロゴ背後の光を含めた背景色*/
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /*同上*/
  margin-bottom: 10px; /*ヘッダーの下に空けるスペース*/
}
header #inner {
  max-width: 980px; /*幅。下の「#contents」の幅に合わせる。*/
  height: 80px; /*高さ*/
  margin: 0 auto;
  position: relative;
}
/*ロゴ画像*/
header #logo {
  position: absolute;
  left: 35px; /*ヘッダーブロックに対して左から10pxの場所に配置*/
  top: 10px; /*ヘッダーブロックに対して上から24pxの場所に配置*/
  width: 170px; /*画像の幅*/
  /*filter: drop-shadow(1px 1px 2px #222);*/
}
/*電話番号ボックスの設定*/
header address {
  position: absolute;
  right: 10px; /*ヘッダーブロックに対して右から10pxの場所に配置*/
  top: 20px; /*ヘッダーブロックに対して上から10pxの場所に配置*/
  font-size: 11px; /*文字サイズ*/
  letter-spacing: 0.2em; /*文字間隔を少し広めにとる設定*/
  color: #fff; /*文字色*/
  font-style: normal;
  text-align: right;
}
/*電話番号の文字設定*/
header address .tel {
  font-size: 16px; /*文字サイズ*/
  display: block;
  line-height: 1.4;
  text-align: right;
}
header address .tel a {
  color: #fff;
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
  clear: both;
  max-width: 980px; /*幅。上の「header #inner」の幅に合わせる*/
  margin: 0 auto;
  /*flex: 1;*/
}
/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
  clear: left;
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /*影の設定。右・下・ぼかし幅・色の設定*/
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /*同上*/
}
#bnarea {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
  float: right; /*右側に回り込み*/
  width: 72%; /*コンテンツ幅*/
  overflow: hidden;
  padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
  clear: both;
  margin-bottom: 18px;
  color: #ff8c00; /*文字色*/
  padding: 7px 15px; /*左から上下、左右への余白*/
  border-left: 3px solid #ff8c00;
  border-bottom: 1px solid #ff8c00;
  border-radius: 3px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.5);
}
/*mainコンテンツのh2タグの１文字目への設定*/
/*#main h2::first-letter {
	border-left: 3px solid #fff;
	padding-left: 10px;
}*/
/*mainコンテンツのh3タグの設定*/
#main h3 {
  clear: both;
  margin-bottom: 15px;
  padding: 6px 15px; /*上下、左右への余白*/
  border-bottom: 1px solid #bcbcbc; /*枠線の幅、線種、色*/
  letter-spacing: 1px;
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
  border-left: 3px solid #a50601; /*左側のアクセント用ラインの幅、線種、色*/
  padding-left: 10px; /*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
  padding: 10px; /*左から、上、左右、下への余白*/
  text-align: justify;
  text-justify: inter-ideograph;
  /*text-indent: 1em;*/
}
#main p + p {
  padding-top: 0px;
}
#main h2 + p, #main h3 + p {
  padding-top: 0px;
  margin-top: -5px;
}
/*物件個々ページの各ブロック（その２）
---------------------------------------------------------------------------*/
#main section.sepa {
  float: left;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
}
#main section.sepa .Lbox {
  float: left;
  width: 30%;
  height: auto;
  padding: 0 5px;
}
#main section.sepa h4 {
  font-size: 120%;
  color: #816C42; /*文字色*/
  margin-bottom: 0.5em;
  letter-spacing: 1px;
  margin-top: 0px;
  padding-left: 10px;
}
#main section.sepa p {
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 1em;
}
#main section.sepa p.right {
  width: auto;
  padding: 10px;
  text-align: right;
}
#main section.sepa figure img {
  box-sizing: border-box;
  margin-bottom: 5px;
  padding: 3px;
  /*border: 1px solid #ddd;*/
  width: 100%; /*写真の幅*/
  height: auto; /*写真の高さ*/
  background: #FFF;
  filter: drop-shadow(0.6px 0.6px 1.4px #555);
}
#main section.sepa .Rbox {
  float: right;
  width: 68%;
  height: auto;
}
#main section.map {
  float: left;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
  border-radius: 4px;
  background: #FFF;
}
/*施設紹介の3ブロック
---------------------------------------------------------------------------*/
section.minibox3 {
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 10px;
  position: relative;
  width: 31%;
  height: auto;
  float: left;
  margin-left: 1.8%;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
}
section.minibox3 h4 {
  padding: 10px 0;
  line-height: 1.2;
  text-align: center;
  color: #8b4513;
  margin-bottom: 5px !important;
  letter-spacing: 0px !important;
}
section.minibox3 p {
  width: auto;
  line-height: 1.4;
  margin-bottom: 0px;
  letter-spacing: 1px;
}
section.minibox3 figure img {
  float: none;
  width: 100%;
  margin: 0;
  border: none;
}
.caution {
  display: block;
  width: auto;
  color: #FFF;
  padding: 10px 0 10px 0 !important;
  border-radius: 4px;
  margin: 10px 0;
  text-decoration: none;
  text-align: center !important;
  text-indent: none;
  background: url(../images/bg1.png) no-repeat top center, #FF3300;
  background-size: cover;
  font-weight: bold !important;
  font-size: 120%;
}
.caution a {
  background: #FF3300;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
}
.caution:hover {
  background: url(../images/bg1.png) no-repeat top center, #ffa500;
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /* box-shadow */
  box-shadow: 0px 0px 4px 1px #cd853f inset;
  -moz-box-shadow: 0px 0px 4px 1px #cd853f inset;
  -webkit-box-shadow: 0px 0px 4px 1px #cd853f inset;
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
  float: left; /*左側に回り込み*/
  width: 25%; /*コンテンツ幅*/
  padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
  clear: both;
  margin-bottom: 15px;
  color: #FFF; /*文字色*/
  background: url(../images/bg1.png) no-repeat top center, #FF3300;
  background-size: cover;
  padding: 7px 15px; /*左から上下、左右への余白*/
  border-radius: 3px;
  letter-spacing: 1px;
}
#sub section.bn {
  margin-bottom: 10px;
  text-align: center !important;
}
/*subコンテンツのh2タグの１文字目への設定*/
/*#sub h2::first-letter {
	border-left: 3px solid #fff;
	padding-left: 10px;
}*/
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
  margin-bottom: 15px; /*メニューブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
  border-bottom: solid 1px #eee; /*枠線の線種、幅、色*/
  border-radius: 3px;
  font-size: 110%;
}
#sub ul.submenu li a {
  text-decoration: none;
  display: block;
  padding: 8px 10px; /*上、左右、左への余白*/
  letter-spacing: 1px;
}
/*マウスオン時*/
#sub ul.submenu li a:hover, #sub ul.submenu li.current a {
  background: #FF9966; /*背景色*/
  color: #fff; /*文字色*/
  border-radius: 3px;
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
  padding: 10px; /*ボックス内の余白*/
  margin-bottom: 15px; /*ボックスの下に空けるスペース*/
  background: rgba(255, 255, 255, 0.5); /*背景色*/
  border: 5px solid #e1e1e1; /*枠線の幅、線種、色*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
  margin-bottom: 0px;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  width: 100%;
  clear: both;
  text-align: center;
  padding: 10px 0px;
  background: #ff8c00; /*背景色*/
  color: #fff; /*文字色*/
}
footer .pr {
  display: block;
  font-size: 80%;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
  color: #fff;
}
/*DL集
---------------------------------------------------------------------------*/
/*company内、会社案内*/
dl.profile {
  margin: 0;
  font-size: 14px;
}
dl.profile dt {
  float: left;
  width: 100px;
  margin: 8px 0;
  text-align: center;
  color: #FF6600;
}
dl.profile dd {
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.3＝30％）の指定。*/
  padding: 8px 10px 8px 110px;
  text-align: left;
}
/*リンク集*/
dl.link {
  margin: 10px 10px 20px 10px;
}
dl.link dt {
  float: left;
  width: 180px;
  margin: 5px 0;
  padding-right: 20px;
  padding-left: 10px;
  text-align: right;
}
dl.link dd {
  padding: 5px 20px 5px 200px;
  text-align: justify;
  text-justify: inter-ideograph;
}
/*予約・お問い合わせ*/
dl.contact {
  margin: 10px 20px 20px 20px;
  width: auto;
}
dl.contact dt {
  float: left;
  width: 160px;
  padding: 5px 0 5px 10px;
  text-align: left;
  font-weight: normal;
  letter-spacing: 1px;
}
dl.contact dd {
  width: auto;
  padding: 5px 0 10px 180px;
  border-bottom: 1px solid #CCC;
  text-align: left;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
  margin-bottom: 15px;
}
#new dl {
  padding-left: 15px;
}
/*日付設定*/
#new dt {
  font-weight: bold; /*太字にする設定。標準がいいならこの行削除。*/
  float: left;
  width: 70px;
  padding: 5px 0;
}
/*記事設定*/
#new dd {
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  padding: 5px 0 5px 90px;
}
/*テーブルフォーム　送信枠
---------------------------------------------------------------------------*/
ul.action {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0;
  width: 220px;
  height: 40px;
  list-style-type: none;
  text-align: center;
}
ul.action li {
  margin: 0 10px 0 0;
  padding: 0;
  width: 105px;
  height: 40px;
  float: left;
  text-align: center;
}
ul.action li.nom {
  margin: 0;
}
/*PAGE TOP設定（オリジナル）
---------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 85%;
  font-weight: bold;
}
#page-top a {
  background: #777777;
  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: #777777;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
/*「おすすめ」表示
---------------------------------------------------------------------------*/
.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;
}
/*CMS用　オプションマーク（管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.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;
}
/*トップページの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;
}
/*小さい端末用(画面幅480px以下)メニューを表示させない
---------------------------------------------------------------------------*/
#menubar-s {
  display: none;
}
/*３本バーアイコンを表示させない
---------------------------------------------------------------------------*/
#menubar_hdr {
  display: none;
}
/*その他
---------------------------------------------------------------------------*/
.look {
  background: #dcdcdc;
}
.mb15, .mb1em {
  margin-bottom: 15px;
}
.mtb10 {
  margin: 10px 0;
}
.clear {
  clear: both;
}
ul.disc {
  padding: 0em 25px 1em;
  list-style: disc;
}
.color1 {
  color: #a50601;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
.sortbox {
  text-align: right;
  margin-bottom: 15px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 10px;
  background: #FFF;
}
.big1 {
  font-size: 130%;
}
/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
  /*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  header #inner {
    width: auto;
  }
  /*ロゴ画像*/
  header #logo {
    max-width: 40%;
    margin-left: 2%;
  }
  /*電話番号ボックスの設定*/
  header address {
    position: absolute;
    right: 90px; /*ヘッダーブロックに対して右から90pxの場所に配置*/
    top: 20px; /*ヘッダーブロックに対して上から10pxの場所に配置*/
    letter-spacing: normal;
  }
  /*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
  #contents {
    width: auto;
    margin: 2%;
  }
  /*main,subコンテンツ
---------------------------------------------------------------------------*/
  #main, #sub {
    float: none;
    width: auto;
  }
  /*小さい端末用(画面幅800px以下)設定
---------------------------------------------------------------------------*/
  #menubar-s {
    display: block; /*メニューを非表示から表示に切り替える*/
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5); /*背景色*/
    border: 5px solid #3252b3; /*枠線の幅、線種、色*/
    text-align: center;
    margin: 0px 2% 15px;
  }
  #menubar-s li {
    border-bottom: solid 1px #d9d9d9; /*枠線の線種、幅、色*/
    float: left;
    width: 48%;
    margin: 0 1% 0;
  }
  #menubar-s a {
    text-decoration: none;
    display: block;
    padding: 10px;
  }
  /*大きな端末用(画面幅801px以上)メニューを非表示にする
---------------------------------------------------------------------------*/
  #menubar {
    display: none;
  }
  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    position: absolute;
    top: 15px; /*上から15pxの場所に配置*/
    right: 2%; /*右から2%の場所に配置*/
    width: 30px; /*幅*/
    border: 1px solid #fff; /*枠線の幅、線種、色*/
    padding: 12px 10px 5px; /*上、左右、下へのボックス内余白*/
  }
  /*３本のバー（1本あたり）*/
  #menubar_hdr span {
    display: block;
    border-top: 3px solid #fff; /*枠線の幅、線種、色*/
    margin-bottom: 7px; /*バー同士の余白*/
  }
  /*フッター設定
---------------------------------------------------------------------------*/
  footer {
    width: auto;
  }
  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub {
    display: none;
  }
  /*施設紹介コンパクト*/
  section.minibox3, section.minibox4 {
    height: auto;
  }
  /*お問い合わせ*/
  dl.contact {
    margin: 10px 10px 20px 10px;
  }
  dl.contact dt {
    float: none;
    width: auto;
    padding: 10px 0 0 0;
    text-align: center;
    font-size: 120%;
  }
  dl.contact dd {
    width: auto;
    padding: 0;
    border-bottom: none;
    text-align: left;
  }
  textarea {
    width: 100% !important;
  }
}
/*画面幅550px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:550px) {
  /*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
  header #inner {
    position: static;
    height: auto;
    padding: 10px;
    text-align: center;
  }
  /*ロゴ画像*/
  header #logo {
    position: static;
    max-width: 65%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  /*電話番号ボックスの設定*/
  header address {
    position: static;
    line-height: 1.4;
    text-align: center;
  }
  header address .tel {
    font-size: 16px; /*文字サイズ*/
    display: block;
    line-height: 1.4;
    text-align: center;
  }
  #main section.sepa .Lbox {
    float: none;
    width: auto;
    height: auto;
  }
  #main section.sepa .Rbox {
    float: none;
    width: auto;
    height: auto;
  }
  /*会社データ*/
  dl.profile {
    margin: 10px 0 0 0;
    margin-left: 0; /*左の写真とのバランスをとって設定*/
  }
  dl.profile dt {
    box-sizing: border-box;
    float: none;
    width: auto;
    margin: 10px 0 0 0;
    padding: 5px;
    text-align: center;
    color: #333;
    background: none; /*背景色（古いブラウザ用）*/
    border-radius: 3px;
    font-size: 130%;
  }
  dl.profile dd {
    border-bottom: 1px solid #ccc; /*下線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.3＝30％）の指定。*/
    padding: 10px 0px;
    text-align: center;
  }
  /*リンク集*/
  dl.link {
    margin: 10px 10px 20px 10px;
  }
  dl.link dt {
    float: none;
    width: auto;
    margin: 5px 0;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
  }
  dl.link dd {
    padding: 5px 0px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  /*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
  /*ブロック全体の設定*/
  #new {
    margin-bottom: 15px;
  }
  #new dl {
    padding: 10px;
  }
  /*日付設定*/
  #new dt {
    font-weight: bold; /*太字にする設定。標準がいいならこの行削除。*/
    float: none;
    width: auto;
  }
  /*記事設定*/
  #new dd {
    border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
    padding-left: 0;
  }
  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;
  }
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
  /*小さい端末用メニュー設定
---------------------------------------------------------------------------*/
  #menubar-s li {
    float: none;
    width: auto;
  }
  /*サービス紹介ページの各ブロック
---------------------------------------------------------------------------*/
  /*ボックス内の段落タグ設定*/
  #main .list p {
    margin-left: 0;
  }
  /*ボックス内の写真設定*/
  #main .list figure img {
    float: none;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: 10px;
  }
  /*h4タグ直下に画像がある場合の段落タグ設定*/
  #main .list h4 + figure ~ p {
    margin-left: 0;
  }
  /*h4タグ直下に画像がある場合のtableタグ設定*/
  #main .list h4 + figure ~ table {
    margin-left: 0;
    width: 100%;
  }
  /*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
  section#new h2.open {
    background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#ea0000), to(#a50601)); /*マイナスアイコンとグラデーション*/
    background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#ea0000, #a50601); /*同上*/
    background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#ea0000, #a50601); /*同上*/
  }
  section#new h2.close {
    background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#ea0000), to(#a50601)); /*プラスアイコンとグラデーション*/
    background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#ea0000, #a50601); /*同上*/
    background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#ea0000, #a50601); /*同上*/
  }
  /*テーブル１
---------------------------------------------------------------------------*/
  /*テーブル内の右側*/
  .ta1 td {
    width: auto;
    padding: 2px;
  }
  /*テーブル内の左側の見出し部分*/
  .ta1 th {
    width: 100px;
    padding: 2px;
  }
  /*inputボタンの設定
---------------------------------------------------------------------------*/
  input[type="submit"], input[type="button"], input[type="reset"] {
    width: auto;
    font-size: 14px;
    letter-spacing: normal;
  }
  /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 96%;
  }
}