@charset "utf-8";
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body, html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0px;
  padding: 0px;
  color: #fff; /*全体の文字色*/
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /*フォント指定*/
  font-size: 16px; /*文字サイズ*/
  line-height: 2; /*行間*/
  background: #fff; /*背景色*/
  -webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style-type: none;
}
ol {
  padding-left: 40px;
  padding-bottom: 15px;
}
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.7;
  filter: alpha(opacity=70); /* 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;
}
.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: #fff; /*リンクテキストの色*/
  transition: 0.4s; /*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
  color: #FF0; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*トップページのメインイメージ
---------------------------------------------------------------------------*/
#mainimg {
  width: 100%; /*画像の幅*/
  position: relative;
  background: #000;
}
/*メインイメージ上の新作メニューバナー*/
#message {
  position: absolute;
  right: 3%; /*#メインイメージに対して右から3%の場所に配置*/
  bottom: 40px; /*#メインイメージに対して下から40pxの場所に配置*/
  background: #ccc; /*背景色（古いブラウザ用）*/
  background: rgba(255, 255, 255, 0.2); /*背景色。255,255,255は白の事で0.2は20%色がついた状態の事。*/
  border: 1px solid #ccc; /*枠線の幅、線種、色*/
  width: 50%; /*バナーの幅*/
  padding: 1%; /*バナー内の余白。一番外側のボーダーと、バナー画像との余白部分です。上のbackgroudが適用されます。*/
}
/*ヘッダー（左側のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
#hdbox {
  background: none;
  width: 100%;
  height: auto;
}
header {
  background: rgba(255, 255, 255, 0.7); /*背景色、背景画像の読み込み、リピートせず、中央、下側に配置。幅100%。*/
  width: 20%; /*ヘッダー幅。イメージ的には左ブロック幅と考えて下さい。*/
  height: 100%; /*高さ*/
  position: fixed; /*画面に対して固定表示*/
  left: 5%; /*ウィンドウに対して左から5%の場所に配置*/
  top: 0px; /*ウィンドウに対して上から0pxの場所に配置*/
  border-top: 5px solid #b22222; /*上の線の幅、線種、色*/
  overflow: auto; /*ブラウザの高さが狭いとヘッダーが途中で切れて見れなくなる事があるので、その場合にスクロールバーを出す設定*/
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.2は20%だけ色がついた状態の事。*/
}
/*ロゴ*/
/*header #logo {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
}*/
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
  /*background: #fff;
  background: rgba(255, 255, 255, 0.7);*/
  border-top: 1px solid #ccc; /*上の線の幅、線種、色*/
  font-size: 20px; /*文字サイズ*/
  line-height: 1.8;
}
/*メニュー１個あたりの設定*/
#menubar li {
  border-bottom: 1px solid #ccc; /*下の線の幅、線種、色*/
}
#menubar li a {
  display: block;
  text-decoration: none;
  text-align: center; /*文字を中央よせ*/
  padding: 10px; /*メニュー内の余白*/
  color: #b22222; /*文字色*/
}
/*説明表記（飾り文字）*/
#menubar li a span {
  display: block;
  font-size: 14px; /*文字サイズ*/
  color: #333; /*文字色*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
  background: #b22222; /*背景色*/
  color: #fff; /*文字色*/
}
/*マウスオン時と、現在表示中メニューの飾り文字の設定*/
#menubar li a:hover span, #menubar li.current a span {
  color: #fff;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
  display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
  display: none;
}
/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents {
  overflow: hidden;
  padding: 50px 4% 100px 30%; /*ボックス内の余白。上、右、下、左。*/
}
/*.bg1背景色*/
.bg1 {
  background: #000;
}
/*.bg2背景色*/
.bg2 {
  background: #d5d2c7;
}
/*.bg3背景色*/
.bg3 {
  background: #c8d2cf;
}
/*h2見出し*/
.contents h2 {
  clear: both;
  font-size: 40px; /*文字サイズ*/
  margin-bottom: 40px; /*下に空ける余白*/
  text-align: center; /*文字をセンタリング*/
  letter-spacing: 0.2em; /*文字間隔を広くとる設定*/
  line-height: 1.5; /*行間*/
  color: darkgoldenrod; /*文字色*/
  background: url(../images/line1.png) no-repeat center top/100%; /*見出しの上に入っている装飾。*/
  padding-top: 50px; /*見出しの上の装飾分、余白をとる*/
}
/*h2見出し内のspanタグ*/
.contents h2 span {
  display: block;
  font-size: 15px; /*文字サイズ*/
  letter-spacing: 2px;
}
/*h3見出し*/
.contents h3 {
  clear: both;
  letter-spacing: 0.1em; /*文字間隔を広くとる設定*/
  text-align: center; /*文字を中央に*/
  padding: 20px; /*上下、左右への余白*/
  font-size: 200%;
  color: darkgoldenrod;
}
.contents h4 {
  clear: both;
  margin-bottom: 20px; /*下に空ける余白*/
  letter-spacing: 0.1em; /*文字間隔を広くとる設定*/
  background: #fff; /*背景色（古いブラウザ用）*/
  background: rgba(255, 255, 255, 0.3); /*255,255,255は白の事で0.3は30%色がついた状態の事。*/
  text-align: center; /*文字を中央に*/
  border-radius: 30px; /*角丸のサイズ。大きめに設定しておけばOK。*/
  padding: 0px 20px; /*上下、左右への余白*/
}
/*段落タグ*/
.contents p {
  padding: 0 0 20px 0; /*上、左右、下への余白*/
}
/*.contents p + p {
  margin-top: -5px;
}
.contents section + section {
  margin-top: 50px;
}*/
.contents p.indt {
  text-align: justify;
  text-justify: inter-ideograph;
}
.contents p.image {
  padding: 20px 0;
}
.box {
  box-sizing: border-box;
  float: left;
  width: 100%;
  /*background: #000;
  background: rgba(0, 0, 0, 0.5);*/
  padding: 0; /*ボックス内の余白*/
  margin-bottom: 30px; /*ボックスの下に空けるスペース*/
  /*border: 1px solid #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);*/
}
.map {
  box-sizing: border-box;
  margin: 10px 0 50px 0;
  padding: 5px;
  border-radius: 4px;
  background: #FFF;
  text-align: left;
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
  color: #333;
  filter: drop-shadow(1px 1px 2px #666);
}
/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
  position: relative;
  overflow: hidden;
  float: left; /*左に回り込み*/
  width: 20%; /*ボックスの幅*/
  margin: 0 2.5% 20px; /*上、左右、下へのボックス内の余白*/
  height: 370px; /*ボックスの高さ。*/
}
/*写真の設定*/
.list figure img {
  display: block;
  border-radius: 50%; /*円形にする設定。30pxなどにすると角丸になります。この行を削除すればそのままの画像が表示されます。*/
  margin-bottom: 10px; /*画像の下に空けるスペース*/
}
/*写真の右上にある金額*/
.list figure span {
  display: block;
  text-align: center;
  width: 50px; /*幅*/
  line-height: 50px; /*高さ*/
  border-radius: 50%; /*円形にする設定*/
  font-size: 12px; /*文字サイズ*/
  background: #000; /*背景色（古いブラウザ用）*/
  background: rgba(0, 0, 0, 0.7); /*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
  position: absolute;
  right: 0px; /*listブロックに対して右から0pxの場所に配置*/
  top: 5px; /*listブロックに対して上から5pxの場所に配置*/
  color: #fff; /*文字色*/
}
/*ボックス内のh4見出し*/
.list h4 {
  text-align: center; /*文字をセンタリング*/
  border-bottom: 2px dotted #fff; /*下線の幅、線種、色*/
  margin-bottom: 10px; /*見出しの下に空けるスペース*/
  font-size: 20px; /*文字サイズ*/
}
/*ボックス内の段落タグ*/
.list p {
  padding: 0 !important;
  line-height: 1.5; /*行間を少し狭くする*/
}
/*inviewのスタイル
---------------------------------------------------------------------------*/
/*共通設定（待機中）*/
.up, .left, .right, .transform1, .transform2 {
  opacity: 0; /*透明度（透明の状態）*/
}
/*共通設定（要素が見えたら実行するアクション）*/
.upstyle, .leftstyle, .rightstyle, .transform1style, .transform2style {
  opacity: 1; /*透明度（色が100%出た状態）*/
  transition: 0.5s 0.5s; /*0.5sはアニメーションの実行時間0.5秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*upスタイル。下から上にフェードインしてくるスタイル（待機中）*/
.up {
  bottom: -50px; /*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle {
  bottom: 0px; /*基準値まで戻す*/
}
/*leftスタイル。左からフェードインしてくるスタイル（待機中）*/
.left {
  left: -100px; /*基準値より左に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle {
  left: 0px; /*基準値まで戻す*/
}
/*rightスタイル。右からフェードインしてくるスタイル（待機中）*/
.right {
  right: -100px; /*基準値より右に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle {
  right: 0px; /*基準値まで戻す*/
}
/*transform1スタイル。その場で回転するスタイル（待機中）*/
.transform1 {
  transform: scaleX(0); /*幅を0%でスタート*/
}
/*要素が見えたら実行するアクション*/
.transform1style {
  transform: scaleX(1); /*幅を100%に戻す*/
}
/*transform2スタイル。倒れた状態から起き上がるスタイル（待機中）*/
.transform2 {
  transform: perspective(400px) rotateX(100deg);
}
/*要素が見えたら実行するアクション*/
.transform2style {
  transform: perspective(0px) rotateX(0deg);
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  clear: both;
  text-align: right; /*文字を右寄せ*/
  padding: 20px 80px; /*上下、左右へのボックス内の余白*/
  background: #b22222;
}
footer a {
  text-decoration: none;
}
footer .pr {
  display: block;
}
/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
  padding: 0 30px;
  line-height: 1.8;
}
/*日付設定*/
#new dt {
  float: left;
  width: 100px; /*幅*/
  letter-spacing: 0.1em;
  color: darkgoldenrod;
}
/*記事設定*/
#new dd {
  padding-left: 120px;
}
dl.data {
  width: 100%;
  float: left;
  box-sizing: border-box;
  margin: 0;
  padding: 0 10px 20px 10px;
}
dl.data dt {
  box-sizing: border-box;
  float: left;
  width: 100px;
  /*margin-bottom: 5px;*/
  /*padding: 5px 0;*/
  text-align: right;
  color: chocolate;
}
dl.data dd {
  /*margin-bottom: 10px;*/
  padding: 0px 0px 0px 130px;
  text-align: left;
  text-align: justify;
}
.snsbn li {
  display: inline-block;
  width: 150px;
  height: auto;
  margin: 0 10px;
}
.snsbn li img {
  width: 100%;
  height: auto;
}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
  width: 100%;
  margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
  border: 1px solid #999; /*テーブルの枠線の幅、線種、色*/
  background: #fff; /*背景色*/
  padding: 10px 15px; /*ボックス内の余白*/
  word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
  width: auto;
  text-align: left; /*左よせ*/
  background: #eee; /*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
  width: 140px; /*幅*/
  text-align: center; /*センタリング*/
  font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
  width: 100%;
}
/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*通常時のボタンは非表示*/
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: 100;
  position: fixed;
  bottom: 20px; /*ウィンドウの下から20pxの場所に配置*/
  right: 1%; /*ウィンドウの右から1%の場所に配置*/
  background: #a40000; /*背景色（古いブラウザ用）*/
  background: rgba(164, 0, 0, 0.8); /*背景色。0,0,0は黒の事で0.6は60%色がついた状態。*/
  color: #fff; /*文字色*/
  border-radius: 10px; /*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
  animation-name: scroll; /*上のアニメーションで指定しているkeyframesの名前（scroll）*/
  animation-duration: 1S; /*アニメーションの実行時間*/
  animation-fill-mode: forwards; /*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
  background: #a40000;
}
/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  width: auto;
  background: #F00;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  border-radius: 2px;
  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);
}
/*その他
---------------------------------------------------------------------------*/
.look {
  background: #c3b5a2;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
}
.mb15, .mb1em {
  margin-bottom: 15px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.p0 {
  padding: 0 !important;
}
.clear {
  clear: both;
}
ul.disc {
  padding: 0em 25px 15px;
  list-style: disc;
}
/*.color1, .color1 a {
  color: #dcc444 !important;
}
.bg1 .color1, .bg1 .color1 a {
  color: #fff !important;
}
.bg2 .color1, .bg2 .color1 a {
  color: #98803d !important;
}
.bg3 .color1, .bg3 .color1 a {
  color: #3f6e60 !important;
}*/
.yellow {
  color: yellow;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center;
}
.r {
  text-align: right;
}
.l {
  text-align: left;
}
.w50 {
  overflow: hidden;
  width: 50%;
}
.w23p {
  box-sizing: border-box;
  padding: 0 5px;
  width: 23%;
}
.w75p {
  box-sizing: border-box;
  padding: 0 5px;
  width: 75%;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.big1 {
  font-size: 50px;
}
.big2 {
  font-size: 130%;
}
.mini1 {
  font-size: 11px;
  display: inline-block;
  line-height: 1.5;
}
.sh {
  display: none;
}
/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px) {
  /*トップページのメインイメージ
---------------------------------------------------------------------------*/
  /*メインイメージ上の新作メニューバナー*/
  #message {
    width: 90%; /*バナーの幅*/
    bottom: 10px;
  }
  /*ヘッダー（左側のブロック）
---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  #hdbox {
    background: rgba(0.0.0.0.8) !important;
    width: 100%;
    height: auto;
  }
  header {
    background: none;
    width: 80%;
    height: auto;
    position: absolute;
    border-top: none;
    box-shadow: none;
  }
  /*ロゴ*/
  header #logo {
    background: transparent;
  }
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
  @keyframes menubar {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /*スマホ用メニューブロック*/
  #menubar-s {
    display: block;
    overflow: hidden;
    position: fixed;
    z-index: 50;
    top: 0px;
    width: 100%;
    background: rgba(164, 0, 0, 0.8); /*背景色*/
    border-top: 1px solid #fff; /*上の線の幅、線種、色*/
    animation-name: menubar; /*上のkeyframesの名前*/
    animation-duration: 0.5s; /*アニメーションの実行時間。0.5秒。*/
    animation-fill-mode: both; /*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
  }
  /*メニュー１個あたりの設定*/
  #menubar-s li a {
    display: block;
    text-decoration: none;
    padding: 15px; /*メニュー内の余白*/
    border-bottom: 1px solid #fff; /*下の線の幅、線種、色*/
    color: #fff; /*文字色*/
    font-size: 20px;
  }
  /*説明表記（飾り文字）*/
  #menubar-s li a span {
    display: block;
    font-size: 12px; /*文字サイズ*/
    color: #999; /*文字色*/
  }
  /*PC用メニューを非表示にする*/
  #menubar {
    display: none;
  }
  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    position: fixed;
    z-index: 50;
    top: 10px; /*上から10pxの場所に配置*/
    right: 10px; /*右から10pxの場所に配置*/
    border: 1px solid #fff; /*枠線の幅、線種、色*/
  }
  /*アイコン共通設定*/
  #menubar_hdr.close, #menubar_hdr.open {
    width: 50px; /*幅*/
    height: 50px; /*高さ*/
  }
  /*三本バーアイコン*/
  #menubar_hdr.close {
    background: #666 url(../images/icon_menu.png) no-repeat center top/50px; /*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
  }
  /*閉じるアイコン*/
  #menubar_hdr.open {
    background: #666 url(../images/icon_menu.png) no-repeat center bottom/50px; /*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
  }
  /*コンテンツ
---------------------------------------------------------------------------*/
  /*コンテンツ*/
  .contents {
    padding: 110px 4% 100px 4%; /*ボックス内の余白。上、右、下、左。*/
  }
  /*コンテンツ（※トップページのみ）*/
  .top .contents {
    padding: 50px 4% 100px 4%; /*ボックス内の余白。上、右、下、左。*/
  }
  /*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
  /*各ボックスの設定*/
  .list {
    width: 40%; /*ボックスの幅*/
    margin: 0 5% 20px; /*上、左右、下へのボックス内の余白*/
    height: 400px; /*ボックスの高さ。*/
  }
  /*写真の右上にある金額*/
  .list figure span {
    width: 70px; /*幅*/
    line-height: 70px; /*高さ*/
    font-size: 14px; /*文字サイズ*/
  }
  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub, body.s-n #footermenu, .m-n {
    display: none;
  }
  .big1 {
    font-size: 24px;
  }
  .w50 {
    overflow: hidden;
    width: auto;
  }
  .sh {
    display: block;
  }
  .pc {
    display: none;
  }
  footer {
    text-align: center; /*文字を右寄せ*/
  }
}
/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px) {
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*メニュー１個あたりの設定*/
  #menubar-s li a {
    float: left; /*左に回り込み*/
    width: 40%; /*幅*/
    margin-left: 4%; /*メニューの左側に空けるスペース*/
    line-height: 1.2; /*行間*/
  }
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
  /*全体の設定
---------------------------------------------------------------------------*/
  body {
    font-size: 12px; /*文字サイズ*/
    line-height: 1.5; /*行間*/
  }
  header {
    width: 75%;
  }
  /*コンテンツ
---------------------------------------------------------------------------*/
  /*コンテンツ*/
  .contents {
    padding: 20px 4% 50px 4%; /*ボックス内の余白。上、右、下、左。*/
  }
  /*コンテンツ
---------------------------------------------------------------------------*/
  /*コンテンツ*/
  .contents {
    padding: 70px 4% 30px 4%; /*ボックス内の余白。上、右、下、左。*/
  }
  /*コンテンツ（※トップページのみ）*/
  .top .contents {
    padding: 20px 4% 30px 4%; /*ボックス内の余白。上、右、下、左。*/
  }
  /*h2見出し*/
  .contents h2 {
    font-size: 24px; /*文字サイズ*/
    margin-bottom: 20px; /*下に空ける余白*/
    letter-spacing: normal;
    padding-top: 20px; /*見出しの上の装飾分、余白をとる*/
  }
  /*h2見出し内のspanタグ*/
  .contents h2 span {
    font-size: 10px; /*文字サイズ*/
  }
  /*段落タグ*/
  .contents p {
    padding: 0 0 20px; /*上、左右、下への余白*/
  }
  .box {
    padding: 0 10px; /*ボックス内の余白*/
  }
  .fl {
    float: none;
  }
  .fr {
    float: none;
  }
  .w23p, .w75p {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px 10px;
  }
  /*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
  /*各ボックスの設定*/
  .list {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    margin-bottom: 20px;
    overflow: hidden;
  }
  /*写真の設定*/
  .list figure img {
    float: left; /*左に回り込み*/
    width: 30%; /*写真の幅*/
  }
  /*写真の右上にある金額*/
  .list figure span {
    width: 40px; /*幅*/
    line-height: 40px; /*高さ*/
    font-size: 10px; /*文字サイズ*/
    left: 0px; /*listブロックに対して左から0pxの場所に配置*/
    top: 0px; /*listブロックに対して上から0pxの場所に配置*/
  }
  /*ボックス内のh4見出しと段落タグ*/
  .list h4, .list p {
    text-align: left; /*文字を左寄せ*/
    margin-left: 35%; /*左に空けるスペース。上の写真の幅をみて調整して下さい。*/
  }
  /*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
  /*見出しを含まないお知らせブロック*/
  #new dl {
    padding: 0;
  }
  /*日付設定*/
  #new dt {
    float: none;
    width: auto;
  }
  /*記事設定*/
  #new dd {
    padding-left: 0;
    margin-bottom: 8px;
  }
  dl.data {
    box-sizing: border-box;
    margin: 0;
    padding: 10px;
  }
  dl.data 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.data dd {
    margin-bottom: 5px;
    padding: 0px 0px 5px 0px;
    text-align: left;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  /*テーブル（ta1）
---------------------------------------------------------------------------*/
  /*ta1設定*/
  .ta1, .ta1 td, .ta1 th {
    padding: 5px; /*ボックス内の余白*/
  }
  /*ta1の左側ボックス*/
  .ta1 th {
    width: 100px;
  }
  /*その他
---------------------------------------------------------------------------*/
  .ws, .wl {
    width: 94%;
  }
  .big1 {
    font-size: 16px;
  }
  .snsbn li {
    display: inline-block;
    width: 80px;
    height: auto;
    margin: 0 10px;
  }
  .snsbn li img {
    width: 100%;
    height: auto;
  }
}