@charset 'utf-8';

@import url("estate.css");
/* @import url("company.css"); */
/* @import url("fasion.css"); */

.char_cnt{
	font-size: 120%;
    font-weight: bold;
	font-family:Verdana;
}

/*======================================================================
　基本設定
======================================================================*/
* {
	margin:0;
}

/* 常にスクロールバーを表示 */
html {
	height:100%;
	padding:0;
	margin-bottom:1px;
	overflow-y:scroll;
        scroll-behavior: smooth;
}

/* 基本配置用
-----------------------------------*/
body {
	color:#666666;
	line-height:18px;
	font-size:12px;
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3",sans-serif;
	padding:0;
	margin-bottom:1px;
}

img {
	border:none;
}


/* 基本リンク指定
-----------------------------------*/
a:link {
	color: #3D96F4;
}
a:visited {
	color: #3D96F4;
}
a:hover {
	color: #FF6600;
}
a:active {
	color: #3D96F4;
}


/*======================================================================
　ヘッダ
======================================================================*/
#header_wrapper {
	width:100%;
	height:100%;
	min-width:928px;
}
#header_wrapper_single {
	width:100%;
	height:100%;
	min-width:928px;
}

#header {
	width:100%;
}

/* ヘッダ上部
-----------------------------------*/
#header .top_area {
	width:990px;
	padding:14px 14px 0;
}

/* ロゴ
-----------------------------------*/
#header .logo {
	float:left;
	height:81px;
}

#header .logo_company {
	float:left;
	color:#FFFFFF;
	font-weight:bold;
	padding:30px 0 0 14px;
}

/* リンク
-----------------------------------*/
#header .links {
	float:right;
	color:#FFFFFF;
	text-align:right;
}
#header .links a {
	color:#FFFFFF;
	font-weight:bold;
}

/* タブ
-----------------------------------*/
#header .tab_area {
	float:left;
	padding-bottom:7px;
}

#header .tab_area a {
	float:left;
	display:block;
	width:120px;
	height:26px;
	outline:none;
	color:#660000;
	text-align:center;
	font-weight:bold;
	background:url(../img/tab.gif) no-repeat left top;
	padding-top:9px;
	margin-right:3px;
}
#header .tab_area a:hover {
	color:#333333;
	text-decoration:none;
	background-position:right top;
}
#header .tab_area a.selected {
	color:#333333;
	text-decoration:none;
	background-position:right top;
}


/* マニュアル
-----------------------------------*/
#header_wrapper #header .manual {
	float:right;
	font-size:11px;
	font-weight:normal;
	padding-top:8px;
}
#header_wrapper_single #header .manual {
	float:right;
	font-size:11px;
	font-weight:normal;
	clear:right;
	padding-top:30px;
}


/* メニュー
-----------------------------------*/
#header .menu_area {
	height:100%;
	background-color:#eaeaea;
}
#header_wrapper #header .menu_area {
	margin:0 14px;
}
#header_wrapper_single #header .menu_area {
	margin:10px 14px 0;
}
#header .menu_area1 {
	height:100%;
}

#header ul {
	display:block;
	list-style:none;
	background:url(../img/menu_line.gif) no-repeat left top;
	margin:0;
	padding:0 0 0 13px;
}

#header li {
	float:left;
	position:relative;
	padding-right:3px;
}
#header li::before{
	content:"";
	display:block;
	width:3px;
	height:14px;
	background-color:#fff;
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	margin:auto 0;
}
#header li::after{
	content:"";
	display:block;
	width:1px;
	height:14px;
	background-color:#c9c9c9;
	position:absolute;
	top:0;
	bottom:0;
	right:1px;
	margin:auto 0;
}
#header li a {
	display:block;
	color:#660000;
	padding:11px 13px;
}
#header li a:hover {
	color:#944D4D;
}
#header li.selected a {
    color: #333333;
    font-weight: bold;
    text-decoration: none;
}

/* アコーディオン
-----------------------------------*/
#accordion .menu {
    position: relative;
    width: 100%;
    height: 35px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}
