@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/* ▼フォント系 */
:root {
	--color-black: #353535; /* 黒 */
	--color-lightblack: #bababa; /* 薄い黒 */
	--color-lightgray: #e2e2e2; /* 明るいグレー */
	--color-white: #ffffff; /* 白 */
	
	--color-palegrayline: #e2e2e2; /* 線用の薄いグレー */
	--color-gray: #939292; /* 文字色用グレー */
	--color-palegray: #f7f7f7; /* 背景用薄いグレー */
	--color-darkgray: #bababa; /* 濃いグレー*/

	--color-main-orange:#ed6103; /* オレンジ */
	--color-lightorange:#FEEDD8; /* 薄いオレンジ */
	--color-orange-gradation: linear-gradient(to right, #f5862f, #ed6103);/* オレンジのグラデーション */

	--color-brown : #6b3a00; /* 茶 */
	--color-red: #98251e; /* 赤 */

	--color-blue: #1f2a44; /* 青 */
	--color-blue-gradation: linear-gradient(to right,#25396c,#1f2a44);/* 青のグラデーション */

	/* フォント */
	--title-font : corporate-logo-ver2, sans-serif;

}
* {
	font-family: "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.6em;
	font-weight: 400;
	color: var(--color-lightblack);
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.06em;
	box-sizing: border-box;
	color : var(--color-black);
}
a, .button_style
{
	transition : all 0.5s;
}
html, body {
	overflow-x: hidden;
	box-sizing: border-box;
}
main {
	margin-top: 60px;
}

/* コンテンツをふわっと表示 */
.animation_contents,
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animation_contents.show,
section.show {
  opacity: 1;
  transform: translateY(0);
}



/* リンク系 */
.text_link
{
	text-decoration: underline;
	cursor : pointer;
}
.text_link:hover
{
	opacity : 0.5;
}
/* パンくずリスト */
#BREADCRUMB
{
	display: block;
	margin-top: 25px;
}
#BREADCRUMB li
{
	display: inline-block;
	font-size: 0.875rem;
	color: var(--color-gray);
}
#BREADCRUMB li a:hover
{
	color: var(--color-main-orange);
}
#BREADCRUMB li:not(:last-of-type)::after
{
	content: ">";
	font-size: 0.85rem;
	vertical-align: middle;
	margin-left: 0.5em;
}

/* ▼ボタン */
.button_style {
	font-size: 18px;
    padding: 10px 45px 10px 25px;
	line-height: 1.1em;
	text-align: center;
	cursor: pointer;
	font-family : var(--title-font);
	position : relative;
	display: inline-block;
	white-space: nowrap;
}
.button_style::after
{
    content: "→";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 1;
}
label.button_style 
{
	display: inline-block;
}
.button_style.bg_color_blue input[type="submit"]
{
	border : none;
	color : var(--color-white);
}.button_style.bg_color_blue input[type="submit"]:hover
{
	color : var(--color-blue);
}

/* ▼ボタンサイズ */

/* ▼ボタン色 */
.bg_color_blue {
	background-color: var(--color-blue);
	color: var(--color-white);
	border: 1px solid var(--color-blue);
}
.bg_color_blue:hover {
	background-color: var(--color-white);
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
}
.bg_color_blue:hover::after
{
	color: var(--color-blue);
}
.bg_color_blue::after
{
	color: var(--color-white);
}
.bg_color_red {
	background-color: var(--color-red);
	color: var(--color-white);
	border: 1px solid var(--color-red);
}
.bg_color_red:hover {
	background-color: var(--color-white);
	color: var(--color-red);
	border: 1px solid var(--color-red);
}
.bg_color_red:hover::after
{
	color: var(--color-red);
}
.bg_color_red::after
{
	color: var(--color-white);
}
.bg_color_orange {
	background-color: var(--color-main-orange);
	color: var(--color-white);
	border: 1px solid var(--color-main-orange);
}
.bg_color_orange:hover {
	background-color: var(--color-white);
	color: var(--color-main-orange);
	border: 1px solid var(--color-main-orange);
}
.bg_color_orange:hover::after
{
	color: var(--color-main-orange);
}
.bg_color_orange::after
{
	color: var(--color-white);
}
.button_style.text_blue:hover
{
	color : var(--color-main-orange);
}
.bg_color_lightorange
{
	background-color: var(--color-lightorange);
}

/* テキスト色 */
.text_white {
	color: var(--color-white);
}
.text_red {
	color: var(--color-red);
}
.text_blue {
	color: var(--color-blue);
}
.text_orange
{
	color : var(--color-main-orange);
}
.text_brown
{
	color : var(--color-brown);
}
.text_gray
{
	color : var(--color-gray);
}
.border_bottom_blue
{
	border-bottom : 1px solid var(--color-blue);
	padding-bottom : 5px;
	display : inline-block;
}
/* タイトル */
.title_font
{
	font-family : var(--title-font);
}

/* 左右配置デフォルト */
.two_column_contents_layout {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-justify-content: space-between;
	/* IE10 */
	justify-content: space-between;
}
.two_column_contents_layout.even{
	display: block;
}
.two_column_contents_layout_text{
	width : 100%;
	order : 2;
}
.two_column_contents_layout_img{
	width : 100%;
	order : 1;
	margin-bottom : 30px;
}
.two_column_contents_layout_text_large{
	width : 100%;
	order : 1;
}
.two_column_contents_layout_img_small{
	width : 100%;
	max-width: 350px;
	margin: auto;
	margin-bottom : 15px;
	order : 1;
}
.two_column_contents_layout_text_small{
	width : 100%;
	order : 2;
}
.two_column_contents_layout_img_large{
	width : 100%;
	order : 1;
	margin-bottom : 10px;
}

/* 3カラムタイル */
.three_column_contents_wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 10px;
}
/* リスト */
.text_sentence li
{
	text-indent: -1.5em;
	padding-left : 1.5em;
	margin : 10px;
}

/* テーブル */
#INQUIRY
{
	padding : 10px;
}
.table_style 
{
	width: 100%;
}
.table_style th, .table_style td
{
	padding: 20px 0px;
	line-height: 1.3em;
}
.table_style tr:not(:last-of-type)
{
	border-bottom: 2px solid var(--color-palegrayline);
}
.table_style th {
	white-space: nowrap;
	color: var(--color-blue);
	font-size: 0.875rem;
	padding-right: 20px;
	text-align: right;
	width : 30%;
}
.table_style td {
	overflow-wrap: anywhere;
}
/* フォーム */
input::placeholder, textarea::placeholder{
	color : #ccd4da;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder{
	color : #ccd4da;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder{
	color : #ccd4da;
}
.label_style {
    font-size: 0.875rem;
    display: inline-block;
    padding: 10px;
    margin: 5px;
    line-height: 1em;
    border: 1px solid var(--color-brown);
    color: var(--color-black);
    cursor: pointer;
    background: #fff;
	border-radius : 3px;
}
input:checked + .label_style {
    border: 1px solid var(--color-brown);
    color: #ffffff;
    background: var(--color-brown);
}
/* ラベル系 */
.border_bottom_red
{
	border-bottom : 2px solid var(--color-red);
	padding-bottom: 5px;
    border-bottom-width: 5px;
	display : inline-block;
}
.border_bottom_brown
{
	border-bottom : 1px solid var(--color-brown);
}
.border_radius
{
	border-radius : 10px;
}

/* 背景 */

.bg_orang_gradation{
	background-image: var(--color-orange-gradation);
}
.bg_blue_gradation{
	background-image: var(--color-blue-gradation);
}

.dot_circle
{
    position : absolute;
}

/* 点線 */
.stitch
{
	position : relative;
}
.stitch_top:before
{
	top : 5px;
}
.stitch_top:before,
.stitch::after
{
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;	/* 線の太さ */
  background-image: repeating-linear-gradient(
    to right,
    #ffffff 0,
    #ffffff 6px,
    transparent 6px,
    transparent 12px
  ); /* 0~6px 白塗り 6px~12px 空白　を繰り返す */
}
.text_orange.stitch_top:before,
.text_orange.stitch::after
{
  background-image: repeating-linear-gradient(
    to right,
    var(--color-main-orange) 0,
    var(--color-main-orange) 6px,
    transparent 6px,
    transparent 12px
  ); /* 0~6px 白塗り 6px~12px 空白　を繰り返す */
}
.text_brown.stitch_top:before,
.text_brown.stitch::after
{
  background-image: repeating-linear-gradient(
    to right,
    var(--color-brown) 0,
    var(--color-brown) 6px,
    transparent 6px,
    transparent 12px
  ); /* 0~6px 白塗り 6px~12px 空白　を繰り返す */
}

/* サークル模様 */
.dots-mark{
  display: inline-block;
}

.dots-mark.white circle{
  fill: var(--color-white);
}

/* ヘッダー */
#HEADER_LOGO{
	display: block;
	width: 300px;
	margin-left: 5px;
	margin-top : 10px;
}
header
{
	padding : 5px 10px 10px 5px;
	display : grid;
	gap : 20px;
	grid-template-columns: 1fr auto;
	align-items: center;
	width: 100%;
	background: var(--color-orange-gradation);
	z-index: 10000;
}
header.stitch
{
	position : fixed;
}
header a,
header span
{
	font-size : 14px;
	color: var(--color-white);
}
header .logo
{
	display : grid;
	grid-template-columns: auto auto;
	align-items: center;
}
header .logo span > span
{
	color : var(--color-black);
}
.nav-box
{
	display: none;
	flex-direction: column;
	padding: 0;
}
.nav-list a:hover span,
.nav-list a:hover
{
	color : var(--color-red);
}
.nav-box.show {
	display: block;
	position : absolute;
	top : 80px;
	right : 0px;
	width : 100vw;
	padding-bottom: 8px;
	margin : 0px;
	background: var(--color-orange-gradation);
}
.nav-box.show .nav-list  li{
	text-align : center;
	padding : 10px;
}
.contact_tel
{
	text-align : center;
	margin-top : 5px;
	border-top : 1px solid var(--color-white);
	padding-top : 20px;
}
.contact_tel a{
	font-size : 21px;
	display : grid;
	grid-template-columns: auto auto;
	gap : 5px;
	justify-content: center;
}
.contact_tel a:hover
{
	color : var(--color-red);
}
.contact_tel span{
	display : block;
	font-size : 11px;
	margin-top : -3px;
}
.icon_contact a
{
	display : grid;
	grid-template-columns: auto auto;
	gap : 5px;
	align-items: center;
	justify-content: center;
}
.icon_contact span
{
	display : inline-block;
	background-color : var(--color-white);
	border-radius : 50px;
	position : relative;
	width : 25px;
	height : 25px;
}
.icon_contact span img
{
	position : absolute;
	top : 0;
	left : 0;
	bottom : 0;
	right : 0;
	margin : auto;
	width : 15px;
}
.icon_contact span:nth-of-type(2)
{
	width: auto;
	height: auto;
	transition: all 0.5s;
	background-color : transparent;
}
.line_link img
{
	width : 30px;
}
.line_link span
{
	background-color : transparent;
	padding : 0px;
	width: 100%;
}

