<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
body {
    margin: 0;
    padding: 0;
    color: #4D4834;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    font-size: 14px;
    line-height: 22px;
    background-color: #F4F3EB;
}
/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;     /* 上マージンを削除すると、マージンを含む block からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
    padding-right: 5px;
    padding-left: 5px; /* block 自体ではなく block 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した block をネストして使用することもできます。 */
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
    border: none;
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
    color: #0066FF;
    text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
    color: #660099;
    text-decoration: none;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
    text-decoration: underline;
    color: #03F;
}
/* ~~ この固定幅コンテナが他のすべての block を囲みます。~~ */
.container {
    width: 950px;
    margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}
/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。~~ */
header {
    height: 150px;
    width: 950px;
    margin-right: auto;
    margin-left: auto;
}
#header_container{
    height: 150px;
    width: 100%;
    background-image: url(images/bak_header.gif);
    background-repeat: repeat-x;
}/* ~~ レイアウトに使用するカラムです。~~

1) 余白は、block エレメントの上部または下部にのみ配置されます。これらの block 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、block 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。block エレメント内のエレメントの余白を削除し、さらにその block エレメント内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の block エレメントを追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した block の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、block エレメントのルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー block をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを右ではなく左に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて右方向にする代わりに、すべて左方向に設定)、反転してレンダリングされます。HTML ソース内で block を移動する必要はありません。

*/
.sidebar1 {
    float: right;
    width: 220px;
}
.content {
    width: 680px;
    float: left;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
}

/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol {
    padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
nav{
    width: 950px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 110px;
    font-size: 16px;
    text-shadow:0 1px #666666;
}
nav ul {
    list-style: none; /* 下のコンテンツのナビゲーション間の間隔を作成します。 */
    margin-left: 3px;
}
nav ul li {
    display: inline;
    float: left;
    width: 118px;
    text-align: center;
}
nav ul a, nav ul a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
    display: block;
    width: 118px;
    text-decoration: none;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
    color: #FFF;
    background-color: #504C38;
    -webkit-border-radius: 145px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-decoration: none;
}
nav a:link {
    color: #FFFFFF;
    text-decoration: none;
}
nav a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
/* ~~ フッター ~~ */
#footerbox{
    width: 100%;
    background-color: #003;
    clear: none;
    background-image: url(images/bak_footer.jpg);
    margin-top: 20px;
    float: left;
}
footer {
    position: relative;
    width: 950px;
    padding-top: 20px;
    padding-right: 0;
    padding-bottom: 0px;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    color: #CCC;
}
footer a:link{
    color: #CCC;
    text-decoration: underline;
}
footer a:visited {
    color: #CCC;
    text-decoration: underline;
}
footer a:hover, a:active, a:focus {
    text-decoration: underline;
    color: #82981F;
}
/*HTML 5 サポート - 新しい HTML 5 タグを display:block に設定します。これにより、ブラウザーでタグが適切にレンダリングされます。 */
header, section, footer, aside, nav, article, figure {
    display: block;
}
    a#vlb{display:none}
    #logo {
    position:absolute;
    width:180px;
    height:110px;
    z-index:101;
}
    #phone {
    position:absolute;
    width:256px;
    height:115px;
    z-index:102;
    margin-left: 694px;
}
#bukken_banner{
    /*height: 380px;*/
}
#bukken_banner ul{
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 10px;
    padding: 0px;
}
#bukken_banner li{
    margin-bottom: 10px;
    list-style-position: outside;
    width: 220px;
}
.10image{
    margin-top: 10px;
    margin-bottom: 10px;
}
#topbox{
    margin-top: 10px;
    height: 335px;
}
#chintai{
    height: 335px;
    float: left;
    width: 290px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: #FFF;
    background-image: url(images/chintai_kensaku.gif);
    background-repeat: no-repeat;
    background-position: right bottom;
}
#chintai ul{
    margin: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 20px;
}
#chintai li{
    list-style-position: outside;
    list-style-image: url(images/dot.gif);
    margin-bottom: 10px;
}
#new_house{
    float: left;
    height: 335px;
    width: 290px;
    margin-left: 10px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: #FFF;
}
#blog{
    height: 335px;
    margin-top: 10px;
    float: left;
    width: 270px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: #FFF;
    text-align: center;
}
h1{
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
h2{
    font-size: 22px;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 0px;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    font-weight: bold;
    line-height: 32px;
}
h3{
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #476800;
    font-weight: 400;
}
.arrow{
    padding-right: 15px;
    cursor: pointer;
    zoom: 1;
    background-image: url(images/arrow.gif);
    background-repeat: no-repeat;
    background-position: 100% 50%;
}
.eng{
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    color: #AE917B;
}
/* Layout helpers
----------------------------------*/
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
#tabs {
    width:100%;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: left;
    float: left;
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
/* Component containers
----------------------------------*/
.ui-widget {
}
.ui-widget .ui-widget {
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
}
.ui-widget-content {
    border: 1px solid #CCCCCC;
    color: #222222;
    background-color: #FFF;
}
.ui-widget-content a {
}
.ui-widget-header {
    color: #222222;
    font-weight: bold;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #aaaaaa;
    width: 99%;
}
.ui-widget-header a {
    color: #222222;
    font-weight: bold;
    font-size: 16px;
}
/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 1px solid #d3d3d3;
    font-weight: normal;
    color: #666666;
    background-color: #ECECEC;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    font-weight: normal;
    color: #FFFFFF;
    background-color: #82981F;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #999999;
}
.ui-state-hover a, .ui-state-hover a:hover {
    color: #FFFFFF;
    text-decoration: none;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: 1px solid #aaaaaa;
    font-weight: normal;
    color: #212121;
    background-color: #ffffff;
}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
.ui-widget :active { outline: none; }
/*
 * jQuery UI Tabs 1.8.11
 */