#accordion .menu li {
    list-style: none;
    background-color:#EEEEEE;
}
#accordion .menu > li {
    float: left;
    width: 120px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #D0D0D0;
    box-sizing: border-box;
}

#accordion .menu > li a {
    display: block;
    color: #333;
    padding: 0 10px;
    text-decoration: none;
}

#accordion .menu > li a:hover {
    color: #fff;
}

#accordion .menu > li.selected {
    background-color:#D0D0D0;
}

#accordion ul.menu2ndLevel {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

#accordion .menu > li:hover {
    color: #fff;
    background-color: #00A3DD;
    -webkit-transition: all .5s;
    transition: all .5s;
}

#accordion .menu2ndLevel li {
    border-bottom: 1px solid #D0D0D0;
}

#accordion .menu2ndLevel li a:hover {
    background: #00A3DD;
}

/* 下矢印 */
#accordion .initBottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 11px 0;
	float: right;
    border-right: 1px solid #0099CC;
    border-bottom: 1px solid #0099CC;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
#accordion .menu:before,
#accordion .menu:after {
    content: " ";
    display: table;
}

#accordion .menu:after {
    clear: both;
}

/* アニメーション */
#accordion .menu > li.menuSingle {
    position: relative;
}

#accordion li.menuSingle ul.menu2ndLevel {
    position: absolute;
    top: 35px;
    width: 100%;
    padding: 0;
    background: #00A3DD;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

#accordion li.menuSingle:hover ul.menu2ndLevel {
    top: 35px;
    visibility: visible;
    opacity: 1;
}

/*======================================================================
　メッセージ（エラー・ログアウト）
======================================================================*/
#message_wrapper {
	width:100%;
	height:95px;
	min-width:928px;
}

#message {
	width:100%;
}

/* ヘッダ上部
-----------------------------------*/
#message .top_area {
	width:980px;
	padding:14px 14px 0;
}

/* ロゴ
-----------------------------------*/
#message .logo {
	float:left;
	height:81px;
}

#message .logo_company {
	float:left;
	color:#FFFFFF;
	font-weight:bold;
	padding:30px 0 0 14px;
}


/*======================================================================
　コンテンツ
======================================================================*/
#contents {
	clear:both;
	width:980px;
	padding:12px 14px 20px;
}


/* サブメニュー
-----------------------------------*/
#submenu {
	width:100%;
}

#submenu a {
	float:left;
	display:block;
	height:23px;
	text-align:center;
	background-color:#EEEEEE;
	border-bottom:1px solid #FFFFFF;
	padding:6px 20px 0;
	margin-right:3px;
}

#submenu a.selected {
	height:24px;
	color:#FFFFFF;
	font-weight:bold;
	text-decoration:none;
	background-color:#D0D0D0;
	border-bottom:none;
}

#submenu div {
	float:left;
	display:block;
	height:23px;
	text-align:center;
	background-color:#EEEEEE;
	border-bottom:1px solid #FFFFFF;
	padding:6px 20px 0;
	margin-right:3px;
}

#submenu div.selected {
	height:24px;
	color:#660000;
	font-weight:bold;
	text-decoration:none;
	background-color:#D0D0D0;
	border-bottom:none;
}

#submenu .space {
	float:left;
	display:block;
	width:15px;
	height:29px;
	padding:0;
	background:#FFFFFF url(../img/submenu_space.gif) repeat-y center top;
}

/* 内容
-----------------------------------*/
#contents .base_box {
	border:5px solid #D0D0D0;
	padding: 25px 25px 130px 25px;
}

/* タイトル
-----------------------------------*/
#contents .base_box .page_title {
	color:#333333;
	font-size:17px;
	font-weight:bold;
	background:url(../img/title_bg.gif) repeat-x left bottom;
	padding-bottom:20px;
	margin-bottom:15px;
}

/* サブタイトル
---------------------------*/
#contents .base_box .sub_title {
	line-height:20px;
	color:#660000;
	font-size:14px;
	font-weight:bold;
	border-bottom:4px solid #EAEAEA;
	padding-bottom:5px;
	margin:10px 0;
}