/* モバイル用ハンバーガーメニュー */
.hamburger {
	display: flex;
	justify-self: auto;
	flex-direction: column;
	justify-content: center;
	width: 30px;
	height: 30px;
	cursor: pointer;
	margin-right : 20px;
}
.hamburger span {
	background: var(--color-white);
	height: 3px;
	margin: 4px 0;
	transition: 0.3s;
}


/* フッター */
#FOOTER_LOGO
{
	display : block;
	margin-bottom : 30px;
	width : 300px;
}
footer
{
	background-color : var(--color-blue);
	padding-top : 20px;
}
footer::after
{
	display : none;
}
footer a,
footer p
{
	color : var(--color-white);
}
footer > div
{
	display : grid;
	grid-template-columns: 1fr;
	gap : 20px;
	padding : 20px;
}
footer .tel
{
	margin : 20px 0px;
	border-bottom : 1px solid var(--color-gray);
	padding-bottom : 10px;
	display : inline-block;
	padding : 10px;
}
footer .tel a
{
	display : grid;
	grid-template-columns:  auto auto;
	align-content: center;
	gap : 10px;
	font-size : 21px;
}
footer .tel a:hover
{
	color : var(--color-main-orange);
}
footer ul
{
	display : grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap : 10px;
	margin-top : 20px;
}
footer div > ul > li:nth-child(2)
{
	grid-column : 2 / 5;
}
footer ul li a
{
	font-size : 14px;
	font-family: var(--title-font);
}
footer ul li a:hover
{
	color : var(--color-main-orange);
}
.footer_search_area div
{
	display : grid;
	grid-template-columns: auto 1fr;
	gap : 10px;
}
.footer_search_area span
{
	font-size : 14px;
	color : var(--color-white);
	font-family: var(--title-font);
}
.footer_search_area ul
{
	grid-template-columns: 1fr 1fr 1fr;
	gap : 10px;
	margin-top : 0px;
	margin-bottom : 10px;
}
.footer_search_area ul li:nth-child(2)
{
	grid-column : 2 / 2;
}
.footer_search_area a
{
	font-size : 12px;
	color : var(--color-gray);
}
/* タイトル */
.main_title_wrapper
{
	text-align : center;
}
.main_title
{
	color : var(--color-brown);
	font-family : var(--title-font);
	font-size: clamp(1.25rem, 6.4vw, 2.25rem);
	font-weight: normal;
	line-height: 1.3em;
}
.contents_title
{
	color : var(--color-brown);
	font-family : var(--title-font);
	font-size: clamp(1.25rem, 6.4vw, 2.25rem);
	font-weight: normal;
	line-height: 1.3em;
}
.contents_title p
{
	font-size: clamp(1rem, 4.8vw, 1.5rem);
    line-height: 2.5em;
}
.contents_title .stitch
{
	position : relative;
	padding-bottom : 5px;
}
.cta_estate_image .stitch::after
{
    bottom : -0.15em;
}
.contents_title .stitch::after
{
	bottom : 0px;
}
.subtitle
{
	display : grid;
	grid-template-columns: auto auto;
	justify-content: center;
	align-items: center;
	gap : 20px;
}
.subtitle::before
{
	content : "";
	background-image : url(../img/icon_title.png);
	background-size : 100%;
	background-repeat : no-repeat;
	width : 18px;
	height : 23px;
	display : inline-block;
}
.contents_icon
{
	position : relative;
}
.contents_icon:before
{
	content : "";
    position : absolute;
	background-image : url(../img/icon_contents.png);
	background-repeat : no-repeat;
	width : 125px;
	height : 125px;
	background-size: 80%;
    z-index : -1;
}
.item_title
{
	font-size: clamp(1rem, 4.8vw, 1.5rem);
	color : var(--color-blue);
	font-family: var(--title-font);
}
/*ニュース情報*/
.news_category 
{
    padding: 0px 20px;
    font-size: 12px;
    border: 1px solid var(--color-red);
    color: var(--color-white);
    background-color: var(--color-red);
}
.news_details 
{
	margin-top : 0px;
}
.news_details .image_container
{
	display: inline-block;
	width : calc(100% / 3 - 10px);
	margin : 5px;
}

