@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォントファミリー*/
	color: #444;		/*全体の文字色*/
	background: #fff;	/*背景色*/
}
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;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #444;	/*リンクテキストの色*/
}
a:hover {
	color: #f15f84;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 990px;	/*コンテナー幅*/
	margin: 0px auto;
}

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	text-align: right;		/*文字を右寄せ*/
	line-height: 40px;		/*行間*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	height: 120px;	/*高さ*/
	background: #f15f84 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	border-radius: 8px 8px 0px 0px;	/*左上、右上、右下、左下への角丸のサイズ*/
	position: relative;
}
/*トップページのヘッダーブロック*/
#top header {
	background: #f15f84 url(../images/header_bg_top.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	height: 312px;	/*高さ*/
}
/*ロゴ画像*/
header #logo img {
	position: absolute;
	left: 40px;	/***************************************2017-3-4変更  ヘッダーブロックに対して左から40pxの場所に配置*/
	top: 5px;	/***************************************2017-3-4変更  ヘッダーブロックに対して上から25pxの場所に配置*/
}
/*トップページのロゴ画像*/
#top header #logo img {
	position: absolute;
	left: 40px;	/***************************************2017-3-4変更  ヘッダーブロックに対して左から40pxの場所に配置*/
	top: 50px;	/***************************************2017-3-4変更  ヘッダーブロックに対して上から50pxの場所に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
nav#menubar {
	border: 1px solid #f15f84;	/*線の幅、線種、色*/
	border-radius: 0px 0px 8px 8px;		/*左上、右上、右下、左下への角丸のサイズ*/
	background: #FFF;	/*背景色（※古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
}
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: 60px;	/*高さ*/
	width: 960px;	/*幅*/
	margin-left: 13px;	/*左側に空けるスペース*/
	border-left: 1px solid #d6d6d6;	/*左側の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*右側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 158px;	/*幅*/
	text-align: center;	/*文字をセンタリング*/
	font-size: 15px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #fff;		/*左側の線の幅、線種、色*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	padding: 8px 0px;		/*メニュー内の上下、左右へとる余白*/
	background: url(../images/mark1.png) no-repeat 7px center;	/*矢印マークの読み込み。リピートさせず、左から15px、上下中央の配置。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: 1px solid #fff;	/*左側の線の幅、線種、色*/
}
/*マウスオン時の設定*/
nav#menubar ul li:hover {
	background: #fff;	/*背景色*/
}
/*装飾用文字の設定*/
nav#menubar ul li span {
	display: block;
	color: #f15f84;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	margin-top: -8px;	/*少し上にずらす設定*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	padding-top: 30px;	/*メニューブロックとコンテンツとの間に空ける余白*/
}

/*メインコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#main {
	float: RIGHT;	/*左側に流し込み*/
	width: 730px;	/*コンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 15px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #f15f84 url(../images/mark2.png) no-repeat 15px center;	/*背景色とマーク画像の読み込み*/
	padding: 5px 40px;	/*上下、左右への余白*/
	border-radius: 8px;	/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする*/
}


/*洗濯機コンテンツのh2タグの設定*/
h2#wash {



  position: relative;/*相対位置*/
  padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
  color: #ff6a6a;/*文字色*/
  border-top: dotted 1px gray;
  border-bottom: dotted 1px gray;
  background: #fffff4;
  font-size: 140%;	/*文字サイズ*/
}

h2#wash:before {

  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0.25em;/*アイコンの位置*/
  top: 0.5em;/*アイコンの位置*/
  color: #ff6a6a; /*アイコン色*/
}




.box28 {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #FFC107;
}
.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #FFC107;
    color: #ffffff;
    font-weight: bold;
}
.box28 p {
    margin: 0; 
    padding: 0;
}






/*サービスページのリスト設定*/
ul#service {
  border: solid 2px skyblue;
  border-radius: 5px;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

ul#service li  {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;
}

ul#service li:before {
  

  position: absolute;
  left : 1em;/*左端からのアイコンまでの距離*/
  color: skyblue;/*アイコン色*/
}

