@charset "utf-8";
/*----------------------------------------------------------------------------------------

	base.css

----------------------------------------------------------------------------------------*/

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}
head + body {
	min-width: 1300px;
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: left;
}
.cont-w {
	margin-right: auto;
	margin-left: auto;
	width: 1200px;
}
.dnone, .dnone_pc {
	display: none !important;
}
.cf::after {
	display: table;
	clear: both;
	content: "";
}
.red {
	color: #c00;
}


/* 共通スタイル //
////////////////////////////////////////////////////////////////////*/

/* 折りたたみ ///
---------------------------------------------- */
.folding {
	cursor: pointer;
}
.folding:not(.reverse) + * {
	display: none;
}
.folding::after {
	content: "\f067";
}
.folding.active::after {
	content: "\f068";
}

/* スクロールバー(android用) //
-----------------------------*/
body ::-webkit-scrollbar {
	width: 15px;
	height: 10px;
	background: #f0f0f0;
}
body ::-webkit-scrollbar-thumb {
	background-color: #cdcdcd;
	border-radius: 2px;
}

/* ロールオーバー //
---------------------------------------------- */
.rov :where(a, input, button) {
	transition: opacity 0.2s;
}
.rov :where(a, input, button):hover {
	opacity: 0.8;
}
.hover01 a:hover {
	color: var(--acc3) !important;
}
.hover02 a:hover {
	text-decoration: underline;
}

/* 画像中央配置 ///
---------------------------------------------- */
.img-fit {
	display: block;
}
.img-fit img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	pointer-events: none;
	image-rendering: -webkit-optimize-contrast;
}

/* 複数行をのテキストオーバーフロー ///
---------------------------------------------- */
.ellipsis {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* セクション見出し ///
---------------------------------------------- */
.sec_head01 {
	margin-bottom: 40px;
}
.sec_head01 .ttl {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.sec_head01 .ttl .en {
	color: var(--acc2);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
	line-height: 1;
}
.sec_head01 .ttl .ja {
	font-size: 40px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}
.sec_head01 p.lead {
	font-size: 16px;
	margin-top: 24px;
	line-height: 1.8;
}

/* 小 */
.sec_head01.-sm {
	margin-bottom: 24px;
}
.sec_head01.-sm .ttl {
	gap: 4px;
}
.sec_head01.-sm .ttl .en {
	font-size: 14px;
}
.sec_head01.-sm .ttl .ja {
	font-size: 32px;
}

/*----------*/

.sec_head02 {
	margin-bottom: 40px;
}
.sec_head02 .ttl {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.sec_head02 .ttl .intro {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	padding-left: 14px;
}
.sec_head02 .ttl .intro::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--acc2);
}
.sec_head02 .ttl .ja {
	font-size: 32px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}

/* 見出し（H2） ///
---------------------------------------------- */
.heading02-center {
	color: var(--acc1);
	font-size: 40px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	text-align: center;
	margin-bottom: 40px;
}

/*----------*/

.heading02-center-line {
	position: relative;
	font-size: 40px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	text-align: center;
	padding-bottom: 24px;
	margin-bottom: 40px;
}
.heading02-center-line::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 48px;
	height: 3px;
	background-color: var(--acc2);
	border-radius: 2px;
}

/*----------*/

.heading02-line-gradient {
	position: relative;
	font-size: 32px;
	font-weight: 700;
	/* font-family: var(--font-gothic); */
	line-height: 1.4;
	padding-bottom: 20px;
	margin-top: 60px;
	margin-bottom: 32px;
}
.heading02-line-gradient::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(to right, var(--acc2) 20%, #e5e5e7 20%);
}

/* 見出し（H3） ///
---------------------------------------------- */
.heading03 {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 24px;
}
.heading03 .en {
	color: var(--acc2);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
	line-height: 1;
}
.heading03 .ja {
	font-size: 32px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}

/*----------*/

.heading03-bg-center {
	color: var(--acc1);
	font-size: 32px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	background-color: var(--bgc1);
	border-radius: 4px;
	padding: 12px;
	text-align: center;
	margin-bottom: 24px;
}

/* ボタン ///
---------------------------------------------- */
.btn01 a,
.btn01 button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	background-color: var(--acc2);
	border: none;
	border-radius: 40px;
	box-sizing: border-box;
	min-width: 320px;
	padding: 12px 12px 12px 40px;
}
.btn01 a::after,
.btn01 button::after {
	content: "\f061"; /* arrow-right */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--acc2);
	font-size: 12px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	background-color: #fff;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	margin-left: 40px;
}
.btn01 a[target="_blank"]::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 23px;
	transform: translateY(-50%);
	width: 12px;
	height: 10px;
	background-color: var(--acc2);
	-webkit-mask: url(../images/common/icon-external.svg) no-repeat center / contain;
	mask: url(../images/common/icon-external.svg) no-repeat center / contain;
	z-index: 1;
}
.btn01 a[target="_blank"]::after {
	content: "";
}

/*----------*/

.btn02 a {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}
.btn02 a::after {
	content: "\f061"; /* arrow-right */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	background-color: var(--acc1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-left: 10px;
}
.btn02 a[target="_blank"]::before {
	content: "";
	position: absolute;
	right: 14px;
	width: 12px;
	height: 10px;
	background-color: #fff;
	-webkit-mask: url(../images/common/icon-external.svg) no-repeat center / contain;
	mask: url(../images/common/icon-external.svg) no-repeat center / contain;
	z-index: 1;
}
.btn02 a[target="_blank"]::after {
	content: "";
}
.btn02 a span {
	position: relative;
}
.btn02 a span::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 1px;
	background-color: #333;
}

/* icon //
---------------------------------------------- */
.icon-b, .icon-b_all a, .icon-a, .icon-a_all a {
	position: relative;
}
.icon-b::before, .icon-b_all a::before, .icon-a::after, .icon-a_all a::after {
	content: "\f105"; /* angle-right */
	position: relative;
	top: 0;
	bottom: 0;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	line-height: 1;
	height: 1em;
	margin: auto;
}