/* ヘッダー下追従ナビゲーション */


/* CTA */
.cta > div.cta_estate_image
{
	display : grid;
	grid-template-columns: auto;
	padding : 20px 0px;
	position : relative;
}
.cta > div.cta_estate_image:before
{
	display : none;
}
.cta h3
{
	font-size : 28px;
	text-align : center;
	z-index: 2;
    position: relative;
	margin : 20px;
}
.cta h3,
.cta h3 span
{
	font-family: var(--title-font);
	line-height : 2.5rem;
}
/* 左側部分 */
.cta > div > div > ul
{
	display : grid;
	grid-template-columns: 45px 1fr 1fr;
	gap : 5px;
	margin : 10px auto;
	width : 90%;
}
.cta > div > div > ul > li
{
	font-family: var(--title-font);
	position : relative;
	text-align: center;
	margin-left : 5px;
	padding-bottom: 10px;
}
.cta > div > div > ul > li:first-child
{
	background-color : var(--color-red);
	padding : 20px 5px 10px 5px;
	color : var(--color-white);
	margin : 10px 10px 0px 0px;
	grid-row : 1 / 3;
	display: grid;
    align-content: space-around;
}
.cta > div > div > ul > li:first-child::after
{
	content: "";
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent var(--color-red);
}
.cta > div > div > ul > li > div
{
	background-color : var(--color-white);
	border-radius : 10px;
	margin-top : 10px;
	text-align: center;
	padding : 30px 5px 10px 5px;
	height : calc(100% - 10px);
	display: grid;
    gap: 5px;
}
.cta > div > div > ul > li > div > img
{
	width : 40px;
	margin : auto;
}
.cta > div > div > ul > li > div > p
{
	color : var(--color-blue);
	font-family: var(--title-font);
	font-size : 16px;
	line-height : 21px;
	text-align : center;
}
.cta > div > div > ul > li > span
{
	display : block;
	position : absolute;
	top : -5px;
	right : 0;
	left : 0;
	margin : auto;
	color : var(--color-white);
	background-color : var(--color-red);
	border-radius : 30px;
    width: 35px;
    padding: 5px;
	text-align: center;
}

