@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
    color: #333;    /*全体の文字色*/
    margin: 0px;
    padding: 0px;
    font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";    /*文字サイズ、行間、フォント指定*/
    background-color: #f9f7f1;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
    margin: 0px;
    padding: 0px;
}
ul{
    list-style-type: none;
}
img {
    border: none;
}
input,textarea,select {
    font-size: 1em;
}
form {
    margin: 0px;
}
table {
    border-collapse:collapse;
    font-size: 100%;
    border-spacing: 0;
}
/*.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }*/
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
    color: #333;    /*リンクテキストの色*/
}
a:hover {
    color: #48b796;            /*マウスオン時の文字色（全体）*/
    text-decoration: none;
    /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    background-color: #FFF;    /*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ccc));    /*グラデーション*/
    background-image: -webkit-linear-gradient(#FFF 98%, #ccc);    /*同上*/
    background-image: linear-gradient(#FFF 98%, #ededed);            /*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
    width: 997px;    /*ブロック幅*/
    height: 80px;
    position: relative;
    margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
    position: absolute;
    left: 20px;    /*innerに対して左から20pxの場所に配置*/
    top: 20px;    /*innerに対して上から20pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header .inner address {
    position: absolute;
    top: 15px;        /*innerに対して上から20pxの位置に配置*/
    right: 20px;    /*innerに対して右から20pxの位置に配置*/
    font-size: 11px;    /*文字サイズ*/
    text-align: left;    /*文字をセンタリング*/
    line-height: 1.4;    /*行間*/
    letter-spacing: 0.05em;    /*文字間隔を少し広めにとる設定*/

    background-image: url(../images/header_value.png);

    background-position-x: 0px;
    background-position-y: 4px;
    background-size: initial;
    background-repeat: no-repeat;
    background-repeat-x: no-repeat;
    background-repeat-y: no-repeat;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: transparent;
}
/*電話番号の文字設定*/
header .inner address .tel {
    font-size: 14px;    /*文字サイズ*/
    text-indent: 3.4em;
    font-weight: bold;    /*太字に*/
    display: block;
    padding-bottom: 3px

}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
    height: 70px;    /*ブロックの高さ*/
    background-color: #FFF;    /*背景色（古いブラウザだとここの色のみが出ます）*/
/*    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eee));*/
    /*グラデーション*/
/*    background-image: -webkit-linear-gradient(#FFF, #eee);*/
    /*同上*/
/*    background-image: linear-gradient(#FFF, #eee);*/
    /*同上*/
    border-top: 3px double #e4e4e4;        /*メニューの上側の線の幅、線種、色*/
    border-bottom: 1px solid #CCC;    /*メニューの下側の線の幅、線種、色*/
}
nav#menu ul {
    width: 997px;
    margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
    float: left;
    width: 165px;    /*メニュー幅*/
    border-right: 1px solid #d4d4d4;    /*メニューの右側の線の幅、線種、色*/
    text-align: center;    /*文字を中央に揃える*/
    font-weight: bold;    /*文字を太字にする設定*/
}
nav#menu ul li a {
    text-decoration: none;
    display: block;
    line-height: 61px;
    padding-top: 5px;
    color: #222;        /*文字色*/
    font-size: 16px;    /*文字サイズ*/
    letter-spacing: 0.1em;    /*文字間隔を少しあける設定*/
    text-shadow: #FFF 0px 2px;    /*テキストの影。色、右方向、下方向への指定。*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
    border-left: 1px solid #d4d4d4;    /*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
    background-color: #FFF;    /*背景色*/
    border-bottom: 1px solid #ccc;    /*メニューの下側の線の幅、線種、色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
    color: #48b796;    /*文字色*/
    font-size: 9px;    /*文字サイズ*/
    display: block;
    font-weight: normal;    /*文字を太字でなく標準に戻す設定*/
    letter-spacing: 0.2em;    /*文字間隔を少しあける設定*/
    line-height: 20px;
    padding-bottom: 5px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    clear: left;
    width: 997px;
    margin: 0px auto;
    padding-top: 30px;    /*メニューと下の左右のブロックの間に空ける余白*/

}
#contents2 {
    clear: left;
    width: 997px;
    margin: 0px auto;
    padding-top: 30px;