/* 矢印 ///
---------------------------------------------- */
.af-arrow-circle {
	display: flex;
	align-items: center;
}
.af-arrow-circle::after {
	content: "\f061"; /* arrow-right */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	background-color: var(--acc1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-left: 10px;
}

/* appnone ///
---------------------------------------------- */
.appnone:where(input, select, textarea, button),
.appnone :where(input, select, textarea, button) {
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	border-radius: 0;
	display: block;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	appearance: none;
}

/* テーブル ///
---------------------------------------------- */
.table-style01 {
	width: 100%;
	table-layout: fixed;
	border-top: 1px solid #ccc;
}
.table-style01 tr {
	border-bottom: 1px solid #ccc;
}
.table-style01 th, .table-style01 td {
	padding: 20px 0;
	text-align: left;
}
.table-style01 th {
	box-sizing: border-box;
	width: 320px;
	padding-right: 25px;
	line-height: 1.3;
}
.table-style01 a {
	text-decoration: underline;
}

/*----------*/

.table-style02 {
	width: 100%;
}
.table-style02 :where(th, td) {
	box-sizing: border-box;
	padding: 15px 20px;
	border: 1px solid #ccc;
	font-size: 1.5rem;
}
.table-style02 th {
	width: 150px;
	background-color: #f0f0f0;
	font-weight: 700;
	text-align: center;
}
.table-style02 td {
	background-color: #fff;
}


/* 共通レイアウト //
////////////////////////////////////////////////////////////////////*/

/* 2カラムレイアウト ///
---------------------------------------------- */
.layout-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}
/* 反転（nth-childやめてクラス制御に） */
.layout-2col--reverse {
	direction: rtl;
}
.layout-2col--reverse > * {
	direction: ltr;
}
/* 連続時の余白 */
.layout-2col + .layout-2col {
	margin-top: 60px;
}
.layout-2col p a {
	display: block;
	text-decoration: underline;
}
.layout-2col p a:hover {
	text-decoration: none;
}


/* フォーム //
////////////////////////////////////////////////////////////////////*/

/* wpcf7 ///
---------------------------------------------- */
.wpcf7 :where(.wpcf7-text, .wpcf7-textarea, .wpcf7-number, .wpcf7-select) {
	box-sizing: border-box;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	display: block;
	-webkit-appearance: none;
	appearance: none;
	font-size: 16px;
	font-family: inherit;
}
.wpcf7 :where(.wpcf7-text, .wpcf7-textarea, .wpcf7-number, .wpcf7-select)::placeholder {
	color: #999;
}
.wpcf7 .wpcf7-select::-ms-expand {
	display: none;
}
.wpcf7 .wpcf7-text {
	width: 400px;
}
.wpcf7 .wpcf7-textarea {
	width: 100%;
}
.wpcf7-form-control-wrap:has(> select) {
	position: relative;
	cursor: pointer;
}
.wpcf7-form-control-wrap:has(> select)::after {
	margin: auto;
	height: 7px;
	width: 8px;
	background-color: var(--acc1);
	position: absolute;
	top: 0;
	right: 12px;
	bottom: 0;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
	content: "";
}
.wpcf7 .wpcf7-list-item label {
	cursor: pointer;
}

/*----------*/

.wpcf7 .privacy_txt {
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: center;
	margin: 25px 0;
}
.wpcf7 .privacy_txt a {
	text-decoration: underline;
}

/*----------*/

.wpcf7 .submit_btn {
	margin-top: 32px;
	position: relative;
}
.wpcf7 .submit_btn > p {
	margin: 0;
}
.wpcf7 .submit_btn input {
	box-sizing: border-box;
	margin: 0 auto 10px;
	padding: 0 40px 2px 40px;
	min-width: 240px;
	background-color: var(--acc1);
	border: 0;
	border-radius: 40px;
	outline: none;
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 62px;
	font-family: inherit;
	cursor: pointer;
	transition: opacity 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.wpcf7 .submit_btn input:disabled {
	background-color: #ccc;
	opacity: 1 !important;
	cursor: default;
	color: #fff;
}
.wpcf7 .submit_btn .wpcf7-spinner {
	margin: auto;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	transform: translateY(100%);
}
.wpcf7 .recaptcha-note {
	color: #aaa;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}
.wpcf7 .recaptcha-note a {
	color: #039be5;
}


/* ヘッダー //
////////////////////////////////////////////////////////////////////*/

#body_header {
	position: fixed;
	top: 0;
	left: 0;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	width: 100%;
	height: 90px;
	z-index: 10;
}
#body_header .logo {
	margin-left: 60px;
}
#body_header .logo a {
	display: block;
	height: 100%;
	padding: 20px 0 10px;
}
#body_header .logo img {
	display: block;
	object-fit: none;
	object-position: center;
}
#body_header .header_nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
	margin: 0 40px 0 auto;
}
#body_header .header_nav .login_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: var(--acc1);
	font-size: 12px;
	font-weight: 700;
	border: 1px solid var(--acc1);
	border-radius: 20px;
	padding: 4px 12px;
}
#body_header .header_nav .gmenu {
	display: flex;
	gap: 40px;
}
#body_header .header_nav .gmenu .txt {
	position: relative;
	display: flex;
	align-items: center;
	color: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
}
#body_header .header_nav .gmenu .txt i {
	font-size: 12px;
	margin-left: 6px;
}
#body_header .header_nav .gmenu > li:last-child .txt::after {
	display: none;
}
#body_header .contact_btn {
	position: relative;
	z-index: 10;
}
#body_header .contact_btn a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	width: 200px;
	height: 100px;
	background-color: var(--acc1);
	border-radius: 0 0 0 10px;
	letter-spacing: 0.05em;
	margin-bottom: -10px;
	transition: background-color 0.2s;
}
#body_header .contact_btn a:hover {
	background-color: #437267; /* #2e6256 90% */
}
#body_header .contact_btn a span {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#body_header .contact_btn a span::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 20px;
	margin-bottom: 5px;
	background-color: #fff;
	-webkit-mask: url(../images/common/icon-mail.svg) no-repeat center / contain;
	mask: url(../images/common/icon-mail.svg) no-repeat center / contain;
}

/* hover */
#body_header .gmenu > li.hover > .txt i {
	transition: transform .25s ease;
}
#body_header .gmenu > li.hover:hover > .txt i {
	transform: rotate(180deg);
}

/* メガメニュー ///
---------------------------------------------- */
#body_header .megamenu {
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	display: none;
	background-color: #fff;
	border-top: 1px solid #ccc;
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
	padding: 32px 0;
	z-index: 50;
}
/* #body_header .megamenu.-buy {
	display: block !important;
} */
/* #body_header .megamenu.-sell {
	display: block !important;
} */
/* #body_header .megamenu.-company {
	display: block !important;
} */
#body_header .megamenu_inner {
	display: flex;
	justify-content: space-between;
	gap: 48px;
}
#body_header .megamenu_head {
	flex: 1 1 auto;
}
#body_header .megamenu_head img {
	border-radius: 10px;
}
#body_header .megamenu_body {
	flex: 0 0 800px;
}
#body_header .megamenu_body .hd,
#body_header .megamenu_body .shd {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
}
#body_header .megamenu_body .hd .en,
#body_header .megamenu_body .shd .en {
	color: var(--acc2);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
	line-height: 1;
}
#body_header .megamenu_body .hd .ja,
#body_header .megamenu_body .shd .ja {
	font-size: 28px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}