/* 右側部分 */
.cta_present
{
	display : grid;
	grid-template-columns: auto auto;
	padding-top : 5px;
	position : relative;
	max-width : 480px;
	margin : auto;
}
.cta_present > *:nth-child(n+3)
{
	grid-column: 1 / -1;
}
.cta_present p
{
	color : var(--color-brown);
	font-size : 32px;
	line-height : 2.3rem;
	font-family: var(--title-font);
	text-align : center;
	display : block;
	padding: 10px 30px 100px 30px;
    background-image: url(../img/cta_ribbon.png);
    background-repeat: no-repeat;
    background-size: cover;
    grid-column: 1 / 3;
    min-width: 365px;
    margin: 0px auto 20px auto;
}
.cta_present > img
{
	position : absolute;
    height: 140px;
    right: 20px;
    top: 40px;
	transform: rotate(20deg);
}
.cta_present > span
{
	margin-top : -35px;
	margin-bottom : 10px;
}
.cta_present > div
{
	display : grid;
	grid-template-columns: 32% auto;
	align-items: center;
	margin-bottom : 10px;
}
.cta_present > div > span
{
	position : relative;
	text-align : right;
	padding-right : 5px;
	font-family: var(--title-font);
}
.cta_present > div > a
{
	width: 90%;
	max-width: 320px;
}
.cta_present > div > span::before,
.cta_present > div > span::after{
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  right: 20px;
  background: var(--color-white);
}
.cta_present > div > span::before{
  transform: translateY(-50%) rotate(-20deg);
  bottom: -10px;
}
.cta_present > div > span::after{
  transform: translateY(-50%) rotate(20deg);
  top: -10px;
}
.cta_present a
{
	font-size : 24px;
}
.cta div:first-child
{
    width: 580px;
    position: absolute;
    top: 0px;
    right: -280px;
}

