@charset "utf-8";
@import url( "./sortable.css" );



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, 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%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;
	transition: 0.5s;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: underline;
}
a img:hover {
	opacity: 0.7 ;
	transition: 0.5s;
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1700px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	height: 100px;
	margin: 0 3%;
	background: #1a1b1c;
	text-decoration: none;
}
/*ヘッダーブロック*/
body#top header {
	margin: 0 0 40px 0;
	height: auto;
}
/*ロゴ画像*/
header #logo img {
	position: absolute;
	top: 30%;
	left: 33%;
}
/*ロゴ画像*/
body#top header #logo img {
	width: 350px;
}
header #logo {
	width: 100%;
	background: #1a1b1c;
	height: 70px;
	box-shadow: 0 0 8px gray;
}
/*メイン画像*/
#mainimg {
	position: absolute;
	bottom: 0px;
	width: 100%;
}
/*メイン画像*/
#top #mainimg {
	position: static;
}
#top #mainimg img:hover {
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	padding: 0 3%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;
	padding-bottom: 50px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;
	position: relative;
	width: 20%;
	text-align: center;
	line-height: 1.6;
	font-weight: bold;
}
#menubar li a {
	display:  block;text-decoration: none;
	background: #222b30;
	color: #fff;
	font-size: 20px;
	padding: 10px 0;
}
/*英語表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-weight: normal;
	font-size: 10px;
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #30671a;
}
/*日本語の飾り文字（ふきだし風）*/
#menubar li.current a span::before {
	content: "▼";
	position: absolute;
	bottom: -15px;
	left: 47%;
	color: #30671a;
	font-size: 14px;
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;
	width: 72%;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	font-size: 1.6em;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	padding: 10px 20px;
	color: #333;
	text-align: center;
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2::first-letter {
	padding-left: 15px;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;
	border: 1px solid #ccc;
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 15px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section+section {
	margin-top: 50px;
}

/*ボックスの設定
---------------------------------------------------------------------------*/
#main .list {
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
	text-decoration: none;
	display: block;
	border: 1px solid #dcdcdc;
	padding: 3%;
}
#main .list h4 {
	position: relative;
	margin-bottom: 1.5em;
	font-size: 1.5em;
	line-height: 1.5em;
	color: #fff;
	background-color: #69b4eb;
	border-radius: 4px;
	padding: 0.6em 0.6em 0.6em 1em;
}
#main .list h4:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 40px;
	border: 10px solid transparent;
	border-top: 10px solid #69b4eb;
	width: 0;
	height: 0;
}
#main .list h5 {
	overflow: hidden;
	position: relative;
	font-size: 1.3em;
	line-height: 1.5em;
	color: #69b4eb;
	padding: 5px 5px 10px 10px;
	margin-bottom: 30px;
	border-bottom: solid 1px #b8b8b8;
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 22%;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;
	width: 25%;
	margin-right: 2%;
	margin-bottom: 2%;
}
/*マウスオン時のボックス内の写真設定*/
#main .list a:hover figure img {
	opacity: 0.8;
}

/*おすすめ*/
.osusume {
	display: block;
	overflow: hidden;
	margin: 1em 0 2em 0;
	padding: 1em 1em 1em 2em;
	text-align: center;
	color: #d12f7d;
	border-left: solid 6px #d12f7d;
	box-shadow: 4px 6px 12px rgba(0,0,0,0.15);
}
.box-title {
    position: relative;
	display: inline-block;
	padding: 0px 80px 0px 80px;
	margin-bottom: 10px;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
}
.box-title:before, .box-title:after {
    content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 60px;
	height: 1px;
	background-color: #333;
}
.box-title:before {left: 0;}
.box-title:after {right: 0;}
.osusume li {
	text-align: left;
    font-weight: bold;
	color: #000;
	font-size: 1.1em;
	padding: 0px 0px 10px 0px;
}