#body_header .megamenu_body .menu_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}
#body_header .megamenu_body .menu_wrap > li {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
#body_header .megamenu_body .shd_wrap {
	display: flex;
	align-items: center;
	gap: 14px;
}
#body_header .megamenu_body .shd_wrap .img {
	width: 70px;
	height: 70px;
	border-radius: 4px;
	overflow: hidden;
	flex: 0 0 70px;
}
#body_header .megamenu_body .shd_wrap .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#body_header .megamenu_body .shd .en {
	font-size: 10px;
}
#body_header .megamenu_body .shd .ja {
	display: flex;
	align-items: center;
	font-size: 16px;
}
#body_header .megamenu_body a.shd_wrap .shd .ja::after {
	content: "\f105"; /* angle-right */
	display: inline-block;
	font-size: 12px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	line-height: 1;
	margin-left: 8px;
}
#body_header .megamenu_body .icon-a_all a::after {
	font-size: 10px;
	margin-left: 6px;
}
#body_header .megamenu_body .menu-list {
	margin-top: 12px;
	padding-left: 16px;
	border-left: 1px solid #ccc;
}
#body_header .megamenu_body .menu-list li,
#body_header .megamenu_body .menu-list li a {
	font-size: 12px;
	line-height: 2;
}
#body_header .megamenu_body .menu-list li > ul {
	padding-left: 10px;
}

/* ----- .megamenu.-sell ----- */
#body_header .megamenu.-sell .attention {
	background: var(--bgc1);
	background: url(../images/common/pattern-noise01.svg) repeat center / 1024px 1024px;
	border-radius: 10px;
	padding: 28px 60px;
	margin-top: 28px;
	box-sizing: border-box;
}
#body_header .megamenu.-sell .attention_inner {
	display: flex;
	align-items: center;
}
#body_header .megamenu.-sell .attention header {
	flex: 1 1 auto;
	gap: 48px;
}
#body_header .megamenu.-sell .attention header .hd {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}
#body_header .megamenu.-sell .attention header .hd + p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 12px;
}
#body_header .megamenu.-sell .attention ul {
	flex: 0 0 800px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 16px;
}
#body_header .megamenu.-sell .attention ul li:nth-child(-n+2) {
	border-top: 1px solid var(--acc2);
}
#body_header .megamenu.-sell .attention ul li a {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	border-bottom: 1px solid var(--acc2);
	padding: 8px 0;
}
#body_header .megamenu.-sell .attention ul li a::before {
	content: "\f0da"; /* caret-right */
	position: relative;
	top: 0;
	bottom: 0;
	color: var(--acc2);
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	line-height: 1;
	height: 1em;
	margin-right: 8px;
}


/* ページトップ //
////////////////////////////////////////////////////////////////////*/

#pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 50;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}
#pagetop.fixed {
	opacity: 1;
	pointer-events: auto;
}
#pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--acc1);
	border: 1px solid #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-bottom: 18px;
}
#pagetop a::before {
	content: "\f062"; /* arrow-up */
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
}
#pagetop a::after {
	content: "TOP";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	color: var(--acc1);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
}


/* フッター //
////////////////////////////////////////////////////////////////////*/

#body_footer {
	position: relative;
	margin-top: 96px;
	border-bottom: 8px solid var(--acc1);
	overflow: hidden;
}
#body_footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(70.4deg, rgba(190, 175, 135, 0.7) 27.29%, rgba(190, 175, 135, 0.2) 90.15%);
	background:
	linear-gradient(
		70.4deg,
		rgba(255, 255, 255, 0.5) 27.29%,
		rgba(255, 255, 255, 0.85) 90.15%
	),
	url(../images/common/pattern-noise02.svg) repeat center / 1024px 1024px;
	z-index: -1;
}
#body_footer::after {
	content: "";
	position: absolute;
	top: -915px;
	left: -450px;
	width: 1105px;
	height: 1005px;
	background: url(../images/common/bg_deco_circle_double_w.svg) no-repeat center / contain;
	opacity: 0.4;
	transform: rotate(-22deg);
	z-index: -1;
}

/* footer_cta ///
---------------------------------------------- */
#body_footer .footer_cta {
	padding: 70px 0;
}
#body_footer .footer_cta .sec_head01 {
	margin-bottom: 32px;
}
#body_footer .footer_contact_main {
	display: flex;
	justify-content: space-between;
}
#body_footer .footer_cta .content .hd {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}
#body_footer .footer_cta .content.tel .number {
	font-size: 48px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1;
	letter-spacing: 0.02em;
	margin-top: 10px;
}
#body_footer .footer_cta .content.tel .note {
	font-size: 14px;
	line-height: 1;
	margin-top: 8px;
	text-align: center;
}
#body_footer .footer_cta .content.mail {
	width: 800px;
}
#body_footer .footer_cta .content.mail .btns {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	margin-top: 20px;
}
#body_footer .footer_cta .content.mail .btns .btn a {
	min-width: 0;
}

/* footer_main ///
---------------------------------------------- */
#body_footer .footer_main {
	background-color: var(--bgc1);
	background: linear-gradient(180deg, rgba(242, 239, 231, 0) 0%, rgba(190, 175, 135, 0.15) 50%, rgba(190, 175, 135, 0.2) 100%), #FFFFFF;
	border-radius: 0 200px 0 0;
	padding-top: 80px;
}
#body_footer .footer_layout {
	display: flex;
	gap: 80px;
}

/*----------*/

#body_footer .footer_brand {
	font-size: 14px;
	line-height: 1.4;
	width: 320px;
}
#body_footer .footer_brand .footer_logo a {
	display: block;
	border-bottom: 1px solid #333;
	padding-bottom: 24px;
}
#body_footer .footer_brand .footer_logo a img {
	margin: 0 auto;
}
#body_footer .footer_brand .footer_info {
	margin-top: 10px;
}
#body_footer .footer_brand .footer_access {
	margin-top: 20px;
}
#body_footer .footer_brand .footer_access .map {
	border: 1px solid #ccc;
}
#body_footer .footer_brand .footer_access .adress {
	margin-top: 10px;
}
#body_footer .footer_brand .footer_access .transport .ttl {
	display: inline-block;
	color: var(--acc1);
	font-weight: 700;
	font-size: 12px;
	background-color: #fff;
	border-radius: 30px;
	padding: 2px 16px;
	margin: 10px 0 6px;
}
#body_footer .footer_brand .footer_access .transport .txt {
	font-size: 12px;
}
#body_footer .footer_brand .footer_related {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 30px;
}
#body_footer .footer_brand .footer_related .btn a {
	font-size: 14px;
}
#body_footer .footer_brand .footer_related .btn a::before {
	right: 12px;
}
#body_footer .footer_brand .footer_related .btn a::after {
	width: 36px;
	height: 36px;
}