#contents .base_box .sub_title a {
	font-size:12px;
	font-weight:normal;
}

/* テーブル
-----------------------------------*/
#contents table {
	color:#333333;
	font-size:12px;
	word-break:break-all;
}

/* リストヘッダ
-----------------------------------*/
#contents .list_header {
	margin-bottom: 5px;
}

/* リスト
-----------------------------------*/
#contents .list {
	background-color:#CCCCCC;
	margin-bottom: 5px;
}

#contents .list th {
	color:#660000;
	background-color:#FFFFCC;
}
#contents .list th a {
	text-decoration:none;
}

#contents .list tr {
	background-color:#FFFFFF;
}
#contents .list tr.odd {
	background-color:#FFFFFF;
}
#contents .list tr.even {
	background-color:#F3F3F3;
}
#contents .list tr.red {
	background-color:#FFDFDF;
}
#contents .list tr.blue {
	background-color:#DFDFFF;
}
#contents .list tr.green {
	background-color:#DFFFDF;
}

#contents .list tr.gray {
    background-color:#bcbcbc;
}

#contents .list tr.light-blue {
    background-color:#e0f7ff;
}

#contents .bulk_area {
	background:url(../img/bulk_arrow.gif) no-repeat 7px bottom;
	padding-bottom:20px;
}

#contents .bulk_area table.frame {
	border:1px solid #CCCCCC;
	border-right:none;
	background-color:#FFFFFF;
}

#contents .bulk_area table.frame th {
	width:29px;
	color:#660000;
	text-align:center;
	vertical-align:middle;
	border-right:1px solid #CCCCCC;
	background-color:#FFFFCC;
}

#contents .bulk_area table.frame td {
	padding:5px;
	border-right:1px solid #CCCCCC;
}

#contents .bulk_area table.frame table {
	border:none;
}
#contents .bulk_area table.frame table tr {
	border:none;
}
#contents .bulk_area table.frame table td {
	border:none;
}

/* 編集
---------------------------*/
#contents .headline {
	height:26px;
	line-height:20px;
	/*color:#660000;*/
	color:#333333;
	font-size:14px;
	font-weight:bold;
	text-indent:10px;
	background-color:#EAEAEA;
	padding-top:8px;
	margin:10px 0;
}

#contents .edit {
	border:1px solid #D7D7D7;
	background-color:#FFFFFF;
	margin-bottom:5px;
}

#contents .edit th {
	color:#333333;
	text-align:right;
	background-color:#F0F0F0;
	/*border:1px solid #D7D7D7;*/
	padding-right:10px;
}
#contents .edit th .input_info{
	font-weight: normal;
}
#contents .edit th.alignLeft{
	text-align: left;
}

#contents .edit td {
	background-color:#FFFFFF;
	padding-left:15px;
}
#contents .edit td.hidden_colum {
	background:url(../img/dot.gif) repeat;
}
#contents .edit td.tdPdf{
	padding-top: 5px;
	padding-bottom: 5px;
}
#contents .edit #pdf_pdf{
	margin-bottom: 5px;
}

#contents .edit td img{
	vertical-align:middle;
}

#contents .regist_area {
 display:inline-block;
 *display:inline;
 *zoom:1;
 background-color:#7FCCFF;
 padding:3px;
 border-radius:5px;         /* CSS3 */
 -moz-border-radius:5px;    /* Firefox */
 -webkit-border-radius:5px; /* Safari,Chrome */
}

#contents .info_box {
    border: 1px solid #d7d7d7;
    padding: 5px;
    margin: 0 auto 10px;
    color:#333;
}