/*ボタン*/
.btn_box {
	display: block;
	margin: 0 auto;
    width: 90%;
	text-align: center;
}
.btn_left {
	display: inline-block;
    padding: 1em;
	color: #fff;
    text-align: center;
	float: left;
	width: 43%;
	background-image: -webkit-linear-gradient(#3189cb 0%, #0068b9 100%);
    background-image: linear-gradient(#3189cb 0%, #0068b9 100%);
	border-bottom: solid 5px #004880;
	border-radius: 40px;
	margin-bottom: 30px;
}
.btn_left:active {
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    border-bottom: none;
}
.btn_left a {
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
}
.btn_right {
	display: inline-block;
    padding: 1em;
	color: #fff;
    background-color: #e94558;
    text-align: center;
	float: right;
	width: 43%;
	background-image: -webkit-linear-gradient(#de4d93 0%, #d12f7d 100%);
    background-image: linear-gradient(#de4d93 0%, #d12f7d 100%);
	border-bottom: solid 5px #93255a;
	border-radius: 40px;
	margin-bottom: 30px;
}
.btn_right:active {
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    border-bottom: none;
}
.btn_right a {
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
}
.btn_big {
	display: inline-block;
    padding: 1em;
	color: #fff;
    background-color: #e94558;
	width: 80%;
	text-align: center;
	background-image: -webkit-linear-gradient(#de4d93 0%, #d12f7d 100%);
    background-image: linear-gradient(#de4d93 0%, #d12f7d 100%);
	border-bottom: solid 5px #93255a;
	border-radius: 40px;
	margin: 3em 0 4em 0;
}
.btn_big:active {
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    border-bottom: none;
}
.btn_big a {
	color: #fff;
	font-weight: bold;
	font-size: 1.3em;
}

/*文字設定
---------------------------------------------------------------------------*/
.ttl_price {
	color: #000;
	font-weight: bold;
	font-size: 1.1em;
}
.price_main {
	color: #000;
	font-weight: bold;
	font-size: 1.5em;
}
.text_red {
	color: #d12f7d;
	font-weight: bold;
	font-size: 1em;
}
.text_red_02 {
	color: #d12f7d;
	font-weight: bold;
	font-size: 1.2em;
}
.price_blue {
	color: #459fe2;
	font-weight: bold;
	font-size: 1.2em;
}
.marker_yellow {
	background: linear-gradient(transparent 80%, #fdef50 80%);
}
.bold {
	font-weight: bold;
	font-size: 1em;
	color: #000;
}
.text_bold {
	font-weight: bold;
	color: #000;
}

/*アイコン設定
---------------------------------------------------------------------------*/
.campaign {
	background: #e94558;
	color: #FFF;
	font-size: 90%;
	line-height: 1.5;
	padding: 5px 10px;
	border-radius: 4px;
	margin: 0px 5px;
	vertical-align: middle;
}
.fa-check-circle {
	color: #d12f7d;
}
.fa-crown {
	color: #ffc550;
}

/*ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 14px;
	width: 100%;
	margin-bottom: 30px;
}
#main .list table,
#main .list table td,
#main .list table th{
	border: 1px solid #dcdcdc;
}
#main .list table td{
	padding: 2%;
}
#main .list table th{
	font-weight: bold;
	padding: 2%;
}
/*色のついた見出しブロック*/
#main .list table th{
	width: 25%;
	text-align: center;
	font-weight: bold;
	background: #f6f6f6;
}
/*白い説明用ブロック*/
#main .list table td {
	width: 75%;	/*幅*/
}

#main .list table ul{
	float: left;
	width: 40%;
	padding: 3% 3% 3% 3%;
	background: #fafafa;
}

#main .list table li {
}

/*運営者情報
---------------------------------------------------------------------------*/
table {
	border-collapse: collapse;
	width: 95%;
	margin: 50px auto 70px auto;
}
table th, table td {
	padding: 20px 0px 20px 50px;
	border-bottom: 1px solid #dedede;
}
table th {
	text-align: left;
	width: 25%;
}
#attention {
	display: block;
	width: 95%;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	border: solid 4px #ebebeb;
}

#attention p {
	font-size: 14px;
	padding: 2em;
	margin: 0px;
	color: #464646;
}

.attention_ttl {
	display: block;
	width: 100%;
	padding: 1em 0 1em 0;
	color: #000;
	font-size: 18px;
	letter-spacing: 0.05em;
	text-align: center;
	border-bottom: solid 1px #69b4eb;
	margin: 0;
}

/*プライバシーポリシー
---------------------------------------------------------------------------*/
.policy_ttl {
	display: block;
	width: auto;
	padding: 1em;
	color: #000;
	background: #f6f6f6;
	font-size: 18px;
	letter-spacing: 0.05em;
	text-align: center;
	margin: 0;
}
#privacy_policy_box {
	display: block;
	width: 95%;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	margin-top: 50px;
	border: solid 4px #ebebeb;
}
#privacy_policy_box p {
	font-size: 14px;
	padding: 2em;
	margin: 0px;
	color: #464646;
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: right;
	width: 24%;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	padding-bottom: 10px;
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #b5b5b5;
	padding-left: 10px;
}