/*    background-color: #EEE;*/
}


/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
.bumoh2{
    padding-top: 0.1em;
}
#main {
    float: none;    /*右側に回り込み*/
    width: 100%;    /*メインコンテンツ幅*/
    padding-bottom: 30px;
}
#main sention{
    width: 80%;
}
#main img{
text-align: center;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
    clear: both;
    background-color: #FFF;    /*背景色（古いブラウザだとここの色のみが出ます）*/
/*    background: url(../images/crown.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));*/
    /*マークとグラデーション*/
/*    background: url(../images/crown.png) no-repeat left center, -webkit-linear-gradient(#FFF, #e6e6e6);*/
    /*同上*/
/*    background: url(../images/crown.png) no-repeat left center, linear-gradient(#FFF, #e6e6e6);            同上*/
    /*    -webkit-box-shadow: 1px 2px 7px #999;    影の設定。右・下・ぼかし幅・色の設定
    box-shadow: 1px 2px 7px #999;            同上*/
    font-size: 140%;
    font-weight: none;
    text-align: center
    color: #333;    /*文字色*/
    padding: 10px;    /*左から、上、右、下、左への余白*/
    border: 2px solid #886817;        /*上の線の幅、線種、色*/
    text-align: center;
    width: 50%;
    margin: 20px auto;


/*    border-radius: 6px 6px 0px 0px;*/
    /*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
#main .fas{
    color:#86690C;
    padding-right: 0.3em;
}
#menubar .fas{
    padding-right: 0.2em;
}

/*mainコンテンツのh3タグ設定*/
#main h3 {
    clear: both;
    background-color: #FFF;    /*背景色（古いブラウザだとここの色のみが出ます）*/
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));    /*グラデーション*/
    background: -webkit-linear-gradient(#FFF, #e6e6e6);    /*同上*/
    background: linear-gradient(#FFF, #e6e6e6);            /*同上*/
    font-size: 100%;

    padding: 8px 15px;    /*左から、上下、左右への余白*/
    border: 1px solid #d4d4d4;        /*線の幅、線種、色*/
    border-radius: 6px;    /*角丸のサイズ*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
    padding: 10px 10px 15px;    /*左から、上、左右、下への余白*/
}


#return-top {
    background-color: #008842;
    border-radius: 50%;
    bottom: 10px;
    color: #fff;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    outline: 0;
    position: fixed;
    right: 10px;
    text-align: center;
    width: 50px;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
    clear: both;
    margin: 0px auto;
    text-align: center;
    font-size: 12px;
}
ul#footermenu li {
    display: inline;
    padding: 0px 5px;
}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
    background-color: #FFF;    /*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));    /*グラデーション*/
    background-image: -webkit-linear-gradient(#FFF 80%, #ededed);    /*同上*/
    background-image: linear-gradient(#FFF 80%, #ededed);            /*同上*/
    clear: both;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #333;    /*文字色*/
/*    background: #FFF;    */
    border-top: 1px solid #DDD;
    font-size: 80%;
}
footer .pr {
    display: block;
    font-size: 80%;
}
footer a {
    text-decoration: none;
    color: #333
}
footer a:hover {
    color: #555;
}




/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
    clear: both;
}
#pagetop a {
    color: #FFF;        /*文字色*/
    font-size: 10px;    /*文字サイズ*/
    background-color: #48b796;    /*背景色*/
    text-decoration: none;
    text-align: center;
    width: 10em;    /*ボックス幅*/
    display: block;
    float: right;
}
/*マウスオン時*/
#pagetop a:hover {
    background-color: #333;
    color: #FFF;
}


/*その他
---------------------------------------------------------------------------*/
.look {
    background: #dcdcdc;
}
.mb15,
.mb1em {
    margin-bottom: 15px;
}
.clear {
    clear: both;
}
ul.disc {
    padding: 0em 25px 15px;
    list-style: disc;
}
.color1 {
    color: #f61468;
}
.pr {
    font-size: 10px;
}
.btn {
    font-size: 13px;
}
.wl {
    width: 96%;
}
.ws {
    width: 50%;
}
.c {
    text-align: center;
}
.mini1 {
    font-size: 12px;
    line-height: 1.5;
}
figcaption {
    font-size: 11px;
}
/*
img {
    max-width: 100%;
    height: auto;
}
*/
#menubar_hdr {
    display: none;
}