/*----------*/

#body_footer .footer_menu {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
#body_footer .menu-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
#body_footer .menu_item .hd {
	color: var(--acc1);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
}
#body_footer .menu_item .hd a {
	display: flex;
	align-items: center;
}
#body_footer .menu_item .hd a::after {
	content: "\f061"; /* arrow-right */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	background-color: var(--acc1);
	border-radius: 50%;
	line-height: 1;
	width: 26px;
	height: 26px;
	margin-left: 10px;
}
#body_footer .menu_list {
	line-height: 2;
	border-left: 1px solid #ccc;
	padding-left: 16px;
	margin-top: 10px;
}
#body_footer .menu_list a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 9px;
	background-color: #333;
	-webkit-mask: url(../images/common/icon-external.svg) no-repeat center / contain;
	mask: url(../images/common/icon-external.svg) no-repeat center / contain;
	margin-left: 6px;
	opacity: 0.8;
}
#body_footer .menu_list > li .shd {
	color: var(--acc1);
	font-size: 14px;
	font-weight: 700;
	line-height: 2;
}
#body_footer .menu_list > li .menu_sublist {
	font-size: 12px;
	padding-left: 14px;
}
#body_footer .menu_list > li:not(:last-child) .menu_sublist {
	padding-bottom: 8px;
}
#body_footer .menu_sublist ul {
	padding-left: 10px;
}
#body_footer .menu_sublist ul li a::before {
	content: "\f0da"; /* caret-right */
	font-size: 8px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	padding-right: 6px;
}

/* sns */
#body_footer .menu_item.-sns .sns_links {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 10px;
	width: fit-content;
	align-items: center;
}
#body_footer .menu_item.-sns .sns_links .ttl {
	color: var(--acc2);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-en);
	line-height: 1.2;
}
#body_footer .menu_item.-sns .sns_links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
}

/*----------*/

#body_footer .footer_bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 60px;
	padding-bottom: 16px;
	letter-spacing: -0.01em;
}
#body_footer .footer_bottom .footer_legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
}
#body_footer .footer_bottom .footer_legal a:hover {
	text-decoration: underline;
}
#body_footer .footer_bottom .footer_legal li + li::before {
	content: "｜";
	margin-right: 6px;
}
#body_footer .footer_bottom .copyright {
	white-space: nowrap;
}


/* フローティングCTA //
////////////////////////////////////////////////////////////////////*/

.floating_cta {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	z-index: 10;
	/* opacity: 0;
	pointer-events: none; */
	transition: .3s;
}
/* .floating_cta.fixed{
	opacity: 1;
	pointer-events: auto;
} */
.floating_cta .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--acc2);
	width: 90px;
	height: 90px;
	box-sizing: border-box;
	text-align: center;
	transition: background-color 0.2s;
}
.floating_cta .btn:hover {
	background-color: #c4b898;
}
.floating_cta .btn:first-child {
	border-radius: 10px 0 0 0;
}
.floating_cta .btn:last-child {
	border-radius: 0 0 0 10px;
}
.floating_cta .btn .label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.05em;
}
.floating_cta .btn .label::before {
	content: "";
	display: inline-block;
	margin: 3px 0 6px;
	background-color: #fff;
}
/* member */
.floating_cta .btn.member .label {
	font-size: 12px;
}
.floating_cta .btn.member .label::before {
	width: 24px;
	height: 29px;
	-webkit-mask: url(../images/common/icon-member.svg) no-repeat center / contain;
	mask: url(../images/common/icon-member.svg) no-repeat center / contain;
}
/* tel */
.floating_cta .btn.tel {
	transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.floating_cta .btn.tel .label::before {
	width: 30px;
	height: 29px;
	-webkit-mask: url(../images/common/icon-tel.svg) no-repeat center / contain;
	mask: url(../images/common/icon-tel.svg) no-repeat center / contain;
}
.floating_cta .btn.tel .tel_info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin: 0 0 5px 12px;
	opacity: 0;
	transform: translateX(10px);
	transition: .3s;
	white-space: nowrap;
	display: none;
}
.floating_cta .btn.tel .tel_info .number {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1;
	letter-spacing: 0.02em;
}
.floating_cta .btn.tel .tel_info .note {
	color: #fff;
	font-size: 11px;
	line-height: 1;
	text-align: center;
}
/* tel:hover */
.floating_cta .btn.tel:hover {
	width: 280px;
	padding-left: 8px;
}
.floating_cta .btn.tel:hover .tel_info {
	display: flex;
	opacity: 1;
	transform: translateX(0);
}
/* reserve */
.floating_cta .btn.reserve .label::before {
	width: 25px;
	height: 29px;
	-webkit-mask: url(../images/common/icon-reserve.svg) no-repeat center / contain;
	mask: url(../images/common/icon-reserve.svg) no-repeat center / contain;
}
/* announce */
.floating_cta .btn.announce .label {
	font-size: 12px;
}
.floating_cta .btn.announce .label::before {
	width: 35px;
	height: 20px;
	-webkit-mask: url(../images/common/icon-announce.svg) no-repeat center / contain;
	mask: url(../images/common/icon-announce.svg) no-repeat center / contain;
}


/* アニメーション・動き //
////////////////////////////////////////////////////////////////////*/

/* swiper //
---------------------------------------------- */
.slider_content {
	position: relative;
}
.slider .swiper-wrapper {
	display:flex;
	flex-direction: row;
	gap:0;
}
.slider .swiper-wrapper > * {
	opacity: 1;
}

/* 初期化前のチラつき防止 */
.slider:not(.swiper-initialized) > .swiper-wrapper > * {
	opacity: 0 !important;
}
.slider:not(.swiper-initialized) > .swiper-wrapper > :not(:first-child) {
	display: none !important;
}

.swiper-slide {
	width: 373px;
}

/* pagenation */
.swiper-pagination {
	position: relative;
	top: 0 !important;
	margin-top: 24px;
	z-index: 1;
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #d9d9d9;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color: var(--acc1);
}
.swiper-notification {
	display: none;
}

/* button */
.swiper-button-prev::after,
.swiper-button-next::after{
	display:none; /* デフォルト矢印を消す */
}
.swiper-button-prev,
.swiper-button-next {
	display:flex;
	align-items:center;
	justify-content:center;
	width:48px;
	height:48px;
	background:rgb(255, 255, 255, 0.01);
	border:1px solid #333;
	border-radius:50%;
	transform: translateY(-50%);
	z-index: 1;
}
.swiper-button-prev {
	left: -88px;
}
.swiper-button-next {
	right: -88px;
}
.swiper-button-prev::before,
.swiper-button-next::before {
	content:"\f061"; /* arrow-right */
	color: #333;
	font-size:16px;
	font-weight:900;
	font-family:"Font Awesome 6 Free";
}
.swiper-button-prev::before{
	transform:rotate(180deg);
}