.fa-chevron-circle-right{color:#ff0000;}













/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-radius: 8px;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする*/
}




/*洗濯機のh3タグの設定*/
h3#wash {
  color: #ff8c00;/*文字色*/
  border: solid 3px #FFC107;/*線色*/
  padding: 0.5em;/*文字周りの余白*/
  border-radius: 0.5em;/*角丸*/
  font-size: 120%;	/*文字サイズ*/
}












/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*上、左右、下への余白*/
}

#main p.bk {
color: #000000;
background-color: #EEEEEE
}


#main p.dot {border-style: dotted;}


#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}






/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);										/*同上*/
	background: linear-gradient(#FFF, #ebebeb);												/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	margin-bottom: 0.5em;
	color: #f15f84;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main section.list h4::first-letter {
	border-left: 3px solid #f15f84;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*リンクの設定*/
#main section.list a {
	padding: 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/
#main section.list a:hover {
	background: #fff;	/*背景色*/
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
#main section.list h4 + figure ~ p {
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*h4タグ直下に画像がある場合のtableタグ設定*/
#main section.list h4 + figure ~ table {
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
	width: 75%;			/*テーブル幅*/
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 100%;			/*テーブル幅*/
	margin-bottom: 5px;
}
#main section.list table,
#main section.list table td,
#main section.list table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#main section.list table td,
#main section.list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main section.list table th{
	width: 18%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #dfe0c8;	/*背景色*/
}
/*白い説明用ブロック*/
#main section.list table td {
	width: 30%;	/*幅*/
}

/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
	width: 110px;	/*画像の幅デフォルト100*/
	height: 82px;	/*画像の高さデフォルト100*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
.thumbnail:hover {
	border: 1px solid #000;	/*マウスオン時の枠線の幅、線種、色*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: LEFT;	/*右側に回り込み*/
	width: 230px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding-bottom: 10px;		/*下への余白*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #f15f84;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #e4e4e4;	/*背景色*/
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内のbox2
---------------------------------------------------------------------------*/
#sub .box2 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f5c9c4;	/*背景色*/
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*box2内のメニューの設定*/
#sub .box2 ul.submenu {
	margin-bottom: 0px;
}


/*サブコンテンツ内のbox3
---------------------------------------------------------------------------*/
#sub .box3 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #b3d9ad;	/*背景色*/
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*box3内のメニューの設定*/
#sub .box3 ul.submenu {
	margin-bottom: 0px;
}



/*サブコンテンツ内のbox4
---------------------------------------------------------------------------*/
#sub .box4 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #bae2e8;	/*背景色*/
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*box4内のメニューの設定*/
#sub .box4 ul.submenu {
	margin-bottom: 0px;
}








/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.list {
	font-size: 11px;	/*文字サイズ*/
	width: 100%;		/*ボックスの幅*/
	border-bottom: 1px solid #d1d1d1;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d1d1d1;		/*左の線の幅、線種、色*/
	border-right: 1px solid #d1d1d1;	/*右の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
}
#sub section.list a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時の設定*/
#sub section.list a:hover {
	background: #fff;	/*背景色*/
}
/*１つめにあたるボックスの設定*/
#sub > section.list:first-of-type,
#sub h2+section.list {
	border-top: 1px solid #d1d1d1;	/*上の線の幅、線種、色*/
}
/*h4見出しタグ*/
#sub section.list h4 {
	color: #f15f84 !important;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*サムネイル画像設定*/