.ui-tabs {
    position: relative;
    padding: 0.2em;
    zoom: 1;
} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
＜ｂｒ＞    {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    background: none;
    padding-top: 1em;
    padding-right: 0em;
    padding-bottom: 1em;
    padding-left: 0em;
}
.ui-tabs .ui-tabs-hide { display: none !important; }
td{
    padding: 5px;
}
.cen{
    border: 1px solid #CCC;
    margin-left: 35px;
}
section{
    margin-bottom: 30px;
}
.imgflame_l{
    border: 3px solid #827C63;
    margin-right: 20px;
}
.imgflame_r {
    border: 3px solid #827C63;
    margin-left: 20px;
}
.imgflame {
    border: 3px solid #827C63;
    margin-bottom: 20px;
}
.shachoutxt{
    font-size: 16px;
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    line-height: 26px;
}
table{
    margin-top: 0px;
    margin-bottom: 50px;
}
.q{
    font-size: 15px;
    color: #000;
    font-weight: bold;
}
.a{
    font-size: 15px;
    color: #666;
    width: 80%;
    margin-left: 40px;
}
.red_abashiri{
    font-size: 12px;
    color: #F00;
    margin-left: 40px;
}
.small{
    font-size: 12px!important;
}

.small_red {
    font-size: 12px;
    color: #F33;
    line-height: 16px;
}
.sidebar1 h3{
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #82971F;
}
.sidebar1 ul{
    padding-left: 20px;
    padding-bottom: 10px;
}
.sidebar1 li{
    list-style-image: url(images/dot.gif);
    list-style-position: outside;
}
.red{
    color: #F00;
    font-size: small;
}
.white {
    color: #FFF;
    font-weight: bold;
}
#staff{}
.staffbox{
    width: 180px;
    text-align: center;
    float: left;
}
#staff ul{
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 50px;
}
#staff li{
    display: inline;
    width: 180px;
    float: left;
    margin-right: 15px;
    margin-bottom: 20px;
}
.fujiawara{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}
.boshuu{
    width: 100%;
    float: left;
    margin-bottom: 30px;
}
.boshuu ul{
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.boshuu ul li{
    width: 325px;
    display: list-item;
    float: left;
    clear: none;
    margin: 0px;
    font-size: 16px;
    text-align: center;
    line-height: 34px;
}
.boshuu ul li:first-child{
    margin-right: 30px;
}
.box_txt{
    font-size: 16px;
    line-height: 32px;
    border: 1px solid #CCCCCC;
    width: 660px;
    padding: 10px;
    color: #FF3333;
    float: left;
    clear: left;
    margin-bottom: 30px;
    background-color: #FFF;
}
.tl{}
.tl ul{
    margin: 0px;
    padding: 0px;
}
.tl ul li{
    padding: 0px;
    list-style-type: square;
    list-style-position: outside;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 20px;
}
.juutakumei{
    font-size: 18px;
    font-weight: bold;
}
.red_nor{
    color: #F00;
}
.uketuke {
    color: #FF0000;
    font-weight: bold;
    margin-left: 20px;
}

.bold_red {
    font-weight: bold;
    color: red;
}

.hokkaido {
    font-size: 16px;
    line-height: 28px;
}

.tousen_no {
    margin-left: 20px;
    font-weight: bold;
    color: red;
}

.bot0 {
    margin-bottom: 10px!important;
}

.boshuu-shin {
    font-size: 1.2rem;
    font-weight: bold;
}
</pre></body></html>