@charset "utf-8";
/*--------------------------------------- css初期化 */

/* フォント共通設定 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, capion, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, av, section, summary, time, mark, audio, video {
	color: #666666;
	font-size: 16px;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-family: Arial, Helvetica, "メイリオ", sans-serif;
}


/* 色指定 */
:root {
	--color-black: #333333; /* 黒 */
	--color-red: #c12d05; /* 赤 */
	--color-palered: #fff4f4; /* 薄い赤 */
	--color-green: #0C9E50; /* 緑 */
	--color-blue: #054dc1; /* 青 */
	--color-brown: #BB8B1B; /* 茶 */
	--color-gray: #858585; /* 文字色用グレー */
	--color-mediumgray: #919191; /* 少し明るいグレー */
	--color-lightgray: #b9b9b9; /* 明るいグレー */
	--color-palegray: #F5F4F4; /* 薄いグレー */
	--color-palegrayline: #ebebeb; /* 線用の薄いグレー */
	--color-white: #ffffff; /* 白 */
	--gray-gradation: linear-gradient(0deg, var(--color-palegray) 0%, var(--color-white) 60px, var(--color-white) 100%);/* グレーのグラデーション */

	--color-seller: #8E4585;
	--color-buyer: teal;
	--color-manager: #c56600;
	--color-staff: #c5a000;
}
.me-fudousan
{
	background-color : #003264;
}
.me-plus
{
	background-color : #a5d232;
}
.me-myhome
{
	background-color : #f0693c;
}
.me-development
{
	background-color : #3f3982;
}
.default
{
	background-color : #222222;
}

/* ==================================================================================================== */
/* ▼ヘッダー */
header{
	height : 80px;
	border-bottom : 1px solid var(--color-gray);
	position : relative;
	display : grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 20px;
	padding : 0px 30px;
}
#NAVIGATION
{
	position : relative;
}
/* ボタンの基本デザインをリセット */
button[data-toggle],
#ACCOUNT_MENU button
{
    border: none;
    background: unset;
    padding: 0;
}
#NAVIGATION button
{
	display : grid;
    border: none;
    background: unset;
    padding: 0;
}
#NAVIGATION button span
{
	font-size : 12px;
}
/* ロゴマーク */
#HEADER_LOGO{
	display : none;
}
#HEADER_LOGO a
{
	position : absolute;
	top : 0;
	left : 0;
	display : block;
	width : 450px;
	height : 100%;
}
#HEADER_LOGO p,
#HEADER_LOGO span
{
	font-family: 'Noto Sans JP', sans-serif;
	/* font-family: Arial Black, Helvetica, "メイリオ", sans-serif; */
	font-size : 28px;
	letter-spacing: 2px;
	line-height: 1.5rem;
	margin-left: -2px;
}
#HEADER_LOGO p:nth-child(2)
{
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap : 2px;
    margin-top : 5px;
}
#HEADER_LOGO p:nth-child(2) span:nth-child(1)
{
    font-size : 16px;
    margin-left : 15px;
}
#HEADER_LOGO p:nth-child(1)
{
	font-size : 12px;
	letter-spacing: 1px;
	line-height: 0.8rem;
	margin-left: 0px;
}
#HEADER_LOGO img {
	height: 70px;
}
#HEADER_LOGO p:nth-child(2)::after
{
	content: "ベータ版";
    font-size: 1.0rem;
    margin-top: -13px;
    margin-left: 10px;
    border: 1px var(--color-gray) solid;
    display: inline;
    width: 100px;
    padding: 5px;
    position: relative;
    top: 5px;
    line-height: 1.4rem;
    text-align: center;
    border-radius: 5px;
}
/* ユーザー */
#USER_INFO
{
	display : grid;
	grid-template-columns: auto auto auto;
	gap : 20px;
	place-content: center;
	place-items: center;
	position : relative;
}
#USER_INFO > div > a
{
	display : grid;
	place-content: center;
	place-items: center;
	gap : 5px;
}
#USER_INFO img 
{
	width : 30px;
}
#USER_INFO span
{
	font-size: 12px;
}
button:hover,
#USER_INFO a:hover
{
	opacity : 0.5;
	cursor : pointer;
}
#ACCOUNT_MENU
{
    display : none;
	position : absolute;
	top : 80px;
	right : 10px;
	width : 150px;
	background-color : #ffffff;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
	border : 1px solid var(--color-gray);
	border-radius : 5px;
}
#ACCOUNT_MENU li
{
	border-bottom : 1px solid var(--color-gray);
}
#ACCOUNT_MENU li:last-child
{
	border : none;
}
#ACCOUNT_MENU li button,
#ACCOUNT_MENU li a
{
	width : 100%;
	text-align : left;
	padding: 15px;
	display : inline-block;
}

/* メインメニュー */
#MENU_LIST
{
    display : none;
	position: absolute;
	top: 65px;
	left: -30px;
	z-index: 2;
	overflow: hidden;
	background-color : var(--color-palegrayline);
	width : 100vw;
}