#sub section.list figure {
	float: left;	/*左に回り込みさせる設定*/
	width: 25%;		/*幅*/
	margin-right: 5px;	/*画像の右側に空けるスペース*/
}

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

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	clear: both;
	text-align: center;
	background: #f15f84;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 8px;		/*角丸のサイズ*/
	margin-bottom: 10px;
	padding: 10px 0px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #fff;
}
footer a:hover {
	color: #fff;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #6f6f6f;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#6f6f6f), to(#5c5c5c));	/*グラデーション*/
	background: -webkit-linear-gradient(#6f6f6f, #5c5c5c);	/*同上*/
	background: linear-gradient(#6f6f6f, #5c5c5c);			/*同上*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 100px;
	height: 40px;

}
.ta1 td .specialbox img {
	vertical-align: middle;
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする設定*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #f15f84;		/*文字色*/
	background: #fff;	/*背景色*/
	font-size: 20px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	width: 50px;
	line-height: 50px;
	border-radius: 25px;
	border: 1px solid #f15f84;
	display: block;
	float: right;
	margin-bottom: 30px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #f15f84;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	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;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	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;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f15f84;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
img {
	max-width: 100%;
	height: auto;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 3px;
	margin: 0px 5px;
}
#menubar_hdr {
	display: none;
}


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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 15px;
}

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;	/*表示させない設定*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img,
#top header #logo img {
	position: absolute;
	left: 15px;	/*ヘッダーブロックに対して左から15pxの場所に配置*/
	top: 25px;	/*ヘッダーブロックに対して上から25pxの場所に配置*/
}
/*トップページのヘッダーブロック（※PC版でのトップ以外で読み込んでいる小さ目画像に置き換えています）*/
#top header {
	background: #f15f84 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	height: 120px;	/*高さ*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: auto;
	width: auto;
	margin: 0;
	overflow: hidden;
	border: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;		/*メニューの幅*/
	border: none;	/*枠線を一旦リセット*/
	border-bottom: 1px solid #d6d6d6;	/*下線の幅、線種、色*/
}
nav#menubar ul li a {
	width: 100%;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*最後から１つめと２つめのメニューの設定*/
nav#menubar ul li:nth-last-of-type(1),
nav#menubar ul li:nth-last-of-type(2) {
	border-bottom: none;	/*下線を消す*/
}

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

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}



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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;	/*表示させない設定*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img,
#top header #logo img {
	position: absolute;
	left: 15px;	/*ヘッダーブロックに対して左から15pxの場所に配置*/
	top: 25px;	/*ヘッダーブロックに対して上から25pxの場所に配置*/
	width: 80%;
}
/*トップページのヘッダーブロック（※PC版でのトップ以外で読み込んでいる小さ目画像に置き換えています）*/
#top header {
	background: #f15f84 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	height: 120px;	/*高さ*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: auto;
	width: auto;
	margin: 0;
	overflow: hidden;
	border: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;		/*メニューの幅*/
	border: none;	/*枠線を一旦リセット*/
	border-bottom: 1px solid #d6d6d6;	/*下線の幅、線種、色*/
}
nav#menubar ul li a {
	width: 100%;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*最後から１つめと２つめのメニューの設定*/
nav#menubar ul li:nth-last-of-type(1),
nav#menubar ul li:nth-last-of-type(2) {
	border-bottom: none;	/*下線を消す*/
}

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

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグとtableタグ設定*/
#main section.list p,
#main section.list table {
	margin-left: 0 !important;
	width: 100% !important;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 15px;
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	margin-left: 0;
	width: 100%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, url(../images/bg1.png), #f15f84;		/*マイナスアイコンと背景画像など*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, url(../images/bg1.png), #f15f84;		/*プラスアイコンと背景画像など*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
	padding-left: 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

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

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

}






/*車洗浄 説明枠
---------------------------------------------------------------------------*/

.box6 {
    padding: 0.5em 1em;
    margin: 2em 0;
    background: #f0f7ff;
    border: dashed 2px #5b8bd0;/*点線*/
}
.box6 p {
    margin: 0; 
    padding: 0;
}


/*車 枠おわり
---------------------------------------------------------------------------*/






/*カーペット洗浄 説明枠
---------------------------------------------------------------------------*/

.box25{
    position: relative;
    background: #fff0cd;
    box-shadow: 0px 0px 0px 5px #fff0cd;
    border: dashed 2px white;
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #454545;
}
.box25:after{
    position: absolute;
    content: '';
    right: -7px;
    top: -7px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ffdb88 #fff #ffdb88;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
.box25 p {
    margin: 10; 
    padding: 10;
}




#carpet dt {
  clear: left;
  float: left;
  width: 25%;
  font-weight: bold;
  font-size: 130%;
}
#carpet dd { 
	margin: 0 0 0 25%; 
	padding-bottom: 20px;
	}