/*サブコンテンツ内box
---------------------------------------------------------------------------*/
#sub .box {
	padding: 15px;
	margin-bottom: 15px;
	background: #f2f2f2;
	background: rgba(0,0,0,0.05);
	border: solid 1px #dcdcdc;
	box-shadow: 0px 0px 1px 1px #fff inset;
	border-radius: 4px;
}
/*box1内のメニューの設定*/
#sub .box ul.submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
	position: relative;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.7em;
}
#sub .list p {
	display: block;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.9em;
}
#sub .list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 10px;
	border-top: 1px solid #dcdcdc;
	background: #fff;
}
/*最後ボックスの設定*/
#sub .list:last-of-type a {
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 20px;
}
/*ボックス内のh4タグ設定*/
#sub .list h4 {
	font-weight: bold;
	color: #459fe2;
}
/*ボックス内の写真設定*/
#sub .list figure img {
	float: left;
	width: 25%;	
	margin-right: 10px;
}

/*ページトップ
---------------------------------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#page_top i {
  padding-top: 16px
}
#page_top a {
  display: block;
  z-index: 999;
  padding: 5px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
page_top a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #1a1b1c;
	color: #fff;
	font-size: 85%;
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 50px 3% 30px;
	margin-top: 50px;
}
/*１行分の設定*/
#footermenu ul {
	width: 100%;
	text-align: center;
}
#footermenu ul li {
    display: inline; 	
    margin-right: 3em;
} 
#footermenu ul li a { 
    text-decoration: none;
    color: #fff; 	 
} 
#footermenu ul li a:hover{ 
    border-bottom: 1px solid #fff;	 
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #222322;
	padding: 10px 0 10px 0;
}
#copyright a {
	text-decoration: none;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;color: #333;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #F00;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}
#main .list .btn_left {
	width: 90%;
	margin-bottom: 10px;
	float: left;
}
#main .list .btn_right {
	width: 90%;
	margin-bottom: 10px;
	float: left;
}

	
/*サブコンテンツ内ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
	font-size: 15px;
	line-height: normal;
}
/*ボックス内の写真設定*/
#sub .list figure img {
	width: 15%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n,.m-n {display: none;}


/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
body#top header #logo img {
	width: 60%;
	top: 35%;
	left: 20%;
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックス設定*/
#main .list.compact {
	width: auto;
	float: none;
	margin-left: 0;
	border-bottom: 1px solid #dcdcdc;
}
#main .list.compact a {
	height: auto;
}
/*ボックス内写真設定*/
#main .list.compact figure img {
	float: left;
	width: 20%;
	margin-right: 10px;
}
#main .list table ul{
	float: left;
	width: 100%;
	padding: 5% 5% 5% 5%;
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	line-height: 1.5;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}


/*画面幅380px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:380px){

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 200px;
	bottom: 35px;
	left: 0px;
}