/* swiper無効時（grid） */
.js-swiper.is-grid .swiper-wrapper {
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:40px;
}
.js-swiper.is-grid .swiper-wrapper > * {
	width: auto;
}
.js-swiper.is-grid .swiper-pagination,
.js-swiper.is-grid .swiper-buttons {
	display: none;
}

/* modal //
---------------------------------------------- */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.modal.active {
	opacity: 1;
	visibility: visible;
}
.modal_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.4;
}
.modal_body {
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: 1200px;
	width: calc(100% - 40px);
	max-height: 80vh;
	margin: 0 auto;
	overflow-y: auto;
}
.modal_close {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	width: 40px;
	margin-right: 15px;
	margin-bottom: 16px;
	cursor: pointer;
	transition: all 0.5s;
}
.modal_close:hover {
	opacity: 0.7;
}
.modal_close_icon {
	display: inline-flex;
	width: 20px;
	margin-bottom: 10px;
}
.modal_close_icon svg {
	width: 100%;
}
.modal_close_txt {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	line-height: 1;
}


/* ループ記事 //
////////////////////////////////////////////////////////////////////*/

/* アーカイブ カード型表示 ///
---------------------------------------------- */
.loop-card > a {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.loop-card .photo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	z-index: 1;
}
.loop-card .meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin-top: 10px;
}
.loop-card time {
	font-size: 14px;
	line-height: 1.6;
}
.loop-card .cate {
	display: flex;
	gap: 4px;
}
.loop-card .cate .cate-item {
	color: var(--acc1);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	border: 1px solid var(--acc1);
	padding: 4px 10px;
}
.loop-card .meta .tanto {
	color: var(--acc1);
	font-size: 13px;
	font-weight: 500;
}
.loop-card .meta .tanto::before {
	content: "\f007";
	display: inline;
	color: var(--acc1);
	font-size: 12px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	margin-right: 2px;
}
.loop-card .image-excerpt {
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
	font-family: var(--font-en);
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-align: center;
	word-break: keep-all;
	padding: 0 2em;
}
.loop-card .photo img {
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.loop-card .hd {
	color: var(--acc1);
	font-size: 2rem;
	line-height: 1.4;
	letter-spacing: 0.02em;
	margin-top: 6px;
}
.loop-card .excerpt {
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.02em;
	margin-top: 6px;
}

/* ----- ルームツアー ----- */
.loop-card.is-roomtour .hd {
	font-size: 18px;
}

/* アーカイブ カード型表示（スタッフ紹介） ///
---------------------------------------------- */
.loop-card-staff > a {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.loop-card-staff .photo {
	aspect-ratio: 367 / 277;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
}
.loop-card-staff .photo img {
	object-position: top;
}
.loop-card-staff .body {
	background-color: var(--bgc1);
	border-radius: 0 0 16px 16px;
	padding: 18px 22px 20px;
	flex: 1 1 auto;
}
.loop-card-staff .meta {
	line-height: 1.4;
}
.loop-card-staff .meta .departments {
	color: var(--acc1);
	font-size: 16px;
	font-weight: 500;
}
.loop-card-staff .meta .name {
	display: flex;
	align-items: baseline;
	font-size: 24px;
	font-weight: 500;
}
.loop-card-staff .meta .name .kana {
	font-size: 15px;
}
.loop-card-staff .copy {
	position: relative;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	padding-top: 16px;
	margin-top: 14px;
}
.loop-card-staff .copy::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--acc2);
	border-radius: 2px;
}
.loop-card-staff .copy br {
	display: none;
}

/* アーカイブ カード型表示（ミニマムタイプ） ///
---------------------------------------------- */
.loop-card-min a {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}
.loop-card-min a .loop-card-min_img {
	flex: 0 0 135px;
	border-radius: 6px;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.loop-card-min a .loop-card-min_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.loop-card-min a .loop-card-min_body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	height: 100%;
}
.loop-card-min a .loop-card-min_date {
	font-size: 12px;
	line-height: 1;
}
.loop-card-min a .loop-card-min_ttl {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* アーカイブ カード型表示 ルームツアー  ///
---------------------------------------------- */
.loop-card.is-roomtour .photo {
	aspect-ratio: 9 / 16;
}
.loop-card.is-roomtour .photo .play-icon {
	position: absolute;
	width: 56px;
	height: 56px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.loop-card.is-roomtour .photo .play-icon::after {
	content: "";
	display: inline-block;
	width: 22px;
	height: 26px;
	background-color: #fff;
	-webkit-mask: url(../images/common/icon-play-button.svg) no-repeat center / contain;
	mask: url(../images/common/icon-play-button.svg) no-repeat center / contain;
	margin-left: 5px;
}

/* FAQ アコーディオン
---------------------------------------------- */
.loop_faq_item {
	border-bottom: 1px solid #ccc;
}
.loop_faq_item:first-child {
	border-top: 1px solid #ccc;
}
.loop_faq_item .question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 26px 20px;
	cursor: pointer;
}
.loop_faq_item .question::after {
	content: "\f067"; /* fa-plus */
	color: var(--acc1);
	font-size: 16px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	margin-left: auto;
	transition: .3s;
}
.loop_faq_item .question .ttl {
	display: flex;
	gap: 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}
.loop_faq_item .question .ttl::before {
	content: "Q";
	position: relative;
	color: var(--acc1);
	font-weight: 700;
	font-size: 22px;
	font-family: var(--font-en);
	line-height: 1;
}
.loop_faq_item.is-open .question::after {
	content: "\f068"; /* fa-minus */
}
.loop_faq_item .answer {
	display: none;
	background-color: var(--bgc1);
	line-height: 1.9;
	padding: 24px 50px;
}


/* 共通パーツ //
////////////////////////////////////////////////////////////////////*/

/* タブ切り替え //
---------------------------------------------- */
.tab_btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.tab_btn {
	font-size: 14px;
	line-height: 1.4;
	cursor: pointer;
}
.tab_btn.active {
	font-weight: 700;
}
.tab_btn + .tab_btn::before {
	content: "｜";
	margin-right: 14px;
}
.tab_content {
	display: none;
}
.tab_content.active {
	display: block;
}

/* link-bnr ///
---------------------------------------------- */
.link-bnr a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	color: #fff;
	height: 200px;
	width: 1000px;
	background-color: var(--acc1);
	border-radius: 10px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 40px 80px;
}
.link-bnr a .ttl {
	font-size: 28px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
}
.link-bnr a .ttl::after {
	background-color: var(--acc2);
}
.link-bnr a .txt {
	font-size: 16px;
	line-height: 1.6;
}