/* コラム ブロック状タイル */

/* 物件タイル */
.estate_box
{
	width: 100%;
	position : relative;
}
.esteate_text
{
	position : relative;
	padding : 10px;
}
.estate_category
{
	display : grid;
	grid-template-columns: auto auto;
	position : absolute;
	justify-content: center;
	gap : 10px;
	top : 10px;
	left : 10px;
	padding : 6px 10px;
	background-color : var(--color-red);
	color : var(--color-white);
	font-size : 14px;
	z-index : 5;
}
/* 物件 タグ */
.estate_tag {
	font-size: 12px;
	line-height: 1em;
	padding: 3px 5px;
}
.estate_tag:not(:last-of-type) {
	margin-right: 5px;
}

.estate_tag.member_only {
	background-color: var(--color-main-orange);
	color: var(--color-white);
	border: 1px solid var(--color-main-orange);
}

.estate_tag.price_down {
	background-color: var(--color-white);
	color: var(--color-red);
	border: 1px solid var(--color-red);
}

.estate_tag.new_arrival {
	background-color: var(--color-white);
	color: var(--color-brown);
	border: 1px solid var(--color-brown);
}

.estate_tag.photo_substantial {
	background-color: var(--color-white);
	color: var(--color-brown);
	border: 1px solid var(--color-brown);
}
.estate_tag.estate_cateogry {
	padding: 3px 5px;
	color: var(--color-red);
	border: 1px solid var(--color-red);
}
.estate_tag.sales {
	background-color: var(--color-white);
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
}