#ACCOUNT_MENU.active,
#MENU_LIST.active
{
    display : block;
}
#MENU_LIST a{
	display: grid;
	place-content: center;
	place-items: center;
	font-size : 12px;
	width: 100%;
	padding: 10px;
	line-height: 1.3em;
	border-right: none;
	border-bottom: 1px solid var(--color-white);
}
#MENU_LIST li:first-child a{
	border-left: none;
	background-color : var(--color-palegray);
}
#MENU_LIST li a img
{
	margin-bottom : 5px;
	width: 30px;
}
#MENU_LIST a:hover
{
	opacity : 0.5;
}


/* アカウント */
.account{
	display: grid;
    grid-template-columns: auto auto;
    place-items: center;
	justify-content: center;
    gap: 15px;
}
.account img
{
	width: 60px;
	height: 60px;
	object-fit: cover; /* 画像が枠内に収まるように切り取ります */
	border-radius: 50%; /* 画像を円形にします */
	-webkit-mask-image: radial-gradient(circle, white 50%, transparent 51%);
	mask-image: radial-gradient(circle, white 50%, transparent 51%);
}
/* ▲ヘッダー */



/* ▼フッター */
/* ▲フッター */







/* ==================================================================================================== */
/* 以下 パーツのデザイン　どこに置く？(要相談) */
#BREADCRUMB
{
	padding: 10px 0px 10px 0px;
}
#BREADCRUMB ul li
{
	font-size: 0.8rem;
}
#BREADCRUMB ul li:not(:last-child)::after
{
	content: "＞";
	display: inline-block;
	margin: 0px 5px 0px 5px;
}
#BREADCRUMB ul li a
{
	text-decoration: none;
	color: var(--color-medium);
}



/* ボタンデザイン */
/*============================= 背景色 =============================*/
.bg_color_palegray
{
	background-color : var(--color-palegray);
}

/*============================= ボタンデザイン =============================*/

/* ▼ボタンの基本デザイン */
.button_style, .button_style_mini
{
	overflow: hidden;
	position: relative;
	z-index: 1;
	width: 300px;
	cursor : pointer;
}
.button_style_mini
{
    width: 65px;
    padding: 5px 0px 5px 5px;
	font-size: 0.8rem;
}
.button_style:after, .button_style_mini:after
{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.button_style:hover:after, .button_style_mini:hover:after
{
	transform: scale(1, 1);
}
/* ▲ボタンの基本デザイン */


/* ▼ボタンの色 */
.button_black
{
	background-color : var(--color-dark);
	color : var(--color-white);
	border : 2px solid var(--color-dark);
}
.button_black:after
{
	background: var(--color-white);
	color : var(--color-black);
}
.button_black:hover
{
	color : var(--color-black);
}

.disabled
{
	width: 300px;
    background-color : #cccccc;
    border : 1px solid #a7a7a7;
    color : #555555;
	display : inline-block;
	padding : 10px 0px;
	position : relative;
}
.disabled:before
{
	background-image: url(../img/icon_next_white.png);
	background-size : 50%;
	background-repeat : no-repeat;
	content : "";
	display : inline-block;
	position : absolute;
	right : -10px;
	width : 50px;
	height : 50px;
}
.disabled:hover
{
    pointer-events : none;
    cursor : not-allowed;
    opacity : 1;
}


/* ▲ボタンの色 */


/* ▼矢印アイコン */
.next_link_button
{
	display : inline-block;
	padding : 10px 0px;
	position : relative;
}
.next_link_button:before
{
	background-image: url(../img/icon_next_white.png);
	background-size : 50%;
	background-repeat : no-repeat;
	content : "";
	display : inline-block;
	position : absolute;
	right : -10px;
	width : 50px;
	height : 50px;
}
.next_link_button:hover::before
{
	background-image: url(../img/icon_next.png);
}
/* ▲矢印アイコン */


/* コンテンツのデザイン */

.tile_design
{
	border : 1px solid var(--color-dark);
	border-radius : 10px;
	padding : 20px;
	background: var(--gray-gradation);
}




/* ==================================================================================================== */
/* 以下 master.css に移す */
/*　▼フォーム　*/
input[type="text"]
{
	padding : 10px;
}

/*　▲フォーム　*/

/*　▼レイアウト　*/
.text_center {
	text-align: center;
}
/*　▲レイアウト　*/

/* wbrを使用するときはその親要素に br_specificationを指定すること*/
.br_specification {
	word-break: keep-all;
}
.br_specification wbr:before {
	content: "\200B";
}

/* ----------------------------------------------------------------------------- */
/* 850px以上 */
/* ----------------------------------------------------------------------------- */
@media screen and (min-width: 850px) {
	header
	{	
		grid-template-columns: auto 1fr auto;
	}
    #HEADER_LOGO {
		display: grid;
		grid-template-columns: 70px auto;
		gap: 20px;
		align-items: center;
		color: var(--color-gray);
		font-size : 12px;
		position : relative;
    }
	#MENU_LIST
	{
		width: 50vw;
	}
}