/* 物件種別・マイページログイン ///
---------------------------------------------- */
.search_block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: var(--bgc1);
	background: url(../images/common/pattern-noise01.svg) repeat center / 1024px 1024px;
	border-radius: 16px;
	padding: 32px 40px;
}

/* parts-searchbox */
.parts-searchbox {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 20px;
	justify-content: space-between;
	flex: 1 1 auto;
}
.parts-searchbox .search-box {
	list-style: none;
	line-height: 1;
	margin-left: 0;
	text-indent: 0;
}
.parts-searchbox .search-box > a {
	text-decoration: none;
}
.parts-searchbox .search-box_img {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	border-radius: 50%;
	border: 2px solid var(--acc1);
	overflow: hidden;
}
.parts-searchbox .search-box_img img {
	width: 115px;
}
.parts-searchbox .search-box_body {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.parts-searchbox .search-box_body .ttl {
	display: inline-flex;
	align-items: center;
	color: var(--acc1);
	font-size: 16px;
	font-weight: 700;
	margin-top: 10px;
}
.parts-searchbox .search-box_body .ttl::after {
	content: "\f105"; /* angle-right */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--acc1);
	font-size: 0.8125em;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	margin-left: 8px;
}
.parts-searchbox .search-box_body .kensu {
	font-size: 12px;
	line-height: 1.4;
}
.parts-searchbox .search-box_body .kensu .num {
	color: #a29673;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--font-en);
	font-style: normal;
}

/* login */
.search_block .login {
	flex: 0 0 320px;
	border-left: 1px solid #bbb;
	box-sizing: border-box;
	padding-left: 40px;
}
.search_block .login form {
	background-color: #fff;
	border-radius: 10px;
	height: 100%;
	box-sizing: border-box;
	padding: 18px 32px;
}
.search_block .login .ttl {
	color: var(--acc1);
	font-size: 22px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	text-align: center;
	margin-bottom: 12px;
}
.search_block .login .input {
	width: 100%;
	height: 37px;
	background-color: #fff;
	border: 1px solid #d1d1d1;
	border-radius: 4px;
	margin-bottom: 8px;
	padding-left: 9px;
}
.search_block .login .submit {
	width: 100%;
	background-color: #fff;
	border-radius: 40px;
	margin-top: 12px;
	margin-bottom: 6px;
	overflow: hidden;
}
.search_block .login .submit button {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	width: 100%;
	height: 38px;
	background-color: var(--acc2);
	cursor: pointer;
}
.search_block .login .submit button span::before {
	content: "\f090"; /* arrow-right-to-bracket */
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	margin-right: 5px;
}
.search_block .login .forget a {
	display: block;
	color: #757575;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}
.search_block .login .forget a::after {
	font-size: 10px;
	margin-left: 4px;
}

/* 関連記事 ///
---------------------------------------------- */
.section-related {
	margin-bottom: 80px;
}
.section-related .hd {
	margin-bottom: 40px;
	color: #666;
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.04em;
}
.section-related ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px 23px;
}
.section-related li > a {
	box-sizing: border-box;
	padding: 15px 10px 40px 182px;
	height: 100%;
	min-height: 110px;
	background-color: var(--bgc1);
	display: block;
	position: relative;
}
.section-related li .pic {
	width: 155px;
	background: linear-gradient(to right, #67ceee, #0091ff);
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 12px;
}
.section-related li .pic img {
	background-color: #fff;
	display: block;
	/* opacity: 0.5; */
}
.section-related li .shd {
	line-height: 1.25;
}
.section-related li .shd i {
	margin-bottom: 5px;
	display: block;
	color: var(--acc2);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	font-family: var(--font-en);
}
.section-related li .shd em {
	font-size: 1.6rem;
	letter-spacing: 0.03em;
}
.section-related li .more {
	position: absolute;
	right: 12px;
	bottom: 10px;
	font-size: 12px;
}

/* カラムカード（買いたい・売りたい） ///
---------------------------------------------- */
.column-card {
	counter-increment: columcount;
}
.column-card > a {
	position: relative;
	display: block;
	box-sizing: border-box;
}
.column-card > a::before {
	content: "#" counter(columcount, decimal-leading-zero);
	position: absolute;
	top: -10px;
	left: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 48px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-en);
	line-height: 1;
	text-align: center;
	background-color: var(--acc1);
	border-radius: 6px 6px 0 0;
	padding-top: 4px;
	box-sizing: border-box;
	z-index: 1;
}
.column-card > a::after {
	content: "";
	position: absolute;
	left: 16px;
	top: calc(-10px + 48px);
	width: 50px;
	height: 8px;
	background-color: var(--acc1);
	-webkit-mask: url(../images/common/deco-ribbon-v.svg) no-repeat center / contain;
	mask: url(../images/common/deco-ribbon-v.svg) no-repeat center / contain;
	z-index: 1;
}
.column-card .img-fit {
	position: relative;
	aspect-ratio: 16 / 9;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden
}
.column-card .img-fit::after {
	content: "\f061"; /* arrow-right */
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	background-color: var(--acc2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	z-index: 1;
}
.column-card .shd {
	color: var(--acc1);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.02em;
	margin-top: 14px;
}
.column-card .txt {
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.02em;
	margin-top: 8px;
}

/* 売りたい 問い合わせ ///
---------------------------------------------- */
.section-toi-sell {
	position: relative;
	display: flex;
	justify-content: space-between;
	background: var(--bgc1);
	background: url(../images/common/pattern-noise01.svg) repeat center / 1024px 1024px;
	border-radius: 16px;
	padding: 40px 40px 40px 60px;
	margin-bottom: 30px;
	overflow: hidden;
}
.section-toi-sell::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 8px;
	background-color: var(--acc1);
}
.section-toi-sell .title {
	display: flex;
	flex-direction: column;
}
.section-toi-sell .title .hd {
	font-size: 32px;
	font-family: var(--font-gothic);
	line-height: 1.333;
	letter-spacing: 0.04em;
	margin: -6px 0 auto;
}
.section-toi-sell .title .txt {
	margin-bottom: -6px;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
}
.section-toi-sell .btns {
	display: flex;
	justify-content: space-between;
}
.section-toi-sell .btn {
	margin-left: 30px;
	width: 260px;
	background-color: #fff;
}
.section-toi-sell .btn > a {
	height: 160px;
	display: block;
	color: #fff;
	text-align: center;
}
.section-toi-sell .btn .icon {
	box-sizing: border-box;
	margin: auto;
	width: 40px;
	height: 67px;
	border-bottom: 1px solid #fff;
	display: block;
	color: #dbd1b0;
	line-height: 1;
}
.section-toi-sell .btn.tel a {
	background-color: var(--acc2);
}
.section-toi-sell .btn.tel .icon {
	margin-bottom: 12px;
	padding-top: 19px;
	font-size: 2.9rem;
}
.section-toi-sell .btn.tel .phone {
	margin-bottom: 6px;
	font-size: 28px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1;
	letter-spacing: 0.02em;
}
.section-toi-sell .btn.tel .info {
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	line-height: 1.3;
}
.section-toi-sell .btn.mail a {
	background-color: var(--acc1);
}
.section-toi-sell .btn.mail .icon {
	margin-bottom: 22px;
	padding-top: 24px;
	border-bottom: 1px solid #dcceab;
	font-size: 2.5rem;
}
.section-toi-sell .btn.mail a p {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* パーツ 査定フォーム ///
---------------------------------------------- */
.section-sateiform {
	position: relative;
	color: #fff;
	background-color: var(--acc1);
	border-radius: 16px;
	width: 100%;
	padding: 40px 60px;
	box-sizing: border-box;
	overflow: hidden;
}
.section-sateiform::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 8px;
	background-color: var(--acc2);
}
.section-sateiform .sec_head02 {
	display: flex;
	gap: 32px;
	margin-bottom: 24px;
}
.section-sateiform .sec_head02 .img {
	width: 242px;
	height: 67px;
}
.section-sateiform form {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}
.section-sateiform .steps {
	display: flex;
	gap: 32px;
}
.section-sateiform .step {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.section-sateiform .step .shd {
	font-size: 16px;
	line-height: 1.4;
}
.section-sateiform .step .shd i {
	display: block;
	color: var(--acc2);
	font-size: 16px;
	font-family: var(--font-en);
	line-height: 1.4;
}
.section-sateiform .input {
	position: relative;
	width: 232px;
	background-color: #fff;
	box-shadow: inset 0 0 0 1px #ccc;
}
.section-sateiform .input::before {
	content: "";
	position: absolute;
	top: 24px;
	right: 20px;
	width: 10px;
	height: 6px;
	background-color: #333;
	border-radius: 2px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
}
.section-sateiform .input::after {
	content: "\f101"; /* angles-right */
	position: absolute;
	top: 50%;
	right: -23px;
	transform: translateY(-50%);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	line-height: 1;
	opacity: 0.8;
}
.section-sateiform .input :is(select, .select2-selection) {
	display: block;
	color: #333;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	background-color: rgba(0,0,0,0);
	width: 100%;
	height: 54px;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	padding: 0 20px;
}
.section-sateiform .input select {
	cursor: pointer;
}
.section-sateiform .input select:focus {
	outline: none;
	border: 2px solid #333;
}
.section-sateiform .input select:not(.selected),
.section-sateiform .input select option:first-child {
	color: #ccc !important;
}
.section-sateiform .input .select2.selected {
	pointer-events: none;
}
.section-sateiform .input select option {
	color: #333;
}
.section-sateiform .input .select2-selection__arrow {
	display: none;
}
.section-sateiform .input .select2-container .select2-selection__rendered {
	display: flex;
	align-items: center;
	color: inherit;
	line-height: 1.4;
	height: 100%;
	padding: 0;
}
.select2-search--dropdown .select2-search__field {
	font-family: inherit;
}
.section-sateiform .submit {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.section-sateiform .submit .txt {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
}
.section-sateiform .submit button {
	cursor: pointer;
	width: 270px;
	max-width: 100%;
	min-width: 0;
	margin-top: 10px;
}

/* 固定ページ：チェックリストボックス ///
---------------------------------------------- */
.check-list-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--bgc1);
	border-radius: 16px;
	padding: 24px 40px;
	margin: 48px 0;
}
.check-list-box_ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background-color: var(--acc2);
	text-align: center;
}
.check-list-box_ttl > span {
	transform: rotate(-15deg);
}
.check-list-box_lists {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 20px;
	flex: 1 1 auto;
}
.check-list-box_lists > li {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	font-family: var(--font-gothic);
	border-bottom: 2px dotted var(--acc1);
	padding: 12px 0;
}
.check-list-box_lists > li:nth-child(-n+2) {
	border-top: 2px dotted var(--acc1);
}
.check-list-box_lists > li::before {
	content: "";
	position: relative;
	display: inline-block;
	width: 21px;
	height: 16px;
	background: url(../images/common/icon-checkbox-2.svg) no-repeat center / contain;
	margin-right: 4px;
}