a.cp_btn {
    display: block;
    text-decoration:none;
    width: 90%;
    padding: 0.5em;
    text-align: center;
    color: #FFF;
    border-radius: 15px;
    background: #008842;
    overflow: hidden;
    font-size: 200%;
}
a.cp_btn span {
    display:inline-block;
    transition: .5s
}
a.cp_btn:hover span {
    transform: rotateX(360deg);
}
*, *:before, *:after {
    box-sizing: border-box;
}
.col_2{
    width: 100%;
    display: flex;
    display: -ms-flexbox; /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
    width: 50%;
    padding: 10px;
}

.taisho{
    background-color: #CCC
}
.bumon{
    padding-bottom: 50px;
}
.bumon ul{
    padding-top: 0px;
    margin-left: 30px
}

.bumon li{
    padding-right: 1.3em;
    padding-bottom: 2.5em;
    display: inline-block;
}

.bot{
    width: 31%;
    display: inline-block;
    padding: 0.5em 0.5em;
    margin-bottom: 5px;
    text-decoration: none;
    background: #f7f7f7;
    border-left: solid 6px #86690C;/*左線*/
    color: #333;/*文字色*/
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.bot:active {
    box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}
.bot a:link{

}
.comment{
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #CCC;
    margin-bottom: 30px;
}
.comment2{
/*    margin-top: 10px;*/
/*    width: 90%;*/
    padding: 30px;

    margin-bottom: 28px;
}
.zoom {
    overflow: hidden;
margin: 0 30px 30px;
    padding-bottom: 0px;
/*    width: 100%;*/
}
.zoom img {
    opacity: 1;
    transition: transform 0.3s linear;
margin: 0 auto;
}
.zoom:hover img {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
img{
    padding-bottom: 0px;
}
.prize ul li{
        display: inline;
    }
.prize2 ul li{
    display: inline;
}

.company{
    font-size: 200%;
    vertical-align: 35%;
    font-weight: 600;
}
.company2{
    font-size: 130%;
    vertical-align: 35%;
    font-weight: 600;
}
.show{
    width: 70%;
}
.show2{
    width: 100%;
}
.bumon ul li{
    display: inline;
}
.bumon img{
    width: 30%;
}
#menubar_hdr, #menubar_hdr:before, #menubar_hdr:after {
    box-sizing: content-box;
}

.cnt{
    text-align: center;
}
.slv {
    text-align: center;
}
.slv img{
    width: 50%;
}
.nogitou{
    margin: 3em 0 5em 0;
    text-align: center;
    font-size: 150%;
}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    background-image: none;
}
header .inner {
    width: auto;
    height: auto;
    text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
    position: static;
    padding-top: 20px;
}
/*電話番号ボックスの設定*/
header .inner address {
    position: static;
    padding-bottom: 20px;
    background-image: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu {
    height: auto;
    overflow: hidden;
    border-bottom: none;
    border-left: 1px solid #d4d4d4;
    margin-bottom: 6px;
}
nav#menu ul {
    width: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
    width: 50%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid #d4d4d4;
}
nav#menu ul li a:hover {
    border-bottom: none;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
    border-left: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    width: auto;
    margin-right: 6px;
    margin-left: 6px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
    float: none;
    width: auto;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
    margin: 0px 6px 1%;
}
#mainimg aside {
    height: auto;
    width: 100%;
}
#mainimg aside img {
    vertical-align: bottom;
}
#slide_image {
    height: auto;
    width: 100%;
    position: relative;
}
#slide_image2 {
    height: auto;
    width: 100%;
    position: absolute;
    left:0px;
    top:0px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
    display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
    height: auto;
    width: 100%;
}
/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
td iframe {
    height: 300px;
    width: 100%;
}
    .square_btn{
        font-size: 150%;
    }
    a.cp_btn {
        font-size: 150%;
    }
    .company{
        font-size: 150%;
        vertical-align: 30%;
    }
    .company2{
        font-size: 130%;
        vertical-align: 30%;
        margin-left: 2em;
    }
    .prize2 ul li{
        display: block;;
    }
    .bumon img{
        width: 43%;
    }
    .bot{
        width: 45%;
        display: inline-block;
        padding: 0.5em 0.5em;
        margin-bottom: 8px;
        text-decoration: none;
        background: #f7f7f7;
        border-left: solid 6px #86690C;/*左線*/
        color: #333;/*文字色*/
        font-weight: bold;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    }

}