#contents .headline_80p {
    width: 80%;
    height: 26px;
    line-height: 20px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    text-indent: 10px;
    background-color: #EAEAEA;
    padding-top: 8px;
    margin: 10px 0;
    float:left;
}
#contents .wrapBtn {
    height:50px;
    float:left;
    margin-left:10px;
}
#contents .btnClick {
    display:inline-block;
    width:70px;
    height:31px;
    line-height:31px;
    margin:10px 0;
    text-align: center;
    font-size:12px;
    font-family: verdana;
    text-decoration: none;
    color:#2B2B2B;
    border:solid 1px #0387D5;
    border-radius:4px;
    -webkit-border-radius:4px;
    background:-webkit-gradient(linear,left top,left bottom,from(#f0f0f0),color-stop(0.5,#f0f0f0),color-stop(0.5,#fff),to(#fff));
}
#contents .btnClick.on{
    color:#fff;
    border:solid 1px #0387D5;
    border-radius:4px;
    -webkit-border-radius:4px;
    background:#12A5FC;
    background:-webkit-gradient(linear,left top,left bottom,from(#12A5FC),to(#0387D5));
}
#contents .open_close tr{
    display:none;
}

fieldset {
	border:2px solid #EAEAEA;
	margin-bottom:5px;
	padding:5px 10px 10px;

}
legend {
	color:#660000;
	font-weight:bold;

}

#form_edit input[type="text"] {
	border:1px solid #CCCCCC;
	padding:2px;
}

#form_edit input[type="text"]:focus {
	background-color:#F0F8FF;
	border:1px solid #0066CC;
	padding:2px;
}

#form_edit textarea {
	font-size:12px;
	border:1px solid #CCCCCC;
	padding:2px;
}

#form_edit textarea:focus {
	background-color:#F0F8FF;
	border:1px solid #0066CC;
	padding:2px;
}
input[type="checkbox"],
input[type="radio"] {
    vertical-align:middle;
}
input[type="submit"],
input[type="button"] {
    cursor: pointer;
}
.admin_mail_category_list input[type="checkbox"]{
	margin-right: 3px;
	vertical-align: -2px;
}

/* 写真表示パターン */
#form_edit label.pattern {
    display: block;
    float: left;
    margin: 5px 10px 8px 0;
}
#form_edit label.pattern img{
    border:1px solid #e1e1e1;
	padding: 3px;
}
#form_edit .chkList label{
    display:inline-block;
    width:30%;
}


/* 写真
---------------------------*/
/*.secPhotoRegist{
	line-height:200%;
	color:#333333;
}
.secPhotoWrap{
	width:50%;
	float:left;
}
.secPhotoWrap:nth-child(2n+1){
    clear:both;
}

.secPhotoRegist .secPhoto{
	border:solid 1px #D7D7D7;
	padding:10px;
}

.secPhotoRegist .secPhoto:nth-of-type(2n){
	border:none;
}
.secPhotoRegist .secPhoto:nth-of-type(n+3){
	border-top:none;
}*/


.photo {
	background-color: #D7D7D7;
	margin-bottom:5px;
}
.photo th {
	background-color: #FFFFFF;
}
.photo td {
	background-color: #FFFFFF;
}
.photo tr {
	background-color: #FFFFFF;
}

/* 検索
---------------------------*/
.input_search {
	background-color:#CCFFCC;
	border:1px solid #7F9DB9;
}

/* エラー
---------------------------*/
.input_necessary {
	border:1px solid #998B7C;
	background-color: #FFE7CE;
	padding:2px;
}
.input_necessary:focus {
	background-color:#F0F8FF;
	border:1px solid #0066CC;
	padding:2px;
}
#form_edit input[type="text"].input_necessary {
	border:1px solid #998B7C;
	background-color: #FFE7CE;
	padding:2px;
}
#form_edit input[type="text"].input_necessary:focus {
	background-color:#F0F8FF;
	border:1px solid #0066CC;
	padding:2px;
}
#form_edit textarea.input_necessary {
	border:1px solid #998B7C;
	background-color: #FFE7CE;
	padding:2px;
}
#form_edit textarea.input_necessary:focus {
	background-color:#F0F8FF;
	border:1px solid #0066CC;
	padding:2px;
}