/* 固定ページ：CTA（お問い合わせ誘導） ///
---------------------------------------------- */
.page-cta {
	background: url(../images/common/bg-watercolor.png) no-repeat center / cover;
	border-radius: 16px;
	padding: 60px 40px;
	margin-top: 80px;
	text-align: center;
}
.page-cta_ttl {
	color: #988c6c;
	font-size: 40px;
	font-weight: 700;
	font-family: var(--font-gothic);
	line-height: 1.4;
	margin-bottom: 32px;
}
.page-cta p {
	line-height: 2.2;
}
.page-cta p + p {
	margin-top: 20px;
}
.page-cta_btn {
	margin-top: 40px;
}
.page-cta_btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	background-color: var(--acc1);
	border-radius: 40px;
	padding: 26px 120px;
}
.page-cta_btn .kome {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 10px;
}


/* tksn //
////////////////////////////////////////////////////////////////////*/

/* 特選 お預かり物件（スライダー） ///
---------------------------------------------- */
/* 初期化前のチラつき防止 */
.slider-inner:not(.swiper-initialized) > .swiper-wrapper > * {
	opacity: 0 !important;
}
.slider-inner:not(.swiper-initialized) > .swiper-wrapper > :not(:first-child) {
	display: none !important;
}

.slider-tksn-cover {
	position: relative;
	height: 100%;
}

/* btn-arrow */
.slider-tksn-cover .btn-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 5;
	cursor: pointer;
}
.slider-tksn-cover .btn-arrow i {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #414042;
	border-radius: 50%;
}
.slider-tksn-cover .btn-arrow i::before {
	content:"\f061"; /* arrow-right */
	color: #414042;
	font-size: 16px;
	font-weight:900;
	font-family:"Font Awesome 6 Free";
}
.slider-tksn-cover .btn-arrow.prev i::before {
	transform:rotate(180deg);
}
.slider-tksn-cover .btn-arrow.prev {
	left: -24px;
}
.slider-tksn-cover .btn-arrow.next {
	right: -24px;
}

.slider-tksn-cover .slider-inner {
	border-radius: 10px 0 0 10px;
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}
.slider-tksn-cover .tksn-cover {
	width: 800px !important;
	height: 460px;
}