/* LINEお友だち登録 */
#LINE
{
	width : 90%;
	max-width : 600px;
	border : 5px solid #06c755;
	margin : auto;
	position : relative;
	transition : all 0.5s;
}
#LINE:hover
{
	background-color : #d7f3e2;
}
#LINE h3
{
	color : #06c755;
	font-family: var(--title-font);
	font-weight : bold;
}
#LINE > div
{
	display : grid;
	grid-template-columns: auto auto;
	justify-content : center;
	align-items: center;
	margin-top: 10px;
}
#LINE > div img
{
	width: 40px;
	margin-right : 10px;
}
#LINE > div p
{
	position : relative;
	text-align : center;
	display : inline-block;
}
#LINE > div p:before,
#LINE > div p:after
{
	content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    bottom: 12px;
    background: var(--color-main-orange);
}
#LINE > div p:before
{
	transform: translateY(-150%) rotate(230deg);
	left : -30px;
}
#LINE > div p:after
{
	transform: translateY(-150%) rotate(310deg);
    right: -30px;
}

/* ============================================================================= */
/* サブページ */
/* ============================================================================= */
.two_layout
{
	margin : 80px 0px;
	position : relative;
}
.two_layout_image
{
	position : absolute;
	left : 0;
    width: 120%;
	height : 100%;
	margin-top: -50px;
}
.two_layout_image img
{
	position : absolute;
	width : 100%;
	object-fit: cover;
	object-position : 0% 60%;
}
.two_layout_text
{
	position : relative;
	z-index : 5;
	width : 90%;
	margin : auto;
}
.two_layout_text div
{
	padding : 50px 20px;
	font-size : 14px;
}
.two_layout_text .dot_circle
{
	top: -20px;
    right: -150px;
}

/* ブログ */
.blog_tile
{
    padding : 0px 20px;
    margin-bottom : 20px;
}
.blog_tile ul
{
    display : flex;
    flex-wrap: wrap;
}
.blog_tile li
{
    color : var(--color-main-orange);
    font-size : 12px;
    margin : 5px;
}
/*  MAP  */
.map_wrapper
{
	height : 500px;
}
/*　サイトマップ　*/
#SITEMAP_LINK_LIST > div
{
	display : grid;
	grid-template-columns: 1fr;
	gap :40px;
}
#SITEMAP_LINK_LIST h3
{
	font-size : 28px;
}
#SITEMAP_LINK_LIST li
{
    margin-bottom: 20px;
    transition: all ease 0.3s;
}
#SITEMAP_LINK_LIST li::before
{
	content : "－";
	display : inline-block;
	color : var(--color-brown);
	margin-right : 10px;
}
#SITEMAP_LINK_LIST li:hover
{
    color : var(--color-main-orange);
}
#SITEMAP_LINK_LIST .search_area
{
	display : grid;
	grid-template-columns: auto 1fr;
}
#SITEMAP_LINK_LIST .search_area span
{
	font-size : 18px;
	color : var(--color-brown);
	border-right : 2px solid var(--color-brown);
	padding-right : 30px;
}
#SITEMAP_LINK_LIST .search_area ul
{
	display : grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	padding-left : 30px;
}
#SITEMAP_LINK_LIST .search_area ul li::before
{
	display : none;
}
/*　購入の流れ　*/
.buying_nav_columns{
    display : grid;
	grid-template-columns: 1fr 1fr;
    max-width: 650px;
    border: 1px solid var(--color-palegrayline);
    padding: 20px 10px;
}
.buying_nav{
    cursor: pointer;
    margin:10px 0;
}
.buying_nav:hover .buying_nav_title{
    color: var(--color-brown);
}
.buying_nav a
{
	display: block;
	padding-left: 2.5em;
	text-indent: -2.2em;
}