/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    background-image: none;
}
header .inner {
    width: auto;
    height: auto;
    text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
    position: static;
    padding-top: 20px;
}
header h1 img {
    width: 70%;    /*画面に対してロゴ画像を70％の幅に*/
    height: auto;
}
/*電話番号ボックスの設定*/
header .inner address {
    position: static;
    padding-bottom: 20px;
    background-image: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu {
    height: auto;
    overflow: hidden;
    border-bottom: none;
    border-left: 1px solid #d4d4d4;
    margin-bottom: 6px;
}
nav#menu ul {
    width: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
    width: 50%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid #d4d4d4;
}
nav#menu ul li a:hover {
    border-bottom: none;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
    border-left: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    width: auto;
    margin-right: 6px;
    margin-left: 6px;
    font-size: 100%;
    line-height: 1.6em;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
    float: none;
    width: auto;
}

    #main h2 {

        font-size: 120%;
        width: 100%;
    }

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
    margin: 0px 6px 1%;
}
#mainimg aside {
    height: auto;
    width: 100%;
}
#mainimg aside img {
    vertical-align: bottom;
}
#slide_image {
    height: auto;
    width: 100%;
    position: relative;
}
#slide_image2 {
    height: auto;
    width: 100%;
    position: absolute;
    left:0px;
    top:0px;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    padding-top: 10px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
    background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));    /*マイナスアイコンとグラデーション*/
    background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);                    /*同上*/
    background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);                            /*同上*/
}
section#new h2.close {
    background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));    /*プラスアイコンとグラデーション*/
    background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);                        /*同上*/
    background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);                                /*同上*/
}
/*ブロック全体の設定*/
#new {
    margin-bottom: 15px;
}
#new dl {
    height: auto;
    padding-left: 0;
}
/*日付設定*/
#new dt {
    float: none;
    width: auto;
}
/*記事設定*/
#new dd {
    padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
    width: auto;
    padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
    width: 100px;
    padding: 2px;
}

/*各物件一覧ボックス
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
    margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
    float: none;
    margin: 0px;
    width: 100%;
    height: auto;
/*    margin-bottom: 10px;*/
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
    display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
    height: auto;
    width: 100%;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
    display: none;
}
#menubar_hdr {
    display: inline;
    position: absolute;
    top: 0px;
    right: 10px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
    background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
    background-image: linear-gradient(#fbfbfb, #e5e5e5);
    padding: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 0px 0px 6px 6px;
}

/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
.ta1 td iframe {
    height: 300px;
    width: 100%;
}
    .square_btn{
        font-size: 100%;
    }
    a.cp_btn {
        font-size: 120%;
    }
    .col_2 > div{
        width: 100%;
}
    .prize ul li{
        display: block;
    }
    .prize2 ul li{
        display: block;
    }
    .imgsize{
        width: 35%
    }
    .company{
        font-size: 120%;
        text-align: center
    }
    .company2{
        font-size: 120%;
        text-align: center
    }
    .show{
        width: 100%;
    }
    .bumon img{
        width: 100%;
    }
    .bumon ul{
        margin-left: 0px;
    }
    .bumon img{
        padding-bottom: 10px;
    }
    .bot{
        width: 90%;
        margin: 0 auto;
        display: inline-block;
        padding: 0.5em 0.5em;
        margin-bottom: 8px;
        text-decoration: none;
        background: #f7f7f7;
        border-left: solid 6px #86690C;/*左線*/
        color: #333;/*文字色*/
        font-weight: bold;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    }
    .slv img{
        width: 100%;
    }
    .comment2{
        padding: 10px;
    }
    .nogitou{
        font-size: 120%;
    }
    #main h2{
        font-size: 120%;
    }


}