.tksn-cover {
	border-radius: 10px;
	overflow: hidden;
}
.tksn-cover > a {
	box-sizing: border-box;
	padding: 28px 25px 22px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	color: #fff;
	display: flex;
	flex-direction: column;
}
.tksn-cover .bukken-image, .tksn-cover .bukken-image::before, .tksn-cover .bukken-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
.tksn-cover .bukken-image {
	z-index: -1;
}
.tksn-cover .bukken-image img {
	object-fit: cover;
	object-position: center;
	opacity: 0.7;
	z-index: 1;
}
.tksn-card .bukken-pchange {
	position: absolute;
	bottom: 0;
	right: 0;
}
.tksn-card .bukken-pchange > div {
	padding: 2px 10px;
	background-color: #c00;
	display: flex;
	color: #fff;
	font-size: 1.2rem;
}
.tksn-card .bukken-pchange dt {
		margin-right: 10px;
}
.tksn-cover .bukken-image::before {
	background-color: #073457;
	z-index: -1;
	content: "";
}
.tksn-cover .bukken-title .hd {
	margin-bottom: 6px;
	line-height: 1;
}
.tksn-cover .bukken-syubetsu {
	margin-bottom: 9px;
	display: block;
	font-size: 1.6rem;
	letter-spacing: 0.04em;
}
.tksn-cover .bukken-price {
	font-size: 1.6rem;
	letter-spacing: 0.04em;
}
.tksn-cover .bukken-price span {
	font-size: 2.6rem;
	font-weight: 600;
	font-family: "Outfit", serif;
}
.tksn-cover .bukken-point {
	margin-top: auto;
	font-size: 1.4rem;
	line-height: 1.4285;
}
.tksn-cover .bukken-point :where(dt, dd){
	letter-spacing: 0.04em;
}
.tksn-cover .bukken-point dt {
	margin-bottom: 6px;
	padding-bottom: 8px;
	border-bottom: 1px solid #fff;
	font-weight: 700;
}
.tksn-cover .more {
	margin-top: 7px;
	color: #fff;
	text-align: right;
}
.tksn-cover .more::after {
	background-image: url(../images/common/arrow-more-w.png);
}

/* 特選 お預かり物件（カラム） ///
---------------------------------------------- */
.tksn-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
}
.tksn-cards .tksn-card {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: inset 0 0 0 1px #c9c9c9;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	color: #666;
	font-size: 1.4rem;
	line-height: 1.5;
}
.tksn-card::after {
	width: 100%;
	background-color: #fff;
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	content: "";
}
.tksn-card:hover:not(:has(.bukken-comment .staff:hover))::after {
	opacity: 0.2;
}
.tksn-card .bukken-mv {
	margin: 1px 1px 0;
	height: 239px;
	border-radius: 3px 3px 0 0;
	display: block;
	overflow: hidden;
	position: relative;
}
.tksn-card :where(.bukken-shubetsu, .bukken-new) {
	padding: 0 10px;
	position: absolute;
	top: 20px;
	color: #fff;
	line-height: 2.5rem;
}
.tksn-card .bukken-shubetsu {
	background-color: #a28d5b;
	left: 20px;
	font-size: 1.3rem;
}
.tksn-card .bukken-new {
	background-color: var(--acc1);
	right: 20px;
}
.tksn-card .bukken-new span {
	animation: flash 1.6s linear infinite;
}
.tksn-card .bukken-mv img {
	width: 100%;
	height: 100%;
	object-fit: cover
}
.tksn-card .bukken-pchange {
	position: absolute;
	bottom: 0;
	right: 0;
}
.tksn-card .bukken-pchange > div {
	padding: 2px 10px;
	background-color: #c00;
	display: flex;
	color: #fff;
	font-size: 1.2rem;
}
.tksn-card .bukken-pchange dt {
		margin-right: 10px;
}
.tksn-card .bukken-title {
	padding: 15px 20px 11px;
	display: flex;
	color: #333;
	justify-content: space-between;
	align-items: start;
}
.tksn-card .bukken-title .name {
	max-width: calc(100% - 7em);
	font-weight: 700;
}
.tksn-card .bukken-title .price {
	padding-right: 3px;
	font-size: 1rem;
	line-height: 1;
}
.tksn-card .bukken-title .price .num {
	margin-right: 1px;
	color: #908772;
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	font-family: "Outfit", serif;
}
.tksn-card .bukken-info {
	padding: 0 20px 17px;
	display: block;
}
.tksn-card .bukken-info > p {
	padding-left: 13px;
	position: relative;
}
.tksn-card .bukken-info > p::before {
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 4px;
	left: 0;
	content: "";
}
.tksn-card .bukken-info > .address::before {
	width: 8px;
	height: 12px;
	background-image: url(../images/common/tksn-card-address.png);
}
.tksn-card .bukken-info > .access::before {
	width: 9px;
	height: 13px;
	background-image: url(../images/common/tksn-card-access.png);
}
.tksn-card .bukken-info > .size::before {
	width: 11px;
	height: 11px;
	background-image: url(../images/common/tksn-card-size.png);
	top: 5px;
	left: -1px;
}
.tksn-card .bukken-info > p + p {
	margin-top: 2px;
}
.tksn-card .bukken-info > .size {
	margin-top: 5px;
}
.tksn-card .bukken-comment {
	margin-top: auto;
	min-height: 94px;
	position: relative;
}
.tksn-card .bukken-comment .txt {
	box-sizing: border-box;
	height: 100%;
	min-height: 94px;
	border-top: 1px solid #c9c9c9;
	position: relative;
}
.tksn-card .bukken-comment .txt a {
	box-sizing: border-box;
	height: 100%;
	padding: 17px 90px 17px 18px;
	display: block;
	line-height: 1.42;
	text-align: justify;
	font-feature-settings: 'palt';
}
.tksn-card .bukken-comment .staff {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: #efefef;
	border: 1px solid #fff;
	overflow: hidden;
	position: absolute;
	top: 20px;
	right: 22px;
	z-index: 1;
}


/* スマホ切り替えボタン //
////////////////////////////////////////////////////////////////////*/

body > .pc2spLink {
	padding: 30px;
	background-color: var(--acc1);
	position: relative;
	z-index: 100;
}
body > .pc2spLink a {
	border: 5px solid #fff;
	border-radius: 10px;
	display: block;
	color: #fff;
	font-size: 3rem;
	line-height: 90px;
	text-align: center;
}
body > .pc2spLink a::before {
	margin-right: 8px;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1;
	vertical-align: middle;
	font-family: "Font Awesome 6 Free";
	content: "\f3cd";
}


/* grecaptcha //
////////////////////////////////////////////////////////////////////*/

.grecaptcha-badge {
	display: none!important;
}