.flow_of_buying_tile{
    width: 100%;
    background-color: var(--color-palegray);
    padding: 20px;
}
.flow_of_buying_tile h3{
    color: var(--color-black);
}
.flow_of_buying_tile p{
    color: var(--color-gray);
}
.buying_border_dashed{
    border-bottom: 2px dashed var(--color-gray);
    padding-bottom: 10px;
}
.img_decoration img
{
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
/* こだわりから探す */
#PREFERENCE_LIST h2
{
	font-family: var(--title-font);
	font-size: 18px;
	color : var(--color-brown);
	background-color : var(--color-lightgray);
	padding : 10px 20px;
}
#PREFERENCE_LIST ul
{
	margin : 30px 5px 50px;
	display : flex;
	flex-wrap: wrap;
	gap : 20px;
}
#PREFERENCE_LIST ul li
{
	border : 1px solid var(--color-gray);
	border-radius : 5px;
	color : var(--color-black);
	transition : all 0.5s;
}
#PREFERENCE_LIST ul li a
{
	padding : 10px 25px;
	text-align : center;
	display : grid;
	grid-template-columns: auto 1fr;
	gap : 10px;
	justify-content: center;
	align-items: center;
}
#PREFERENCE_LIST ul li a img
{
	height : 30px;
}
#PREFERENCE_LIST ul li:hover
{
	color : var(--color-white);
	background-color : var(--color-red);
	border : 1px solid var(--color-red);
}
.login_error
{
	text-align : center;
	margin-bottom : 10px;
}
.link_button_container a
{
	margin-bottom : 20px;
}
.fixed_btn
{
	position : sticky;
	top : 80px;
	bottom : auto;
	background-color : rgba(255,255,255,0.5);
	z-index : 100;
	width : 100%;
	padding : 15px;
	text-align : center;
}

/* ----------------------------------------------------------------------------- */
/* 768px以上　タブレット */
/* ----------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
	.cta > div.cta_estate_image
	{
		grid-template-columns: auto auto;
		justify-content: center;
	}
	.cta h3
	{
		grid-column : 1 / 3;
	}
	.cta_present > div > span
	{
		width : 120px;
	}
	.cta_present > div > a{
		width : 100%;
	}
	.cta > div.cta_estate_image:before
	{
		content : "";
		display : block;
		background-image : url(../img/cta_house.png);
		background-repeat: no-repeat;
		background-size: 35%;
		background-position: 0% -20%;
		width : 100%;
		height : 100%;
		position : absolute;
		left: -70px;
		top: 10%;
		z-index : -0;
	}
	.cta > div > div > ul > li > div > img
	{
		width: 30px;
	}
	footer > div
	{
		grid-template-columns: 30% 70%;
	}
	footer ul,
	.footer_search_area ul
	{
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		gap : 20px;
	}
	footer div > ul > li:nth-child(2)
	{
		grid-column : 2 / 6;
	}
	.footer_search_area div
	{
		gap : 30px;
	}
	.news_details
	{
		margin-left : 20px;
	}
	.news_details .image_container
	{
		max-width : 250px;
		margin : 20px;
	}
	#SITEMAP_LINK_LIST > div
	{
		grid-template-columns: 250px 1fr;
		gap : 0;
	}
	.two_layout_image
	{
		width : 100%;
	}
	.two_layout_text
	{
		width : 50%;
		margin-left : 30%;
	}
	.two_layout_text div
	{
		padding : 70px 50px;
		font-size : 16px;
	}
	#PREFERENCE_LIST ul
	{
		margin : 30px 20px 80px;
	}
	.cta div:first-child
	{
        width: 650px;
        top: -100px;
		right: -20px;
	}
	.two_column_contents_layout.even{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
		gap: 50px;
	}
	.table_style th {
		padding-right: 50px;
	}
	.buying_nav_columns{
		padding: 20px 30px;
	}
	.cta_present > img
	{
   		right: 5px;
	}
}
/* ----------------------------------------------------------------------------- */
/* 1024px以上　PC */
/* ----------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
	/* cta */
	.cta h3
	{
		grid-column : 1 / 1;
		font-size : 32px;
		margin : 5px 0px 0px;
	}
	.cta > div.cta_estate_image
	{
		padding : 20px 0px 20px 30px;
		gap : 20px;
	}
	.cta > div > div > ul
	{
		grid-template-columns: 45px 120px 120px 120px 120px;
		gap : 10px;
		margin : 30px auto 10px auto;
		width : 100%;
	}
	.cta > div > div > ul > li:first-child
	{
		grid-row : 1 / 1;
		line-height: 1.3rem;
	}
	.cta > div > div > ul > li > div
	{
		display : block;
		padding : 25px 5px 10px 5px;
		height : 120px;
		justify-content: center;
	}
	.cta > div > div > ul > li > div > p
	{
		text-align: center;
		font-size : 18px;
		line-height : 24px;
		margin-bottom : 5px;
	}
	.cta > div > div > ul > li > span
	{
		top : -10px;
		left : 0;
		right : 0;
		margin : auto;
	}
	.cta_present
	{
        grid-column: 2;
        grid-row: 1 / 3;
	}
	.cta_present p
	{
		grid-column : 1 / 1;
	}
	.cta_present > img
	{
   		right: 0px;
	}
	.cta > div.cta_estate_image:before {
        background-size: 30%;
        background-position: -2% 30%;
    }
	
	.two_column_contents_layout_text {
		width: calc(240px + 30%);
		order: 1;
	}

	.two_column_contents_layout_img {
		width: calc(70% - 240px - 50px);
		order: 2;
		text-align: center;
	}

	.two_column_contents_layout .img_decoration {
		display: block;
		padding : 10px;
	}

	.two_column_contents_layout_text_large {
		width: calc(200px + 50%);
		order: 1;
	}

	.two_column_contents_layout_img_small {
		width: calc(50% - 200px - 50px);
		order: 2;
		text-align: center;
		margin-bottom : auto;
	}

	.two_column_contents_layout_text_small {
		width: calc(200px + 20%);
		order: 1;
	}

	.two_column_contents_layout_img_large {
		width: calc(80% - 200px - 50px);
		order: 2;
		text-align: center;
	}
	.cta_estate_image .stitch::after
	{
		bottom : 0em;
	}
}
/* ----------------------------------------------------------------------------- */
/* 1250px以上 */
/* ----------------------------------------------------------------------------- */
@media screen and (min-width : 1250px) {
	/* header */
	.line_link span,
	header a
	{
		font-size : 12px;
	}
	.hamburger
	{
		justify-self: end;
		display: none;
	}
	.nav-box{
		display : grid;
		grid-template-columns: 1fr auto;
	}
	.nav-list {
		display : grid;
		gap : 20px;
		grid-auto-flow : column;
		grid-auto-columns : max-content;
		align-items : center;
		justify-content : end;
		margin-right : 30px;
	}
	.contact_tel
	{
		text-align : right;
		border-top : none;
		padding-top : 0px;
	}
	.icon_contact span
	{
		width: 33px;
		height: 33px;
	}
	.icon_contact span img
	{
		width : 20px;
	}
	.line_link span
	{
		width : auto;
		height : auto;
		transition : all 0.5s;
	}
	.icon_contact a
	{
		gap : 10px;
	}
	/* cta */
	.cta_present > img
	{
		position : relative;
	}
	.cta_present
	{
		margin-left : 20px;
	}
	.cta_present > div
	{
    	grid-template-columns: auto auto;
	}
	.cta_present > div > span {
        width: 100%;
    }
	.cta > div.cta_estate_image:before
	{
		left: -150px;
	}
	.cta > div.cta_estate_image {
        padding: 20px 0px 20px 70px;
		gap : 0;
    }
	.cta > div > div > ul
	{
		margin : 0px auto;
	}
	.cta_present > span
	{
		margin-top : -50px;
	}
	.cta_present p
	{
		margin-bottom : 0px;
	}
	.cta_present > img
	{
		top : 0px;
	}
	.cta > div > div > ul > li
	{
		padding-bottom : 0px;
	}
	.cta > div.cta_estate_image:before {
		background-position: -2% -10%;
    }
	.three_column_contents_wrapper {
		grid-template-columns: repeat(auto-fit, minmax(250px, calc(100% / 3 - 20px)));
	}
	.cta h3
	{
		margin : 5px 0px 15px;
	}
	/* フッター */
	footer > div
	{
		grid-template-columns: 50% 50%;
		gap : 20px;
	}
}
/* ----------------------------------------------------------------------------- */
/* 1350px以上 */
/* ----------------------------------------------------------------------------- */
@media screen and (min-width : 1350px) {
	/* header */
	.line_link span,
	header a
	{
		font-size : 14px;
	}
	.nav-list {
		gap : 30px;
	}

}