#carpet dd:before { content: '……　'; }

/*カーペット 枠おわり
---------------------------------------------------------------------------*/






















---------------------------------------------------------------------------*/
/*リストの装飾*/

.list-2{
   list-style: none;
   font: 14px ;
   padding:0;
   margin:0;
}
.list-2 li { 
   border-bottom:2px dashed;
   border-color:#cdcdcd; /* 線の色 */
   position: relative;
   max-width:600px; /* 横幅 */
   
   /*margin:0.5em 0 !important;*/
   /*padding: 0 0 0.5em 1.4em;*/
  padding: 7px 5px 7px 40px;
  margin: 7px 0 10px 30px;
}
.list-2 li:last-child{ 
   border:none;
}
.list-2 li:before {
   background-color:  #ffa952; /* 点の色 */
   position: absolute;
   content: '';
   top:0.9em;
   left: 0.5em;
   width: 7px;
   height: 7px;
   border-radius: 4px;
}


ol.car1{
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding: 1.5em;
}
ol.car1 li{
  position:relative;
  padding: 7px 5px 7px 40px;
  margin: 7px 0 10px 30px;
  font-weight: bold;
  font-size:14px;
  border-bottom:dashed 1px #F6A38B;
}
ol.car1 li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #F6A38B;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}



ul.car2 {
  background: #fffde8;
  box-shadow: 0px 0px 0px 10px #fffde8;/*線の外側*/
  border: dashed 2px #ffb03f;/*破線*/
  border-radius: 9px;
  margin-left: 10px;/*はみ出ないように調整*/
  margin-right: 10px;/*はみ出ないように調整*/
  padding: 0.5em 0.5em 0.5em 2em;
  list-style: disc;
}

ul li.car2{
  line-height: 1.5;
  padding: 0.5em 0;
  
}





ul.car3{
  position: relative;
  background: #fffde8;
  padding: 15px 15px 15px 30px;
  font: 14px;
  margin-left: 10px;/*はみ出ないように調整*/
  margin-right: 10px;/*はみ出ないように調整*/
  border: dashed 2px #adcce8;
  border-radius:9px;
  color: #448ccb;
  box-shadow: 0px 0px 0px 10px #fffde8;/*線の外側*/
  list-style: disc;
}
ul.car3:before{
  content: "オプション";  /* 好きな文字を記述 */
  position: absolute;
  display: block;
  top: -15px;
  left: 20px;
  background: #fffde8;
  font-size: 16px;
  font-weight: bold;
  padding: 0 10px;
}
ul.car3 li{
  font-weight: bold;
}







ul.cp_list {
	padding: 0 0.5em;
	list-style-type: none;
}
ul.cp_list li {
	position:relative;
	padding: 0.5em;
	margin-bottom: 4px;
	background: #FFECB3;
	border-left : 2.5em solid #FF7043;
}
ul.cp_list li::before {
	position: absolute;
	content: "ul.cp_list {
padding: 0 0.5em;
list-style-type: none;
}
ul.cp_list li {
position:relative;
padding: 0.5em;
margin-bottom: 4px;
background: #FFECB3;
border-left : 2.5em solid #FF7043;
}
ul.cp_list li::before {
position: absolute;
content: "\002713";
display: block;
padding: 0.5em;
color: #fff;
top: 50%;
left: -2.25em;
transform: translateY(-50%);
}
ul.cp_list li:last-of-type {
border-bottom: none;
}2713";
	display: block;
	padding: 0.5em;
	color: #fff;
	top: 50%;
	left: -2.25em;
	transform: translateY(-50%);
}
ul.cp_list li:last-of-type {
	border-bottom: none;
}


/*リスト装飾おわり
---------------------------------------------------------------------------*/


video {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 4 / 3; /* 動画のアスペクト比 */
  display: block;
  margin: auto;
}

video1 {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 16 / 9; /* 動画のアスペクト比 */
  display: block;
  margin: auto;
}