.input_error {
	background-color:#FFD0D0;
	border:1px solid #FF0000;
	padding:2px;
}
#form_edit input[type="text"].input_error {
	background-color:#FFD0D0;
	border:1px solid #FF0000;
	padding:2px;
}
#form_edit textarea.input_error {
	background-color:#FFD0D0;
	border:1px solid #FF0000;
	padding:2px;
}

.error_message {
	color:#FF0033;
}
.error_message a {
	color:#FF0033;
}
.error_message a:hover {
	color:#FF6600;
}

/* フォント
---------------------------*/
.input_label {
	font-weight: bold;
	padding-right: 10px;
}

.input_info {
	color:#FF3366;
	font-size:11px;
}

.input_example {
	color:#666666;
	font-size:11px;
}

.font_red {
	color:#990000;
	font-weight:bold;
}

.font_blue {
	color:#000099;
	font-weight:bold;
}

.font_green {
	color:#009900;
	font-weight:bold;
}

.color_red{
	color:#FF0000;
}
.input_label input,
.input_label select{
    vertical-align:middle;
}
/* 写真
---------------------------*/
.secPhotoRegist {
    color: #333333;
    line-height: 200%;
	display: flex;
	flex-wrap: wrap;
}
.secPhotoWrap {
    width: 50%;
	border: 1px solid #d7d7d7;
	border-top:none;
	box-sizing:border-box;
}
.secPhotoWrap:first-child{
	border-top: 1px solid #d7d7d7;
}
.secPhotoWrap:nth-child(2){
	border-top: 1px solid #d7d7d7;
}
.secPhotoWrap:nth-child(even){
	border-left: none;
}
.secPhotoWrap:nth-child(4n){
	border-bottom: 1px solid #d7d7d7;
}
.secPhotoWrap:last-child{
	border-right: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
}
.secPhotoRegist .secPhoto {
    padding: 10px;
}

/* メッセージ
---------------------------*/
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  color: #c09853;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}
.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
  text-decoration: none;
}

.close:hover {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* フッターメニュー */
#secFooterMenu{
	background:url(../img/bgFooter.png) left top repeat;
	position:fixed;
	left:0px;
	bottom:-150px;
	width:100%;
	height:150px;
	z-index:1000;
}
#secFooterMenu .footerIn{
	width:980px;
	margin:15px 0 15px 30px;
}

#secFooterMenu .linkFooter{
	display:block;
	float:left;
	width:98px;
	height:18px;
	text-align:center;
	background-color:#FFFFFF;
	border:solid 1px #CCCCCC;
	padding:5px 0;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	margin:0 5px 5px 0;
}

#secFooterMenu .secFooterRegist{
	padding:10px 0 0 0;
}
#secFooterMenu .secFooterRegist input[type='button']{
	width:200px;
	height:40px;
	line-height:40px;
	color:#FFFFFF;
	border:solid 2px #308A00;
	background-color:#61BD23;
	vertical-align:middle;
	font-weight:bold;
	cursor:pointer;
}
#secFooterMenu .secFooterRegist input[type='button']:hover{
	background-color:#94EF56;

}
/* アイコン */
.iconText{
    font-size: 10px;
    display: inline-block;
    color: #fff;
    padding: 0 3px;
    margin-right: 3px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-weight: normal;
    text-indent: 0;
}
.bgBlue{
    background-color: #00aff0;
}
.bgOrange{
    background-color: #ff6600;
}
.bgGreen{
    background-color: #70B438;
}
.bgPurple{
    background-color: #483D8B;
}

.support_text {
    font-size: 12px;
    font-weight: bold;
    color: #F36;
}

/* secSearch */
.secSearch,
.secSearch .boxInput{
	display: flex;
	align-items: center;
}
.secSearch{
	justify-content: space-between;
}
.secSearch select{
	margin: 0 20px 0 5px;
}

/*-----------------------------------------------
    余白指定用
-----------------------------------------------*/
.mt5{margin-top: 5px !important;}
.mt10{margin-top: 10px !important;}
.p10{padding: 10px !important;}
