/*
Theme Name: TW2026
Version: 0
Template: blankslate
*/


@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


:root {
	/* color */
	--main-color: #3283c6;
	--sub-color: #0e3260;
	--accent-red: #ff353f;
	--white: #fff;
	--light-gray: #f9faff;
	--line-gray: #dfdfdf;
	--table-color: #f5f5f5;
	--text-color: #0e1832;
	--heading-color: #181818;
	--download-btn-color: #152a57;

	/* effect */
	--basic-transition: all .3s;

	/* font */
	--main-font: "Google Sans", "Noto Sans JP", sans-serif;
	--japanese-font: "Noto Sans JP", sans-serif;
	--english-font: "Montserrat", sans-serif;
	--icon-font: 'Material Symbols Outlined';
	--fz-basic: clamp(14px, 1.1vw, 16px);

	/* pxsize */
	--s5: calc(5rem / 16);
	--s12: calc(12rem / 16);
	--s13: calc(13rem / 16);
	--s14: calc(14rem / 16);
	--s16: calc(16rem / 16);
	--s18: calc(18rem / 16);
	--s20: calc(20rem / 16);
	--s21: calc(21rem / 16);
	--s22: calc(22rem / 16);
	--s24: calc(24rem / 16);
	--s25: calc(25rem / 16);
	--s26: calc(26rem / 16);
	--s28: calc(28rem / 16);
	--s30: calc(30rem / 16);
	--s32: calc(32rem / 16);
	--s35: calc(35rem / 16);
	--s36: calc(36rem / 16);
	--s40: calc(40rem / 16);
	--s42: calc(42rem / 16);
	--s44: calc(44rem / 16);
	--s48: calc(48rem / 16);
	--s50: calc(50rem / 16);
	--s56: calc(56rem / 16);
	--s60: calc(60rem / 16);
	--s70: calc(70rem / 16);
	--s72: calc(72rem / 16);
	--s80: calc(80rem / 16);

	/* 【可変用】1280px(約41px) 〜 1920px(62px) */
	--fluid-s62: clamp(2.58rem, 3.23vw, 3.875rem);

	/* 【可変用】1280px(約35px) 〜 1920px(52px) */
	--fluid-s52: clamp(2.17rem, 2.71vw, 3.25rem);

	/* 【可変用】1280px(約37px) 〜 1920px(56px) */
	--fluid-s56: clamp(2.33rem, 2.92vw, 3.5rem);

	/* layout */
	--basic-width: 1500px;
	--basic-width-left: calc((100vw - var(--basic-width)) / 2);
	--basic-width-right: calc((100vw - var(--basic-width)) / 2);
	--header-width: 1500px;

	/* 下層セクション */
	--section-py: calc(112.5rem / 16) 0;
	--nav-offset-y: calc(160rem / 16);
}

* {
	box-sizing: border-box;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

*, *::before, *::after {
	box-sizing: border-box;
}


html {
	font-size: 16px;
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

/* 1705px以下でコンテンツ幅％変更に合わせて文字サイズも可変にする */

@media (width <=1705px) {
	html {
		font-size: clamp(14px, .833vw, 18px);
	}
}

@media (width <=767px) {
	html {
		font-size: 16px;
	}
}



body {
	color: var(--text-color);
	font-family: var(--main-font);
	font-size: var(--s16);
	font-weight: 500;
	line-height: 1.6;
}

b, strong {
	font-weight: 700;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}


/* pictureはデフォルトでinlineなので、挙動を安定させる */
picture {
	display: block;
	height: 100%;
}

a {
	color: inherit;
}

a, button {
	text-decoration: none;
	transition: var(--basic-transition);
}


select {
	appearance: none;
}

/* 長い英数字の折り返し許可 */
th, td {
	overflow-wrap: anywhere;
}

/* a:hover {
	opacity: .5;
} */

/* === JS === */

/* --- 共通設定：最初は見えなくしておく --- */
.js-scroll {
	opacity: 0;
	transition: opacity 0.5s;

	/* JSが動く前の予備 */
}

/* --- 下から上へ --- */
.slide-up {
	transform: translateY(1em);
	transition: transform 0.4s, opacity 0.4s;
}

.slide-up.is-active {
	opacity: 1;
	transform: translateY(0);
}

/* --- 下から上へ: TOP Business ブロック --- */
.slide-up-block {
	display: block;
	opacity: 0;
	transform: translateY(20%);
	transition: transform 0.4s, opacity 0.4s
}

.slide-up-block img {
	will-change: transform, opacity;
}


.slide-up-block.is-active {
	opacity: 1;
	transform: translateY(0);

}





.br-mb {
	display: none;
}

@media (width <=767px) {
	.br-pc {
		display: none;
	}

	.br-mb {
		display: block;
	}
}


.container {
	margin: 0 auto;
	max-width: var(--basic-width);
}


@media (width <=1705px) {
	.container {
		width: 88%;
	}
}

.section {
	padding: 9.5rem 0;
}

.section-title-en {
	color: var(--main-color);
	display: inline-block;
	font-family: var(--english-font);
	font-size: 6.25rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.section-title {
	align-items: center;
	display: flex;
	font-size: 1.125rem;
	gap: 0.5rem;
	line-height: 1.1;
	margin-bottom: 3rem;
}

.section-title-icon {
	background: #e4f1fd;
	border-radius: 50%;
	display: inline-block;
	height: 1.18rem;
	position: relative;
	width: 1.18rem;
}

.section-title-icon::after {
	background: var(--main-color);
	border-radius: 50%;
	content: '';
	display: inline-block;
	height: 0.56rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.56rem;
}

.section-lead {
	font-size: 1.125rem;
	line-height: 1.5;
}

@media (width <=767px) {
	.section {
		padding: 4rem 0;
	}

	.section-title-en {
		font-size: 3rem;
	}

	.section-title {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.section-title-icon {
		height: 14.5px;
		width: 14.5px;
	}

	.section-title-icon::after {
		height: 7px;
		width: 7px;
	}

	.section-lead {
		font-size: 15px;
		line-height: 1.6;
	}
}


.arrow {
	background: var(--main-color);
	border-radius: 4px;
	display: grid;
	height: 3.3rem;
	place-items: center;
	width: 3.3rem;
}

/* 枠線矢印ボタン */
.arrow-border {
	background: none;
	border: 1px solid currentcolor;
	border-radius: 6px;
	color: var(--main-color);
	display: grid;
	height: 6rem;
	place-items: center;
	transition: .3s;
	width: 6rem;
}

.arrow-border:hover,
.contact:hover .contact__arrow {
	transform: scale(1.04);
}

.arrow-border:hover .arrow-border__icon,
.fv-news:hover .arrow-border__icon,
.contact:hover .arrow-border__icon {
	animation: arrowAnime .5s;
}

.arrow-border__icon-wrapper {
	overflow: hidden;
}

.arrow-border__icon {
	display: block;
	font-size: 2.5rem;
	font-weight: 300;
}

@keyframes arrowAnime {
	0% {
		translate: 0 0;
	}

	50% {
		translate: 100% 0;
	}

	50.1% {
		translate: -100% 0;
	}

	100% {
		translate: 0 0;
	}
}



@media (width <=767px) {
	.arrow {
		height: 36px;
		width: 36px;
	}

	.arrow .material-symbols-outlined {
		font-size: 22px;
		font-weight: 300;
	}
}

/* 矢印つきボタン: 物件詳細 */
.detail-btn {
	align-items: center;
	background: var(--main-color);
	border-radius: 6px;
	color: var(--white);
	display: inline-flex;
	font-size: 1.125rem;
	gap: 1.875rem;
	letter-spacing: 0.025em;
	line-height: 1.1;
	padding: .8rem 1.125rem .8rem 2.25rem;
	position: relative;
}

.detail-btn::before {
	background: url("images/btn-arrow.svg") 50% center / calc(40rem / 16) no-repeat,
		rgb(228 241 253 / 15%);
	border-radius: 4px;
	content: '';
	display: inline-block;
	height: calc(68rem / 16);
	overflow: hidden;
	position: absolute;
	right: calc(34rem / 16);
	top: 50%;
	transform: translateY(-50%) scale(1);
	transition: transform .3s, background-position .4s;
	transition: all .3s;
	vertical-align: middle;
	width: calc(68rem / 16);
}

.detail-btn:hover::before {
	animation: arrowBg .28s linear;
	transform: translateY(-50%) scale(1.05);
}


/* TOP about用ボタン */
.detail-btn--about {
	border-radius: 0;
}

.detail-btn--about::before {
	background: url("images/btn-arrow.svg") 50% center / calc(30rem / 16) no-repeat, var(--main-color);
	height: calc(54rem / 16);
	right: calc(58rem / 16);
	transform: translateY(-50%) scale(1);
	transition: transform .3s, background-position .4s;
	transition: all .3s;
	width: calc(54rem / 16);
}

@media (width <=767px) {
	.detail-btn--about::before {
		background: url("images/btn-arrow.svg") 50% center / 20px no-repeat, var(--main-color);
		height: 36px;
		right: 40px;
		width: 36px;
	}
}

/* TOP 小さめ矢印ボタン */
.detail-btn--short {
	max-width: 13.5rem;
	padding: 1.56rem 2.37rem;
	width: 100%;
}

.detail-btn--short::before {
	background:
		url("images/btn-arrow.svg") 50% center / 1.5rem no-repeat,
		rgb(228 241 253 / 15%);
	border-radius: 4px;
	content: '';
	display: inline-block;
	height: 2.4rem;
	overflow: hidden;
	position: absolute;
	right: 1.125rem;
	top: 50%;
	transform: translateY(-50%) scale(1);
	transition: transform .3s, background-position .4s;
	transition: all .3s;
	vertical-align: middle;
	width: 2.4rem;
}

/* 矢印 */
.detail-btn--short:hover::before {
	animation: arrowBg .28s linear;
	transform: translateY(-50%) scale(1.05);
}


.detail-btn--mb {
	display: none;
}

.detail-btn__arrow {
	background: rgb(228 241 253 / 15%);
	border-radius: 4px;
	display: grid;
	height: 2.4rem;
	place-items: center;
	width: 2.4rem;
}

/* icon */
.detail-btn__arrow .material-symbols-outlined {
	font-size: var(--s24);
	font-weight: 300;
}



.download-btn {
	align-items: center;
	background: var(--download-btn-color);
	border-radius: 6px;
	color: var(--white);
	display: flex;
	font-size: var(--s24);
	gap: 1.375rem;
	justify-content: center;
	letter-spacing: 0.05em;
	padding: clamp(2.625rem, 1.125rem + 1.88vw, 3.375rem) 0;
}

.download-btn .material-symbols-outlined {
	font-size: 2.3rem;
	font-weight: 300;
}

@media (width <=767px) {
	.download-btn {
		gap: 14px;
	}

	.download-btn .material-symbols-outlined {
		font-size: 25px;
		font-weight: 200;
	}
}


/* header
==================================================== */
.site-header-wrap {
	background: var(--white);
	max-width: var(--header-width);

}

@media (width <=1705px) {
	.site-header-wrap {
		width: 88%;
	}
}

/* width = 1730 / 1920 */
.site-header {
	background: var(--white);
	border-radius: 6px;
	height: 5.125rem;
	left: 50%;
	max-width: var(--header-width);
	position: fixed;
	top: 2rem;
	transform: translateX(-50%);
	width: 100%;
	z-index: 1000;
}

@media (width <=1705px) {
	.site-header {
		width: 88%;
	}
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.site-header__logo {
	margin-right: 2.5rem;
}

.site-header__logo img {
	height: auto;
	width: 15.9rem;
}

.site-header__nav {
	flex: 1;
}

.site-header__menu {
	display: flex;
	gap: var(--s32);
	justify-content: flex-end;
	margin-right: var(--s32);
}


.site-header__menu a {
	color: transparent;
	display: block;
	font-size: var(--s16);
	overflow: hidden;
	text-decoration: none;
	text-shadow: 0 -1.5em 0 var(--text-color), 0 0 0 var(--text-color);
	transition: text-shadow 0.3s;
}

.site-header__menu a:hover {
	opacity: unset;
	text-shadow: 0 0 0 var(--text-color), 0 1.5em 0 var(--text-color);
}



.site-header__cta {
	margin-right: 0;
}

.site-header__button {
	background: var(--main-color);
	border-radius: 6px;
	color: var(--white);
	display: grid;
	font-size: var(--s16);
	height: 3.5rem;
	place-items: center;
	text-decoration: none;
	width: 11.25rem;
}

.hamburger {
	display: none;
}


/* === SP メニュー === */

@media only screen and (width <=1100px) {
	.site-header {
		height: 60px;
		max-width: 100%;
		overflow: hidden;
		position: fixed;
		top: var(--s16);
		z-index: 1000;
	}


	.site-header__inner {
		padding: 20px 11px;
	}

	.site-header__logo {
		margin-right: 0;
		width: 174px;
	}

	.site-header__nav,
	.site-header__cta {
		display: none;
	}

	/* is-open */

	.site-header.is-open {
		height: fit-content;
		max-height: 90vh;
		max-height: 90dvh;
		-webkit-overflow-scrolling: touch;
		overflow-y: auto;
	}

	.site-header.is-open .site-header__inner {
		display: block;
		height: fit-content;
		padding-inline: 11px;
		padding-bottom: 20px;
		padding-top: 20px;
	}



	.site-header.is-open .site-header__cta {
		display: block;
		padding-inline: 18px;
		width: 100%;
	}

	.site-header.is-open .site-header__button {
		font-size: 15px;
		height: auto;
		padding: 26px 0;
		width: 100%;
	}

	.site-header.is-open .site-header__nav {
		display: block;
		margin-bottom: 32px;
		overflow-y: auto;
		padding-top: 48px;
		transition: all .6s;
		width: 100%;
	}

	.site-header__menu {
		flex-direction: column;
		gap: 30px;
		margin: 0 auto;
		padding-inline: 18px;
		width: 100%;
	}

	.site-header__menu a {
		color: var(--text-color);
		font-size: 14px;
		letter-spacing: .01em;
		line-height: 1;
		text-shadow: none;
	}

	.site-header__menu a:hover {
		text-shadow: none;
	}

	/* font-sizeはタブレットサイズになるまで小さめに */
	.site-header__menu a::before {
		display: none;
	}

	.site-header__menu .menu-about>a::before {
		content: "Who We Are";
	}

	.site-header__menu .menu-business>a::before {
		content: "Business";
	}

	.site-header__menu .menu-sale>a::before {
		content: "For Sale";
	}

	.site-header__menu .menu-rent>a::before {
		content: "For Rent";
	}

	.site-header__menu .menu-news>a::before {
		content: "News";
	}

	.site-header__overlay {
		background: rgb(0 0 0 / 40%);
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 0.3s ease;
		z-index: 900;

		/* header より下 */
	}

	.site-header__overlay.is-open {
		opacity: 1;
		pointer-events: auto;
	}

	/* === ハンバーガーボタン === */

	.hamburger {
		background: none;
		border: none;
		cursor: pointer;
		display: block;
		height: 10px;
		position: absolute;
		right: 15px;
		top: 25px;
		width: 32px;
		z-index: 1100;
	}

	.hamburger__line {
		background: var(--main-color);
		height: 2px;
		left: 0;
		position: absolute;
		transition: transform 0.3s ease, opacity 0.2s ease;
		width: 100%;
	}

	.hamburger__line_top {
		top: 0;
	}

	.hamburger__line_middle {
		top: 9px;
	}

	.hamburger__line_bottom {
		bottom: 0;
	}

	.site-header.is-open .hamburger {
		height: 19px;
		position: absolute;
		right: 15px;
		top: 18px;
		width: 30px;
	}

	.site-header.is-open .hamburger__line_top {
		transform: translateY(8px) rotate(30deg);
	}

	.site-header.is-open .hamburger__line_middle {
		opacity: 0;
	}

	.site-header.is-open .hamburger__line_bottom {
		transform: translateY(-8px) rotate(-30deg);
	}


	.header__list {
		flex-direction: column;
		height: auto;
		justify-content: flex-start;
		padding-right: 0;
	}

	.header__item {
		width: 100%;
	}

	.header__link {
		font-size: var(--s14);
		height: auto;
		justify-content: flex-start;
		padding-left: 3em;
	}

	@media (any-hover: hover) {
		.main-nav__item a:hover {
			color: var(--text-color);
		}
	}

	.black_bg {
		background-color: #333;
		cursor: pointer;
		height: 100vh;
		left: -5%;
		opacity: 0;
		position: fixed;
		top: -1rem;
		transition: all .6s;
		visibility: hidden;
		width: 100vw;
		z-index: 100;
	}

	/* 表示された時用のCSS */



	.is-open .black_bg {
		opacity: .8;
		visibility: visible;
	}

}

/* SP: メニュー */
@media (width <=960px) {
	.site-header__menu a::before {
		color: var(--text-color);
		display: block;
		font-family: var(--english-font);
		font-size: 40px;
		font-weight: 400;
		letter-spacing: 0.025em;
		line-height: 1;
		margin-bottom: 12px;
	}

}

/* Hero
==================================================== */



.hero {
	background-image: url("images/mv_top.jpg");
	background-image: image-set("images/mv_top.webp"type("image/webp"),
			"images/mv_top.jpg"type("image/jpeg"));
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	height: 100dvh;
	position: relative;
}

.hero__catch {
	bottom: calc(50rem / 16);
	position: absolute;
	width: fit-content;
}


.hero__catch-bg {
	animation: extendBg 0.4s cubic-bezier(.94, 0, .62, 1.02) forwards;
	background: var(--white);
	display: block;
	line-height: 1.1;
	max-height: 114px;
	padding: 0.3em 1.4em;
	padding: var(--s18) var(--s28);
	transform-origin: left;
	width: fit-content;
}

.hero__catch-bg:first-of-type {
	margin-bottom: var(--s14);
}

.hero__catch-text {
	animation: fadeInText 0.4s ease 0.6s forwards;
	background: linear-gradient(-135deg, #1bb8db, #2673b6, #0e1832);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-size: var(--s72);
	font-weight: 700;
	line-height: 1.1;
	opacity: 0;

	/* 文字を最初は透明に */
}

/* 句点分詰め */
.hero__catch-text .period {
	letter-spacing: -0.5em;
}

/* 背景が左から伸びる動き */
@keyframes extendBg {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

/* 文字がふわっと出る動き */
@keyframes fadeInText {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 「画面幅に追従」モードに切り替える */
@media screen and (width <=960px) {
	.hero {
		aspect-ratio: auto;
		height: 650px;
	}

	.hero__catch-text {
		font-size: 3.2vw;
	}

	.hero__catch-bg {
		padding: 7px 10px 6px;
	}

}

@media (width <=767px) {
	/* SPのみ縦4行処理 */
	.hero__catch.u-sp-only {
		bottom: 55px;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.hero__catch-bg:first-of-type {
		margin-bottom: 0;
	}

	.hero__catch-text {
		font-size: 38px;
	}
}


/* Firstview News
==================================================== */

.fv-news {
	background-color: #fff;
	height: calc(110rem / 16);
	position: relative;
}

.fv-news__container {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
}

.fv-news__wrap {
	align-items: center;
	display: flex;
	gap: calc(42rem / 16);
}

.fv-news__wrap-inner {
	display: flex;
	gap: var(--s22);
}

.fv-news__wrap-right {
	align-items: center;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.fv-news__date {
	color: var(--text-color);
	font-size: var(--s16);
	font-weight: 500;
}

.fv-news__category {
	background: var(--main-color);
	border-radius: 2px;
	color: var(--white);
	font-size: var(--s14);
	font-weight: 400;
	line-height: 1;
	padding: .6em .9em;
}

.fv-news__title {
	color: var(--text-color);
	font-size: var(--s18);
	margin-right: auto;
}

.fv-news__title::after {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;

}

.fv-news__title:hover {
	opacity: .7;
}

.fv-news__arrow {
	align-items: center;
	border: 1px solid currentcolor;
	border-radius: 4px;
	color: var(--main-color);
	display: grid;
	height: 45px;
	place-items: center;
	width: 45px;
}

.fv-news:hover .fv-news__arrow {
	opacity: unset;
	transform: scale(1.1, 1.1);
}



.fv-news__arrow span {
	font-size: 22px;
}

@media (width <=767px) {
	.fv-news {
		padding: 20px 0;
	}

	.fv-news__container {
		align-items: center;
		flex-direction: row;
		gap: 12px;
		justify-content: space-between;
	}

	.fv-news__wrap {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.fv-news__wrap-inner {
		align-items: flex-end;
		gap: 15px;
	}

	.fv-news__date {
		font-size: 14px;
		line-height: 1.1;
	}

	.fv-news__category {
		font-size: 12px;
		padding: .55em .8em;
	}

	.fv-news__title {
		font-size: 14px;
	}

	.fv-news__wrap-right {
		flex: 0;
	}

	.fv-news__arrow {
		border-radius: 2px;
		height: 28px;
		width: 28px;
	}
}


/* footer
==================================================== */
.site-footer {
	background: var(--sub-color);
	color: var(--white);
	padding: 144px 0 106px;
}



.site-footer__main {
	display: flex;
	gap: 2.5rem;
	justify-content: space-between;
	margin-bottom: 84px;
}

.site-footer__shop-wrap {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	width: 50%;
}

.site-footer__shop-name {
	font-size: 1.25rem;
	letter-spacing: .01em;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.site-footer__address, .site-footer__tel {
	font-size: var(--s16);
	font-weight: 400;
	letter-spacing: .01em;
	line-height: 1.5;
}

.site-footer__tel {
	margin-bottom: .4rem;
}

.site-footer__maps {
	display: flex;
	gap: 16px;
}

.site-footer__map-link {
	align-items: center;
	display: flex;
	font-size: var(--s14);
	font-weight: 400;
	gap: .5rem;
	letter-spacing: .025em;
}

.site-footer__map-link--download {
	font-weight: 400;
	letter-spacing: .01em;
}



.site-footer__map-link::after {
	content: "\e89e";
	font-family: var(--icon-font);
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.1;

}

.site-footer__map-link--download::after {
	content: '\f090';
	font-size: var(--s24);

}

.site-footer__nav-list {
	display: grid;
	gap: 82px 105px;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, auto);
}


.site-footer__nav-en {
	display: block;
	font-family: var(--english-font);
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: .025em;
	line-height: 1.1;
	margin-bottom: var(--s13);
	white-space: nowrap;
}

.site-footer__nav-ja {
	font-size: var(--s16);
	letter-spacing: .01em;
	line-height: 1.1;
}

.site-footer__logo {
	display: flex;
	justify-content: flex-end;
	margin-bottom: var(--s14);
}

.site-footer__logo img {
	width: 29rem;
}

.site-footer__divider {
	background-color: var(--white);
	border: none;
	height: 0.8px;
	margin-bottom: 1.875rem;
}

.site-footer__bottom {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.site-footer__bottom-link,
.site-footer__copyright {
	font-size: var(--s16);
	font-weight: 400;
	letter-spacing: 0.01em;
}


@media (width <=767px) {
	.site-footer {
		padding: 64px 0 48px;
	}

	.site-footer__main {
		flex-direction: column;
		gap: 86px;
		margin-bottom: 80px;
	}

	.site-footer__shop-wrap {
		gap: 45px;
		width: 100%;
	}

	.site-footer__shop-name {
		font-size: 16px;
	}

	.site-footer__address, .site-footer__tel {
		font-size: 14px;
	}

	.site-footer__map-link {
		font-size: 13.5px;
	}

	.site-footer__nav-list {
		gap: 40px;
		grid-auto-flow: row;
		grid-template-columns: 1fr;
	}

	.site-footer__nav-ja {
		font-size: 14px;
	}

	.site-footer__logo img {
		width: 268px;
	}

	.site-footer__divider {
		margin-bottom: 16px;
	}

	.site-footer__bottom-link,
	.site-footer__copyright {
		font-size: 13px;
	}
}

/* properties */
.properties__lead-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.properties__list {
	display: flex;
	gap: 1.25rem;
}

.properties__card {
	background: #eee;
	flex: 1;
}

.properties__img {
	width: 100%;
}


/* Who We Are
==================================================== */

.about {
	background-color: var(--sub-color);
	background-image: url("images/top_bg.jpg");
	background-image: image-set("images/top_bg.webp"type("image/webp"),
			"images/top_bg.jpg"type("image/jpeg"));
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	padding: 11rem 0 12rem;

}

.abour__header-wrap {
	overflow: hidden;
}


.about__title-en {
	color: var(--white);
	display: inline-block;
	font-size: 8.75rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.about__title {
	font-size: var(--s24);
	margin-bottom: 7rem;
}

.about__catch {
	font-size: var(--s60);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: var(--s80);
}

.about__body {
	margin-bottom: 9rem;
	width: 52rem;
}

.about__text {
	font-size: 1.25rem;
	line-height: 2;
	margin-bottom: 1.25rem;
}

.about__text:last-of-type {
	margin-bottom: 0;
}

.about__buttons {
	display: flex;
	gap: 2px;
}

.about__button {
	align-items: center;
	aspect-ratio: 480 / 222;
	background: #2977b7;
	display: flex;
	justify-content: space-between;
	padding-inline: var(--s60);
	text-decoration: none;
	width: calc(100% / 3);
}

.about__button:first-of-type {
	border-radius: 4px 0 0 4px;
}

.about__button:last-of-type {
	border-radius: 0 4px 4px 0;
}

.about__button-title {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about__button-en {
	font-family: var(--english-font);
	font-size: clamp(12px, 1.3vw, 1rem);
	font-weight: 500;
	letter-spacing: 0.025em;
}

.about__button-ja {
	font-size: clamp(1rem, 2vw, 1.5rem);
	line-height: 1.1;
}

/* TAB: about  */
@media (width <=960px) {
	.about__button {
		padding-inline: 2rem;
	}

	.detail-btn--about::before {
		right: 2rem;
	}

}

/* SP: about */
@media (width <=767px) {
	.about {
		padding: 4rem 0;
	}

	.about__title-en {
		font-size: 4.25rem;
	}

	.about__title {
		font-size: 15px;
		margin-bottom: 40px;
	}

	.about__catch {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.about__body {
		margin-bottom: 3rem;
		width: 100%;
	}

	.about__text {
		font-size: var(--s16);
	}

	.about__buttons {
		flex-direction: column;
	}

	.about__button {
		aspect-ratio: auto;
		padding: 46px 40px;
		width: 100%;
	}

	.about__button:first-of-type {
		border-radius: 4px 4px 0 0;
	}

	.about__button:last-of-type {
		border-radius: 0 0 4px 4px;
	}

	.about__button-title {
		gap: 14px;
	}

	.about__button-en {
		font-size: 13px;
		line-height: 1.1;
	}

	.about__button-ja {
		font-size: 18px;
	}
}

/* business
==================================================== */
.business {
	background: var(--light-gray);
}


.business__top {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5rem;
}



.business__list {
	display: flex;
	flex-direction: column;
}

.business__item {
	align-items: flex-start;
	background-color: transparent;
	border-top: 1px solid var(--line-gray);
	display: flex;
	gap: 5.5rem;
	padding: 5rem 0;
	transition: background-color 1s;
}

.business__item--last {
	border-bottom: 1px solid var(--line-gray);
}





.business__image {
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	max-width: calc(500rem / 16);
	overflow: hidden;
	transition: transform 0.4s, opacity 0.4s;
	width: 100%;
}

.business__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
	width: 100%;
}

.business__item:hover img {
	transform: scale(1.05);
}

.business__body {
	align-items: center;
	display: flex;
	justify-content: space-between;
	width: 100%;


}

.business__text {
	width: calc(612rem / 16);
}

.business__number {
	color: var(--main-color);
	display: block;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.1;
	margin-bottom: clamp(50px, calc(116 / 1920 * 100vw), 116px);
}

.business__item-title {
	font-size: 3rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.business__item-title-en {
	color: var(--text-color);
	display: block;
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: .075em;
	line-height: 1.1;
	margin-bottom: 4rem;
}

.business__description {
	font-size: var(--s18);
	line-height: 1.65;

}

.business__arrow {
	transition: transform .5s;
}

.business__item:hover .business__arrow {
	transform: scale(1.05);
}

.business__item:hover .arrow-border__icon {
	animation: arrowAnime .5s;
}




@media (width <=767px) {
	.business__top {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 30px;
	}

	.business__button {
		display: none;
	}

	.business__item {
		flex-direction: column-reverse;
		gap: 36px;
		padding: 40px 0;
	}



	.business__item-title-en {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.business__description {
		font-size: 15px;
		width: 100%;
	}

	.business__image {
		width: 100%;
	}

	.business__arrow {
		display: none;
	}
}

/* rent
==================================================== */


.new-prop__head {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5.5rem;
}



.new-prop__title {
	margin-bottom: 0;
}

.new-prop__more {
	display: flex;
	flex: 1;
	justify-content: flex-end;
}

.new-prop__more--mb {
	display: none;
}

.new-prop__btn {
	max-width: 14.5rem;
}



.slide-card {
	padding: 0 0 7rem;
}

.slide-card__image {
	aspect-ratio: 645 / 400;
	border-radius: 6px;
	display: block;
	margin-bottom: 1.25rem;
	overflow: hidden;
}

.slide-card__image img {
	height: 100%;
	object-fit: cover;
	transition: var(--basic-transition);
	width: 100%;
}

.slide-card__image:hover img {
	transform: scale(1.05);
}


.slide-card__category {
	border: 1px solid currentcolor;
	border-radius: 2px;
	color: var(--main-color);
	display: inline-block;
	font-size: .8rem;
	letter-spacing: .05em;
	line-height: 1;
	margin-bottom: 12.8px;
	padding: .46em .77em;
}

.slide-card__title {
	color: var(--text-color);
	display: block;
	font-size: 1.25rem;
	letter-spacing: .025em;
	line-height: 1.5;
	margin-bottom: .6rem;
	transition: var(--basic-transition);
}

.slide-card__title:hover {
	color: var(--main-color);
}

.slide-card__price {
	font-size: var(--s24);
	line-height: 1.1;
	margin-bottom: .5rem;
}

.slide-card__price-sub {
	font-size: .95rem;
}


.slide-card__yen {
	font-size: var(--s14);
}

.slide-card__slash {
	font-family: var(--japanese-font);
	font-size: var(--s14);
	margin-inline: 2px
}

/* メタ情報 */

/* font-size あえて可変しない */
.slide-card__meta {
	color: #9f9f9f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1;
}

.slide-card__divider {
	background: var(--line-gray);
	border: none;
	height: 1px;
	margin-bottom: .8rem;
	margin-top: .687rem;
}


.slide-card__region, .slide-card__access {
	align-items: flex-start;
	font-size: var(--s18);
}

.slide-card__region {
	display: flex;
	font-weight: 400;
	gap: 2px;
	letter-spacing: .025em;
}

/* 文字サイズはあえてpx */
.slide-card__access {
	display: flex;
	font-weight: 400;
	gap: 2px;
	letter-spacing: .025em;
}

.slide-card__region .material-symbols-outlined,
.slide-card__access .material-symbols-outlined {
	font-size: var(--s24);
	font-weight: 200;
}


@media (width <=767px) {
	.new-prop__head {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 50px;
	}

	.new-prop__more {
		display: none;
	}

	.new-prop__more--mb {
		display: block;
	}

	.new-prop__more--mb .new-prop__btn {
		justify-content: space-between;
		width: 100%;
	}


}

/* Splide
==================================================== */

.right-aligned-slider {
	overflow: hidden;
}

.right-aligned-slider .splide__slide {
	max-width: calc(645rem / 16) !important;
	width: calc(645 / 1500 * 100%) !important;

}

.js-top-slider .splide__track {
	overflow: visible;
}


.js-top-slider .splide-controller {
	align-items: center;
	display: flex;
	gap: 1.6rem;
	margin-top: 3.2rem;
}

.js-top-slider .splide__pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
}

.js-top-slider .splide__pagination>li {
	font-size: 0;
}

.js-top-slider .splide__pagination__page {
	background-color: var(--line-gray);
	border: none;
	cursor: pointer;
	height: 2px;
	transition: var(--transition);
	vertical-align: top;
	width: 1.6rem;
}

.js-top-slider .splide__pagination__page.is-active {
	background-color: var(--main-color);
	height: 4px;
	width: 29rem;
}



.progress-wrapper {
	height: 3.3rem;
	position: relative;
}

.my-carousel-progress {
	background: var(--line-gray);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 88%;
}

.my-carousel-progress-bar {
	background: var(--main-color);
	height: 4px;
	transition: width 400ms ease;
	width: 0;
}

@media (width <=767px) {
	.right-aligned-slider .splide__slide {
		max-width: calc(306rem / 16) !important;
		width: 100% !important;
	}

	.slide-card__category {
		font-size: 13px;
	}

	.slide-card__title {
		font-size: 18px;
	}

	.slide-card__meta {
		font-size: 15px;
	}

	.slide-card__region, .slide-card__access {
		font-size: 14px;
	}

	.slide-card__region .material-symbols-outlined, .slide-card__access .material-symbols-outlined {
		font-size: 22px;
	}

	.my-carousel-progress {
		width: 62%;
	}

	.my-carousel-progress-bar {
		height: 1.8px;
	}
}

.js-top-slider .splide__arrows {
	display: flex;
	gap: 0.68rem;
	position: absolute;
	right: 0;
	top: 0;
	width: fit-content;
}

.js-top-slider .splide__arrow:hover {
	cursor: pointer;
}

.js-top-slider .splide__arrow--prev, .js-top-slider .splide__arrow--next {
	background: var(--main-color);
	border: none;
	border-radius: 6px;
	flex-shrink: 1;
	height: 3.3rem;
	margin: 0;
	position: relative;
	width: 3.3rem;
}

.js-top-slider .splide__arrow--prev:hover, .js-top-slider .splide__arrow--next:hover {
	opacity: .7;
}

.js-top-slider .splide__arrow--prev::after, .splide__arrow--next::after {
	color: var(--white);
	content: "";
	font-family: var(--icon-font);
	font-size: 2rem;
	font-weight: 200;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}


.js-top-slider .splide__arrow--prev::after {
	content: '\e5cb';
	display: inline-block;
	font-family: var(--icon-font);
}

.js-top-slider .splide__arrow--next::after {
	content: '\e5cc';
	display: inline-block;
	font-family: var(--icon-font);
}

.js-top-slider .splide__arrow>svg {
	display: none;
}

@media (width <=767px) {
	.js-top-slider {
		margin-bottom: 55px;
	}

	.slide-card.slide {
		padding-bottom: 47px;
	}

	.progress-wrapper {
		height: 40px;
	}

	.js-top-slider .splide__arrow--prev, .js-top-slider .splide__arrow--next {
		height: 40px;
		width: 40px;
	}
}




/* decor
==================================================== */

.decor {
	overflow: hidden;
	padding: calc(136rem / 16) 0;
}

.decor__row {
	overflow: hidden;
}

.decor__row--1 {
	margin-bottom: calc(40rem / 16);
}

.decor__track {
	animation: decor-scroll linear infinite;
	display: flex;
	width: max-content;
}

.decor__items {
	align-items: center;
	display: flex;
}

.decor__row--1 .decor__track {
	animation-duration: 30s;
}

.decor__row--2 .decor__track {
	animation-delay: -3.1s;
	animation-direction: reverse;
	animation-duration: 30s;
}

.decor__text {
	font-family: var(--english-font);
	font-size: 5.6rem;
	font-weight: 500;
	letter-spacing: .025em;
	line-height: 1;
}

.decor__image {
	border-radius: 6px;
	height: 98px;
	margin-inline: var(--s36);
	width: 174px;
}

@keyframes decor-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (width <=767px) {
	.decor {
		padding: var(--s72) 0;
	}

	.decor__row.decor__row--1 {
		margin-bottom: 16px;
	}

	.decor__text {
		font-size: 50px;
	}

	.decor__image {
		height: 57px;
		margin-inline: 15px;
		width: 103px;
	}
}


/* News
==================================================== */

.news {
	background: var(--light-gray);
}

.news__container {
	display: flex;
	gap: 12rem;
}

.news__title {
	margin-bottom: 5.5rem;
}

.news__list {
	flex-grow: 1;
}

.news__item {
	border-top: 1px solid var(--line-gray);
	padding: 2.5rem 0;
	position: relative;
}

.news__item.is-active {
	background: transparent;
	transition: all .5s;
}

.news__item.is-active:hover {
	background: var(--white);
}

.news__item:last-of-type {
	border-bottom: 1px solid var(--line-gray);
}

.news__meta {
	align-items: center;
	display: flex;
	gap: var(--s16);
	margin-bottom: 1.375rem;
}

.news__date {
	color: var(--text-color);
	font-size: var(--s16);
	font-weight: 500;
	letter-spacing: 0.025em;
}

.news__category {
	background: var(--main-color);
	border-radius: 2px;
	color: var(--white);
	font-size: var(--s16);
	font-weight: 400;
	line-height: 1.1;
	padding: .5rem .68rem;
}

.news__link {
	color: var(--text-color);
	font-size: var(--s18);
	line-height: 1.87;
}

.news__link::after {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.news__btn--mb {
	display: none;
}


@media (width <=767px) {
	.news__container {
		flex-direction: column;
		gap: 0;
	}

	.news__list {
		margin-bottom: 50px;
	}

	.news__title {
		margin-bottom: 50px;
	}

	.news__date {
		font-size: 15px;
	}

	.news__category {
		font-size: 14px;
	}

	.news__link {
		font-size: 15px;
	}
}



/* Contact
==================================================== */

.contact {
	background-color: var(--sub-color);
	background-image: url("images/bg_contact.jpg");
	background-image: image-set("images/bg_contact.webp"type("image/webp"),
			"images/bg_contact.jpg"type("image/jpeg"));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	position: relative;
}

.contact__container {
	align-items: center;
	display: flex;
	justify-content: space-between;

}


.contact__title-en {
	color: inherit;
}


.contact__lead {
	letter-spacing: .05em;
}

.contact__button {
	align-items: center;
	display: inline-flex;
	text-decoration: none;
}

.contact__button::after {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}


.contact__arrow {
	color: var(--white);
	height: 8.3rem;
	width: 8.3rem;
}


.contact__arrow span {
	font-size: 3rem;
}


@media (width <=767px) {
	.contact {
		background-image: url("images/sp-contact-bg.jpg");
		background-image: image-set("images/sp-contact-bg.webp"type("image/webp"),
				"images/sp-contact-bg.jpg"type("image/jpeg"));
		background-position: right top;
		margin-bottom: -1px;
		padding: 66px 0 52px;
	}

	.contact__container {
		align-items: flex-start;
		flex-direction: column;
		gap: 30px;
	}

	.contact__title {
		padding-left: 3px;
	}

	.contact__button-wrapper {
		display: flex;
		justify-content: flex-end;
		width: 100%;
	}

	.contact__arrow {
		height: 5.25rem;
		width: 5.25rem;
	}

	.contact__arrow .material-symbols-outlined {
		font-size: 2rem;
	}
}

/* 物件関連共通
==================================================== */

/* === 物件タイプタグ === */

.property-type {
	border: 1px solid currentcolor;
	border-radius: 1px;
	color: var(--main-color);
	font-size: clamp(10px, .8rem, .8rem);
	line-height: 1;
	padding: .5rem .8rem;
	width: fit-content;
}



/* Single Post
==================================================== */


.post-property {
	padding: 9.7rem 0 6.9rem;
}

.post-property__header {
	align-items: center;
	border-bottom: 1px solid var(--line-gray);
	display: flex;
	gap: 2rem;
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
}

.post-property__type {
	align-items: center;
	border: 1px solid currentcolor;
	border-radius: 2px;
	color: var(--main-color);
	display: inline-flex;
	font-size: 0.95rem;
	justify-content: center;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: .625rem .8rem;
}

.post-property__title {
	font-size: 1.75rem;
	letter-spacing: 0.05em
}

.post-property__top {
	display: flex;
	gap: 3.125rem;
	margin-bottom: 7.25rem
}

.post-property__gallery {
	width: 50%;
}

/* メインスライダー */
.js-main {
	aspect-ratio: 750 / 479;
	margin-bottom: 1.3rem;
}

.js-main .splide__track {
	height: 100%;
}

.js-main .splide__slide img {
	height: 100%;
	object-fit: contain;
}

/* サムネイルスライダー */
.thumb-area {
	align-items: center;
	display: flex;
	gap: 0.5625rem;

}

.js-thumb {
	flex: 1;
	min-width: 0;

}

.js-thumb .splide__track {
	overflow: hidden;

}

.js-thumb .splide__slide img {
	aspect-ratio: 150 / 121;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
	width: 100%;
}

.thumb-arrow {
	background: #d9d9d9;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	height: 7.56rem;
	position: relative;
	width: 3.125rem;
}

.thumb-arrow::before {
	color: var(--white);
	content: '\e5cb';
	display: block;
	font-family: var(--icon-font);
	font-size: 1.8rem;
	font-weight: 300;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.thumb-arrow--next::before {
	content: '\e5cc';
}


.js-thumb .splide__slide {
	cursor: pointer;
	opacity: .5;
}

.js-thumb .splide__slide.is-active {
	opacity: 1;
}





/* 各表タイトル */
.property-info__title {
	color: var(--heading-color);
	font-size: var(--s24);
	letter-spacing: 0.05em;
	line-height: 1.1;
	margin-bottom: var(--s20);
}

.property-info {
	margin-bottom: 5.6rem;
}

/* === 動画 === */

.post-property__video {
	margin-bottom: 4.7rem;
}

.entry-video {
	aspect-ratio: 1500 / 637;
	width: 100%;
}


.entry-video video {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

@media (width <=767px) {
	.entry-video {
		aspect-ratio: 342 / 236;
	}
}




/* Snow Monkey Forms */


/* 全ての入力欄（input/textarea）のプレースホルダー色を変更 */
.smf-form input::placeholder,
.smf-form textarea::placeholder {
	color: #bbb;
	opacity: 1;
}


/* confirm */

.snow-monkey-form[data-screen="confirm"] .smf-form--simple-table .smf-item {
	background: #f8f8f8;
	padding: 1em;
}




.page-header {
	background-image: url("images/top_bg.jpg");
	background-image: image-set("images/top_bg.webp"type("image/webp"),
			"images/top_bg.jpg"type("image/jpeg"));
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	padding-bottom: clamp(5rem, 9vw, calc(174rem / 16));
	padding-top: clamp(8rem, 17vw, calc(327rem / 16));
}

.page-header__container {
	flex: 1;
}

/* アニメーション用 */
.page-title-slide-up {
	animation: pageTitleSlideUp 0.4s ease-in-out forwards;
}

@keyframes pageTitleSlideUp {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}

}

.page-header__title-en {
	color: inherit;
	font-size: min(7.5vw, calc(105rem / 16));
}

.page-header__title {
	font-size: var(--s24);
	font-size: clamp(18px, 1.1vw, 21px);
	letter-spacing: 0.05em;
	margin-bottom: clamp(calc(63rem / 16), 6.8vw, calc(130rem / 16));

}



/* === パンくずリスト（All in one SEO） === */

.aioseo-breadcrumbs {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--s12);
}

/* 元の記号を消す */
.aioseo-breadcrumb-separator {
	font-size: 0;
	line-height: 1;
}

.aioseo-breadcrumb-separator::before {
	content: '\e5cc';
	font-family: var(--icon-font);
	font-size: 2rem;
	font-weight: 200;
}

@media (width <=767px) {
	.aioseo-breadcrumbs {
		font-size: 12px;
		gap: 16px;
		letter-spacing: .05em;
		row-gap: 1em;
	}

	.aioseo-breadcrumb-separator::before {
		font-size: 22px;
	}
}

@media (width <=767px) {
	.page-header {
		padding: 166px 0 106px;
	}

	.page-header__title-en {
		font-size: 52px;
		margin-bottom: 15px;
	}

	.page-header__title {
		font-size: 15px;
	}



}



.page-404 {
	padding: 60px 0;
	text-align: center;
}

.page-404__title {
	margin-bottom: 30px;
}

.page-404__btn {
	background: var(--main-color);
	border-radius: 6px;
	color: var(--white);
	display: inline-flex;
	font-size: var(--s18);
	justify-content: center;
	max-width: 100%;
	padding: 1.2em 4em;
}

@media (width <=767px) {
	.page-404__btn {
		font-size: 15px;
		width: 100%;
	}
}

.post-property__content p {
	margin-bottom: 30px;
}



/* 物件の表 */

.property-table {
	border-right: 1px solid #d9d9d9;
	border-top: 1px solid #d9d9d9;
	width: 100%;
}

.property-table tr {
	border-bottom: 1px solid #d9d9d9;
}



.post-property__top-title {
	font-size: var(--s24);
	letter-spacing: .025em;
	margin-bottom: 1.25rem;
}

.post-property__top-info {
	flex: 1;
}

.post-property__download-btn {
	margin-bottom: 1.18rem;
}

.post-property__detail-btn {
	font-size: var(--s24);
	justify-content: center;
	padding: clamp(2.625rem, 1.125rem + 1.88vw, 3.375rem) 0;
	width: 100%;
}

/* === 地図 === */
.post-property__map {
	aspect-ratio: 1500 / 637;
	margin-bottom: 7rem;
	position: relative;
	width: 100%;
}


.post-property__map iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.post-property__bottom {
	display: flex;
	justify-content: center;
}

.post-property__bottom .detail-btn {
	font-size: var(--s24);
	padding: 3.38rem 13.6rem;
}

.property-table th, .property-table td {
	font-weight: 400;
	height: 62px;
	padding-block: var(--s16);
	padding-inline: var(--s25);
	vertical-align: middle;
}

.property-table th {
	background: var(--table-color);
	border-left: 1px solid #d9d9d9;
	font-size: var(--s16);
	text-align: left;
	vertical-align: middle;
	width: 10.87rem;
}

.property-table td {
	flex: 1;
}

.property-table td .price {
	color: #ff353f;
	font-size: var(--s22);
	font-weight: 600;
	line-height: 1rem;
}

.price-wrap {
	align-items: baseline;
	display: inline-flex;
	gap: 1px;
}

@media (width <=767px) {
	.property-table td .price {
		font-size: 18px;
	}
}




/* === スライド横 上部テーブル === */

.property-table--top {
	border-collapse: collapse;
	margin-bottom: var(--s80);
	table-layout: fixed;
	width: 100%;
}

.property-table--top th {
	width: auto;
}

.property-table--top-sale th {
	width: 10.875rem;
}


/* === 物件情報トップの全幅テーブル === */

.property-table--info {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}

.property-table--info th {
	width: auto;
}


@media (width <=767px) {
	.post-property__title {
		font-size: 16px;
	}

	.post-property__top-info .property-table {
		margin-bottom: 40px;
	}

	.post-property__gallery {
		width: 100%;
	}

	.property-table th, .property-table td {
		font-size: 13px;
		height: auto;
		padding: 20px 14px;
	}

	.property-table th {
		padding-left: 14px;
		width: 115px;
	}
}

/* === SP プログレスバー === */

@media (width <=767px) {
	.js-thumb .splide__slide img {
		aspect-ratio: 81.5 / 65.6;
		width: 100%;
	}


	.thumb-progress-wrapper {
		bottom: 0;
		position: absolute;
		width: 100%;
	}

	.thumb-area {
		padding: 0 0 20px;
		position: relative;
	}

	.thumb-progress {
		background: var(--line-gray);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
	}

	.thumb-progress-bar {
		background: var(--main-color);
		height: 1.8px;
		transition: width 400ms ease;
		width: 0;
	}


}


@media (width <=767px) {
	.post-property {
		padding: 66px 0 60px;
	}

	.post-property__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 11px;
		margin-bottom: 20px;
		padding-bottom: 18px;
	}

	.post-property__top {
		flex-direction: column;
		gap: 37px;
		margin-bottom: 52px;
	}

	.post-property__download-btn {
		font-size: 15px;
		height: 75px;
		margin-bottom: 12px;
		padding: 30px 14px;
	}

	.post-property__detail-btn {
		font-size: 15px;
		padding: 30px;
	}

	.property-info {
		margin-bottom: 37px;
	}

	.post-property__top-title,
	.property-info__title {
		font-size: 15px;
		margin-bottom: 11px;
	}

	.post-property__map {
		aspect-ratio: 342 / 236;
		margin-bottom: 36px;
	}

	.post-property__bottom .detail-btn {
		font-size: 15px;
		padding: 30px;
		width: 100%;
	}

	/* === 賃貸詳細用 === */

	/* table-layout: fixed を解除し、各要素をブロック化 */
	.property-table--rent,
	.property-table--rent tbody,
	.property-table--rent tr {
		display: block;
		width: 100%;
	}

	/* 折り返しを許可 */
	.property-table--rent tr {
		border-bottom: none;
		display: flex;
		flex-wrap: wrap;
	}

	.property-table--rent th, .property-table--rent td {
		border-bottom: 1px solid var(--line-gray);
		box-sizing: border-box;
		display: block;
		padding: 17px 14px;
	}

	.property-table--rent th {
		width: 33.5% !important;
	}

	.property-table--rent td {
		flex: none;
		width: calc(100% - 33.5%) !important;
	}

	.post-property__video {
		margin-bottom: 24px;
	}

}

/* 売買一覧表示
==================================================== */

.arc-property {
	padding: 9.5rem 0 11rem;
}

.arc-property__container {
	max-width: 1200px;
}



.property-card {
	border-bottom: 1px solid var(--line-gray);
	padding: 2.75rem 0 2.8rem;
}

.property-card:first-of-type {
	padding-top: 0;
}

.property-card:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.property-card__meta {
	align-items: center;
	display: flex;
	gap: 1.125rem;
	margin-bottom: 1.875rem;
}

.property-card__title {
	font-size: 1.25rem;
	letter-spacing: .05em;
	line-height: 1.1;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.3em;

}

.property-card__body {
	align-items: flex-start;
	display: flex;
	gap: 1.875rem;
}

.property-card__image {
	aspect-ratio: 480 / 310;
	width: calc(480 / 1200 * 100%);
}

.property-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* === SP 物件表折り返し　売買一覧など === */

@media (width <=767px) {
	/* table-layout: fixed を解除し、各要素をブロック化 */
	.property-table--wrap,
	.property-table--wrap tbody,
	.property-table--wrap tr {
		display: block;
		width: 100%;
	}

	/* 折り返しを許可 */
	.property-table--wrap tr {
		border-bottom: none;
		display: flex;
		flex-wrap: wrap;
	}

	.property-table--wrap th, .property-table--wrap td {
		border-bottom: 1px solid var(--line-gray);
		box-sizing: border-box;
		display: block;
		padding: 17px 14px;
	}

	.property-table--wrap th {
		width: 33.5% !important;
	}

	.property-table--wrap td {
		flex: none;
		width: calc(100% - 33.5%) !important;
	}

}



/* 賃貸一覧
PC表示とSP表示はHTMLを分けています
==================================================== */

/* === PC・スマホ切り替え === */

/* PC */
.property__sp {
	display: none;
}

@media (width <=767px) {
	.property__pc {
		display: none;
	}

	.property__sp {
		display: block;
	}
}


/* === 賃貸一覧 親物件プロパティ */

.property-card--rent .property-card__body {
	margin-bottom: 1.875rem;
}

@media (width <=767px) {
	.property-card--rent {
		border-bottom: none;
	}

	.property-card--rent .property-card__body {
		align-items: flex-start;
		border-bottom: 1px solid var(--line-gray);
		border-top: 1px solid var(--line-gray);
		flex-direction: row;
		gap: 16px;
		margin-bottom: 0;
		padding: 20px 0 22px;
	}

	.property-card--rent .property-card__image {
		flex: 0 0 140px;
	}

	.property-card--rent .property-card__image img {
		aspect-ratio: 140 / 90;
		height: auto;
		object-fit: cover;
		width: 100%;
	}

	/* 賃貸一覧 */
	.property-list {
		font-size: 12px;
		font-weight: 400;
	}

	.property-list__item {
		display: flex;
		gap: 8px;
		line-height: 1.25;
		margin-bottom: 1em;
	}

	.property-list__item::before {
		color: var(--main-color);
		font-family: var(--icon-font);
		font-size: 16px;
		font-weight: 300;
		margin-top: -3px;
	}

	.property-list__item--address::before {
		content: '\e0c8';

	}

	.property-list__item--train::before {
		content: '\e533';
	}

	.property-list__item--bus::before {
		content: '\e530';
	}

	.property-list__item--car::before {
		content: '\e531';
	}

	.property-list__item--meta::before {
		content: '\e88a';
	}

}

/* === 賃貸一覧 部屋用テーブル === */

.room-table {
	border-collapse: collapse;
	color: var(--text-color);
	table-layout: fixed;
	width: 100%;
}

.room-table tr {
	border-bottom: 1px solid var(--line-gray);
}

.room-table th, .room-table td {
	font-size: var(--s16);
	font-weight: 400;
	letter-spacing: .025em;
	padding: 8px;
	text-align: center;
	vertical-align: middle;
}

.room-table th {
	background: var(--table-color);
	border-top: 1px solid var(--line-gray);
}

.room-table td {
	padding: .75rem 1.875rem;
}

.room-table__price-wrap {
	align-items: baseline;
	display: inline-flex;
	gap: 1px;
	justify-content: center;
}

.room-table__price {
	color: var(--accent-red);
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1;
}

.room-table__price-wrap span {
	line-height: 1;
}

.room-table__image img {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.room-table__link a {
	font-weight: 400;
	text-decoration: underline;
}

/* === 賃貸一覧 部屋用テーブル SP === */

.property__sp .room-table {
	border-bottom: 1px solid var(--line-gray);
	display: flex;
	gap: 30px;
	padding: 12px 0 18px;
	position: relative;
}

.property__sp .room-table__image {
	aspect-ratio: 113 / 71;
	width: 33%;
}

.property__sp .room-table__image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.property__sp .room-table__right {
	align-items: center;
	display: flex;
	flex: 1;
	justify-content: space-between;
}

.property__sp .room-table__data {
	font-size: 12px;
	font-weight: 400;
}

.property__sp .room-table__price {
	font-size: 14px;
	font-weight: 600;
}

.property__sp .room-table__arrow {
	font-size: 24px;
	font-weight: 300;
}

.property__sp .room-table__arrow::after {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* === アーカイブ用 テーブル === */

.property-table--arc {
	flex: 1;
	table-layout: fixed;
}

.property-table--arc-rent th {
	flex-shrink: 0;
	width: 10.87rem;
}


@media (width <=767px) {
	.arc-property {
		padding: 65px 0 88px;
	}



	/* 最後の行だけ */
	.row-half {
		display: grid;
		grid-template-columns: auto 1fr;
	}

	.row-half th,
	.row-half td {
		display: block;

		/* 念のため */
	}

	.property-card {
		padding: 28px 0;
	}

	.property-card__meta,
	.property-card__body {
		flex-direction: column;
	}

	.property-card__meta {
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 20px;
	}


	.property-card__title {
		font-size: 16px;
		line-height: 1.4;
	}

	.property-card__image {
		width: 100%;
	}

	.property-card__image img {
		aspect-ratio: 343 / 220;
	}
}


@media (width <=767px) {
	.new-prop__btn {
		display: none;
	}

	.detail-btn--mb, .post-property__detail-btn, .post-property__bottom-btn, .post-single__back-btn {
		display: flex;
		justify-content: center;
		padding: 30px 14px;
		position: relative;
		width: 100%;
	}

	.detail-btn--mb::before, .post-property__detail-btn::before, .post-property__bottom-btn::before, .post-single__back-btn::before {
		background: url("images/btn-arrow.svg") 50% center / 24px no-repeat,
			rgb(228 241 253 / 15%);
		height: 44px;
		right: 14px;
		width: 44px;
	}


	.detail-btn--mb .detail-btn__text {
		font-size: 15px;
		letter-spacing: 0.05em;

	}

}


/* 下層
==================================================== */

/* 事業内容 */
.page-id-92 {
	background: var(--light-gray)
}


.image-container {
	border-radius: 8px;
	overflow: hidden;
}


.js-expand-img {
	aspect-ratio: 1500 / 548;
	display: block;
	margin: 0 auto;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	transition: none;
	width: 93.75rem;
}

.page-eyecatch {
	aspect-ratio: 1500 / 548;
	border-radius: 8px;
	margin-inline: auto;
	margin-top: calc(-100rem / 16);
	overflow: hidden;
	padding-top: 0;
}


.page-eyecatch__img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.page-eyecatch.is-expanded {
	border-radius: 0;
	width: 100vw;
}

.main-content {
	background: #f9faff;
	padding: calc(160rem / 16) 0 9.5rem;
}



.main-content__container {
	max-width: 1000px;
}

/* Who We Are、Business */
.feature-content {
	padding-bottom: 0;
}

.two-column {
	align-items: flex-start;
	display: flex;
	gap: 40px;
	margin-bottom: 5.25rem;
}


/* 
 * NOTE:
 * ページごとにナビ内容量が異なり、
 * position: sticky + 通常フローでは
 * ナビとメインの上端が揃わないケースが発生したため、
 * ナビの高さを固定
 *
 * grid化かつ全幅背景対応も検討したが、
 * 実装コストと安定性を優先してこの構成を採用。
 *
 * width: 20% - 1280px までは折り返しが出ない横幅
 */
.page-nav {
	height: fit-content;
	height: calc(240rem / 16);
	left: var(--basic-width-left);
	max-width: 450px;
	overflow-y: auto;
	padding: var(--s14) 0;
	position: sticky;
	top: var(--nav-offset-y);
	width: 20%;
	z-index: 10;

}



@media (width <=1705px) {
	.page-nav {
		left: calc((100vw - 88%) / 2);
	}
}


.two-column__main {
	margin-top: calc(-250rem / 16);
	min-width: 0;
}

.business-content .two-column__main {
	margin-top: calc((-160rem / 16) - 1rem);
}

.two-column__container {
	margin-left: auto;
	margin-right: var(--basic-width-right);
	max-width: 980px;
	width: calc(980 / 1920 * 100%);
	width: 62%;
}

@media (width <=1705px) {
	.two-column__container {
		margin-right: calc((100vw - 88%) / 2);
	}
}

@media (width <=960px) {
	.page-eyecatch {
		aspect-ratio: 343 / 155;
		border-radius: 4px;
		margin-inline: auto;
		margin-top: -30px;
		width: 88%;
	}



	.two-column__container {
		margin: 0 auto;
		max-width: unset;
		width: 88%;
	}
}



/* --------------------
	ページ内ナビゲーション
----------------------- */

.page-nav__toggle {
	display: none;
}

.page-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-nav__item+.page-nav__item {
	margin-top: 12px;
}

/* 中途半端な文字折り返しを許容しない */
.page-nav__link {
	border-radius: 4px;
	color: #939393;
	display: block;
	padding-left: calc(1.18rem * 2);
	position: relative;
	text-decoration: none;
	word-break: auto-phrase;
}

.page-nav__link.is-current {
	align-items: center;
	color: var(--text-color);
}

.page-nav__link.is-current::before {
	background: #e4f1fd;
	border-radius: 50%;
	content: '';
	display: block;
	height: 1.18rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.18rem;
}

.page-nav__link.is-current::after {
	background: var(--main-color);
	border-radius: 50%;
	content: '';
	display: block;
	height: 0.56rem;
	left: 0.32rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.56rem;
}

/* --------------------
	メインカラム
----------------------- */
.page__main {
	margin-top: calc(-250rem / 16);
}

.page__main .section-title-en {
	font-family: var(--english-font);
	font-size: 5.625rem;
	margin-bottom: var(--s24);

}

.page__main .section-title {
	display: flex;
	font-size: 1.125rem;
	gap: 0.5rem;
	letter-spacing: .025em;
	line-height: 1.1;
	position: relative;
}

.page__main .section-title::before {
	background: #e4f1fd;
	border-radius: 50%;
	content: '';
	display: inline-block;
	height: 1.18rem;
	position: relative;
	width: 1.18rem;
}

.page__main .section-title::after {
	background: var(--main-color);
	border-radius: 50%;
	content: '';
	display: inline-block;
	height: 0.56rem;
	left: 0.6rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.56rem;
}



/* margin-top: 900px / 16 = 56.25 */
.page__main .section-title+.catch {
	margin-top: calc(56.25rem / 16);

}

.page__main .section-title+.access__item {
	margin-top: calc(75rem / 16);
}

.page__main .section-title+table {
	margin-top: var(--s60);
}

/* margin-bottom: 900px / 16 = 56.25 */
.catch {
	color: var(--text-color);
	font-size: var(--s50);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: calc(56.25rem / 16);
}


.company-info__table {
	border-top: 1px solid var(--line-gray);
	font-size: var(--s18);
	width: 100%;
}

.company-info__table tr {
	border-bottom: 1px solid var(--line-gray);
}

.company-info__table th, .company-info__table td {
	padding: var(--s44) 0;
	text-align: left;
}

.company-info__table th {
	padding-right: calc(111rem / 16);
	white-space: nowrap;
}

.company-info__text {
	line-height: 1.5;
}

@media (width <=960px) {
	/* お問い合わせ基準 */
	.main-content {
		padding: 70px 0 100px;
	}

	/* Who We Are、Business */
	.feature-content {
		padding-bottom: 0 !important;
		padding-top: 50px;
	}

	/* お知らせ基準 */
	.two-column {
		flex-direction: column;
		gap: 45px;
	}

	.business-content .two-column__main {
		margin-top: 50px;
	}

	.two-column__main {
		margin-top: 50px;
		width: 100%;
	}


	.page__main .section-title-en {
		font-size: 48px;
	}

	.catch {
		font-size: 27.5px;
		letter-spacing: 0;
		margin-bottom: 42px;
	}

}

@media (width <=767px) {
	.main-content {
		padding-bottom: 56px;
	}
}


/* SP: ページナビ */
@media (width <=960px) {
	/* メニュー本体 */
	.page-nav {
		background: var(--white);
		border-radius: 4px;
		bottom: 0;
		box-shadow: 0 3px 9px rgb(48 48 48 / 6%);
		height: 40px;
		left: 0;
		margin: auto;
		max-width: unset;
		padding: 0;
		position: sticky;
		top: 100px;
		width: 88%;
		z-index: 10;
	}

	/* button */
	.page-nav__toggle {
		align-items: center;
		background: var(--white);
		border: none;
		display: flex;
		font-size: 13px;
		height: 100%;
		justify-content: space-between;
		padding: 14px 27px;
		width: 100%;
	}

	.page-nav__toggle-text {
		font-size: 13px;
	}

	.page-nav__toggle-icon {
		display: inline-block;
		height: 14px;
		position: relative;
		width: 14px;
	}

	.page-nav__toggle-icon::before, .page-nav__toggle-icon::after {
		background-color: var(--main-color);
		content: "";
		height: 2px;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 14px;
	}

	/* + 縦線 */
	.page-nav__toggle-icon::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: opacity .2s, transform .2s;
	}

	.is-nav-open .page-nav__toggle-icon::after {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(0);
	}

	/* 閉じている時に隠すのはパネルだけ */
	.page-nav__panel {
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease;
	}

	.is-nav-open .page-nav {
		bottom: 0;
		height: fit-content;
		left: 0;
		margin: 0 auto;
		overflow: hidden;
		position: fixed;
		right: 0;
		width: 88%;
		z-index: 999;
	}

	.is-nav-open .page-nav__toggle {
		padding-top: 25px;
	}

	/* 開いたら中身が出る */
	.is-nav-open .page-nav__panel {
		max-height: 60vh;
		padding: 5px 20px 25px;
	}

	.page-nav-overlay {
		backdrop-filter: blur(20px);
		background: rgb(0 0 0 / 30%);
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity .3s;
	}

	.is-nav-open .page-nav-overlay {
		opacity: 1;
		pointer-events: auto;
		z-index: 1;
	}


	.page-nav__link {
		align-items: center;
		display: flex;
		font-size: 13px;
		height: 100%;
		padding-left: 2em;
	}

}


.message {
	padding-bottom: calc(135rem / 16);
}

.message__body {
	width: fit-content;
}

.message__text {
	color: var(--text-color);
	font-size: var(--s18);
	letter-spacing: 0.05em;
	line-height: 1.8;
}


.message__text+p {
	margin-top: 2em;
}

.message__text+.message__sign-wrapper {
	margin-top: calc(58rem / 16);
}

.message__sign-wrapper {
	display: flex;
	justify-content: flex-end;
}

.message__sign-name-small {
	display: block;
	font-size: var(--s18);
	letter-spacing: 0.05em;
	line-height: 1.1;
}

.message__sign-name {
	font-size: var(--s26);
	letter-spacing: 0.05em;
}


.company-info {
	background: var(--light-gray);
	padding: var(--section-py);
}

.access {
	padding: var(--section-py);
	padding-bottom: 0;
}

.access__item-title {
	border-bottom: 1px solid var(--line-gray);
	font-size: var(--s24);
	letter-spacing: 0.025em;
	line-height: 1.1;
	margin-bottom: var(--s40);
	padding-bottom: var(--s25);
}


.access__item-subtitle {
	font-size: var(--s18);
}

.access__item-text {
	font-size: var(--s18);
	letter-spacing: 0;
	line-height: 1.5;
}

.access__item-subtitle+p {
	margin-top: var(--s5);
}

.access p+h4 {
	margin-top: var(--s40);
}

.access__item+.access__item {
	margin-top: var(--s80);
}

.access__map {
	aspect-ratio: 978 / 475;
	margin-top: var(--s44);
}

.access__map iframe {
	display: block;
	height: 100%;
	width: 100%;
}

.access__map-btn-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-top: var(--s32);
}

.access__map-btn {
	align-items: center;
	background: var(--main-color);
	border-radius: 6px;
	color: var(--white);
	display: inline-flex;
	font-size: var(--s14);
	gap: var(--s16);
	letter-spacing: 0.05em;
	line-height: 1;
	padding: var(--s20) var(--s35) var(--s20) var(--s44);
}

.access__map-btn::after {
	content: '\e415';
	font-family: var(--icon-font);
	font-size: var(--s24);
	font-weight: 300;
	line-height: 1;
}

/* sp: who-we-are */
@media (width <=767px) {
	.page__main .section-title {
		font-size: 15px;
	}

	.message {
		padding-bottom: 45px;
	}

	.message__text {
		font-size: 15px;
	}

	.message__sign-name-small {
		font-size: 15px;
		line-height: 1.1;
	}

	.message__sign-name {
		font-size: 21px;
	}

	.company-info {
		padding: 85px 0;
	}

	.company-info__table,
	.company-info__table tbody,
	.company-info__table tr,
	.company-info__table th,
	.company-info__table td {
		display: block;
		width: 100%;
	}

	.company-info__table {
		font-size: 15px;
	}

	.company-info__table th {
		padding-bottom: 1em;
		padding-top: 28px;
	}

	.company-info__table td {
		padding-bottom: 28px;
		padding-top: 0;

	}

	.company-info__address {
		padding-top: 28px !important;
	}


	.company-info__area {
		font-size: 15px;
		margin-bottom: 1px;
	}

	.access {
		padding: 75px 0 0;
	}

	.access__item-title {
		font-size: 18px;
		margin-bottom: 21px;
		padding-bottom: 21px;
	}

	.access__item-subtitle {
		font-size: 15px;
	}

	.access__item-subtitle+p {
		margin-top: 3px;
	}

	.access__item-text {
		font-size: 15px;
		line-height: 1.6;
	}

	.access__map {
		aspect-ratio: 343 / 226;
		margin-top: 24px;
	}

	.access p+h4 {
		margin-top: 26px;
	}

}

.business-header .two-column__container {
	border-bottom: 1px solid var(--line-gray);
	padding-bottom: calc(94rem / 16);
}

.business-header__inner {
	max-width: calc(750rem / 16);
}

.business-item {
	padding-top: calc(94rem / 16);
}

.business-item__container {
	border-bottom: 1px solid var(--line-gray);
	padding-bottom: calc(96rem / 16);
}

.business-item:last-of-type .business-item__container {
	border-bottom: none;
	padding-bottom: 0;
}

/* 1000px / 16 = 62.5 */
.business-item__header {
	margin-bottom: calc(62.5rem / 16);
}

.business-item__header .business-item__num {
	color: var(--main-color);
	display: inline-block;
	font-size: var(--s18);
	letter-spacing: 0.05em;
	margin-bottom: calc(39rem / 16);
}

.business-item__title {
	color: var(--text-color);
	font-size: var(--s48);
	line-height: 1.1;
	margin-bottom: calc(22rem / 16);
}

.business-item__title::before,
.business-item__title::after {
	content: none;
}

.business-item__en-title {
	color: var(--text-color);
	font-size: var(--s18);
	font-weight: 400;
	letter-spacing: .075em;
	line-height: 1.1;
}

.business-body {
	margin-bottom: var(--s60);
}


.business-header__text,
.business-body__text {
	color: var(--text-color);
	font-size: var(--s18);
	letter-spacing: 0;
}

.business-header__text {
	line-height: 1.8;
}


.business-body__text {
	line-height: 1.8;
}

.business-header__text+p,
.business-body__text+p {
	margin-top: 2em;
}




.panel {
	background-image: url("images/point_bg.jpg");
	background-image: image-set("images/point_bg.webp"type("image/webp"),
			"images/point_bg.jpg"type("image/jpeg"));
	background-size: cover;
	border-radius: 6px;
	padding: var(--fluid-s62) var(--fluid-s52) var(--fluid-s56);

}

.panel+.panel {
	margin-top: var(--s60);
}

.panel .panel__heading {
	border-bottom: 1px solid var(--white);
	color: var(--white);
	font-size: var(--s28);
	letter-spacing: 0;
	line-height: 1.1;
	margin-bottom: calc(26rem / 16);
	padding-bottom: calc(25rem / 16);
}

.panel .panel__text {
	color: var(--white);
	font-size: var(--s18);
	letter-spacing: 0;
}

.panel__text+.panel__box {
	margin-top: var(--s30);
}

.panel__box {
	align-items: center;
	background-color: var(--white);
	border-radius: 6px;
	display: flex;
	gap: 0;
	justify-content: center;
	padding: var(--s24) 0;
}

.panel .panel__box-heading {
	align-items: center;
	align-self: stretch;
	border-right: 1px solid var(--line-gray);
	color: var(--text-color);
	display: flex;
	flex-shrink: 0;
	font-size: var(--s16);
	justify-content: center;
	padding: 0 clamp(30px, 5.5vw, 105px);
	text-align: center;
}

.panel__line {
	align-self: stretch;
	background: #000;
	display: block;
	width: 1px;
}

.panel__list {
	flex: 5.83;
	padding: 0 clamp(30px, 4.5vw, 85px);
}

.panel__list-item {
	color: var(--text-color);
	font-size: var(--s16);
	margin-bottom: .5em;
	padding-left: .8em;
	position: relative;
}

.panel__list-item::before {
	background: var(--main-color);
	border-radius: 50%;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
}

.business-item__image {
	aspect-ratio: 980 / 470;
	border-radius: 6px;
	margin-top: var(--s70);
	overflow: hidden;
}

.business-item__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}




/* SP: panel */
@media (width <=767px) {
	.panel {
		padding: 45px 22px;
	}

	.panel .panel__heading {
		font-size: 22px;
		line-height: 1.3;
	}

	.panel .panel__text {
		font-size: 15px;
		letter-spacing: .05em;
		line-height: 1.6;
	}

	.panel__box {
		flex-direction: column;
		gap: 24px;
		padding: 24px 18px;
	}

	.panel .panel__box-heading {
		border-bottom: 1px solid var(--line-gray);
		border-right: none;
		font-size: 14.5px;
		justify-content: center;
		padding-inline: 0;
		padding-bottom: 22px;
	}

	.panel__list {
		padding-inline: 0;
	}

	.panel__list-item {
		font-size: 13px;
	}

	.panel+.panel {
		margin-top: 18px;
	}
}

/* SP: 事業内容 */
@media (width <=767px) {
	.business-header .two-column__container {
		padding-bottom: 56px;
	}

	.business-header__text, .business-body__text {
		font-size: 15px;
	}

	.business-item {
		padding-top: 52px;
	}

	.business-item__header {
		margin-bottom: 30px;
	}

	.business__number, .business-item__header .business-item__num {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.1;
		margin-bottom: 27px;
	}




	.business__item-title, .business-item__title {
		font-size: 34px;
		margin-bottom: 20px;
		text-decoration-skip-ink: none;
	}

	.business-item__en-title {
		font-size: 14px;
	}

	.business-body {
		margin-bottom: 35px;
	}

	.business-item__container {
		padding-bottom: 66px;
	}

	.business-item__image {
		aspect-ratio: 343 / 194;
		margin-top: 26px;
	}



}

/* 1カラム固定ページ
==================================================== */

.text-page__container {
	max-width: calc(1120rem / 16);
}

.text-page h2 {
	color: var(--text-color);
	font-size: var(--s30);
	letter-spacing: 0.05em;
	margin-bottom: .5em;
}

.text-page p {
	color: var(--text-color);
	font-size: var(--s18);
	letter-spacing: 0.05em;
	line-height: 2;
}

.text-page p a {
	color: var(--main-color);
	text-decoration: underline;
}

.text-page hr {
	background-color: var(--line-gray);
	border: none;
	height: 1px;
	margin: calc(46rem / 16) 0;
}

.text-page .right {
	margin-top: 3em;
	text-align: right;
}

/* SP: 1カラムページ */
@media (width <=767px) {
	.text-page p {
		font-size: 15px;
		line-height: 1.6;
	}

	.text-page h2 {
		font-size: 20px;
	}

	.text-page hr {
		margin: 34px 0;
	}
}

/* 記事一覧
==================================================== */

@media (width <=767px) {
	.post-content {
		padding: 38px 0 45px;
	}

	.post-list .news__item {
		padding: 33px 0 37px;
	}

	.post-list .news__category {
		padding: 5px 8px;
	}

	.post-list .news__meta {
		align-items: flex-end;
		margin-bottom: 20px;
	}
}


/* single
==================================================== */

.post-single__header {
	border-bottom: 1px solid var(--line-gray);
	padding-bottom: 2.43rem;
}

.post-single__article {
	margin-bottom: 5.87rem;
}

.post-single__meta {
	align-items: center;
	display: flex;
	gap: 1.375rem;
	margin-bottom: 1.56rem;
}

.post-single__date {
	color: var(--text-color);
	font-size: var(--s16);
	letter-spacing: .025em;
}

.post-single__title {
	font-size: 1.75rem;
}



.post-single__content {
	border-bottom: 1px solid var(--line-gray);
	padding: 4.75rem 0 5.25rem;

}

.post-single__content p {
	color: var(--text-color);
	font-size: var(--s16);
	letter-spacing: .05em;
	line-height: 1.875;
}

.post-single__content p+p {
	margin-top: 2em;
}


.post-single__content h2 {
	font-size: var(--s24);
	font-weight: 700;
	margin: 2.5em 0 1em;
}

.post-single__content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 2em 0 0.8em;
}

.post-single__content h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 1.5em 0 0.6em;
}

.post-single__content ul,
.post-single__content ol {
	margin: 1.2em 0;
	padding-left: 1.5em;
}

.post-single__content ul {
	list-style: disc;
}

.post-single__content ol {
	list-style: decimal;
}

.post-single__content li {
	list-style: unset;
	margin: 0.5em 0;
}

.post-single__content a {
	text-decoration: underline;
}

.post-single__content a:hover {
	text-decoration: none;
}

.post-single__content img {
	height: auto;
	margin: 1.5em 0;
	max-width: 100%;
}

.post-single__content strong {
	font-weight: 700;
}

.post-single__content table {
	border-collapse: collapse;
	font-size: 0.95rem;
	margin: 2em 0;
	width: 100%;
}

.post-single__content th {
	background: #f2f2f2;
	border: 1px solid #ddd;
	font-weight: 700;
	padding: 0.75em 1em;
	text-align: left;
	vertical-align: top;
}

.post-single__content td {
	border: 1px solid #ddd;
	padding: 0.75em 1em;
	vertical-align: top;
}






.post-single__back {
	display: flex;
	justify-content: center;
}

.post-single__back-btn {
	max-width: 13.5rem;
	padding: 1.56rem 2.37rem;
	width: 100%;
}

@media (width <=767px) {
	.post-single__meta {
		margin-bottom: 16px;
	}

	.post-single__date {
		font-size: 14px;
	}

	.post-single__title {
		font-size: 20px;
	}

	.post-single__content {
		padding: 45px 0;
	}

	.post-single__content p {
		font-size: 14.5px;
		line-height: 1.65;
	}



	/* スマホ横スクロール対応 */
	.post-single__content table {
		display: block;
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	.post-single__article {
		margin-bottom: 28px;
	}

	.post-single__back-btn {
		max-width: unset;
	}

}


/* pagination
==================================================== */
.pagination {
	margin-top: 5.25rem;
	text-align: center;

}


.pagination__list {
	display: inline-flex;
	gap: .75rem;
	list-style: none;
}


.pagination__link {
	align-items: center;
	border: 1px solid var(--main-color);
	border-radius: 4px;
	color: var(--main-color);
	display: inline-flex;
	font-size: 1.125rem;
	height: 2.81rem;
	justify-content: center;
	text-decoration: none;
	width: 2.81rem;
}


.pagination__link--current {
	background-color: var(--main-color);
	border-color: none;
	color: var(--white);
	pointer-events: none;
}

.pagination__arrow {
	font-size: var(--s24);
	font-weight: 300;
}


/* Snow Monkey Forms
==================================================== */

/* === プログレストラッカー === */

.smf-progress-tracker {
	margin: 0 auto 8.25rem;
	width: 91%;
}

/* 円 */
.smf-progress-tracker__item__number {
	background: none;
	font-size: 0;
	height: 29px;
	overflow: auto;
	width: 29px;
}

/* 小さな円 */
.smf-progress-tracker__item__number::before {
	background: var(--text-color);
	border-radius: 50%;
	content: '';
	height: 12px;
	width: 12px;
}


.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number {
	background: #dbedfc;
	border-radius: 50%;

}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number::before {
	background: var(--main-color);
	border-radius: 50%;
	content: '';
	height: 11px;
	width: 11px;
}

.smf-progress-tracker__item__text {
	color: #bbb;
	font-size: var(--s16);
	font-weight: 500;
	letter-spacing: .05em;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__text {
	color: var(--text-color);
	font-weight: 500;
}

/* 後ろの線 */
.smf-progress-tracker__item::after, .smf-progress-tracker__item::before {
	background-color: var(--line-gray);
	top: 14px;
}

/* === フォームコンテンツ === */

.form__lead {
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.1;
	margin-bottom: 78px;
}

.form__lead--complete {
	display: none;
}

/* 各フォームアイテム */
.wp-block-snow-monkey-forms-item.smf-item {
	margin-bottom: 46px;
	padding: 0;
}

/* ラベル行 */
.smf-item__col.smf-item__col--label {
	margin-bottom: 20px;
	padding-bottom: 0;
}

/* ラベル */
.smf-item__label {
	color: var(--text-color);
	font-size: 18px;
	letter-spacing: .05em;
}

/* セレクトラッパー */
.smf-select-control {
	width: 100%;
}

/* textarea, input, select */
.smf-textarea-control__control,
.smf-text-control__control, .smf-select-control__control {
	background: var(--white) !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 6px !important;
	color: var(--text-color);
	display: block !important;
	font-size: 18px;
	letter-spacing: .05em;
	line-height: 1.1;
	max-width: unset !important;
	padding: 32px 26px !important;
	width: 100%;
}

/* textarea */
.smf-textarea-control__control {
	padding-bottom: 25px !important;
	padding-top: 25px !important;
}

.smf-item__label__text {
	align-items: center;
	display: flex;
	gap: 11px;
}

/* 「任意」表示 */
.smf-item__label__text::after {
	background: #bbb;
	border-radius: 2px;
	color: var(--white);
	content: '任意';
	font-size: 14px;
	letter-spacing: .05em;
	line-height: 1;
	padding: 6px 6px 5px;
}


/* 「必須」表示 is-requiredは追加クラス */
.smf-item.is-required .smf-item__label__text::after {
	background: var(--main-color);
	content: '必須';
}

.form__privacy {
	background: #f7f7f7;
	border-radius: 6px;
	font-size: 18px;
	letter-spacing: 0.05em;
	margin: 0 auto;
	max-width: 780px;
	padding: 64px 0 70px !important;
	text-align: center;
}

.form__privacy .smf-placeholder {
	margin-bottom: 14px;
}

.form__privacy .smf-checkbox-control__label::after {
	color: var(--main-color);
	content: '*';
}

.form__privacy a {
	text-decoration: underline;
}

/* button: transitionはここで!importantで設定しないときかない */
.form__detail-btn .wp-block-button__link,
.smf-button-control__control {
	background: var(--main-color) !important;
	border: none !important;
	border-radius: 6px !important;
	color: var(--white) !important;
	font-size: var(--s22);
	letter-spacing: 0.05em;
	line-height: 1;
	max-width: 775px;
	padding: 53px 0 55px !important;
	position: relative;
	transition: all 1s !important;
	width: 100%;
}

/* 矢印背景 */
.form__detail-btn .wp-block-button__link::before,
.smf-button-control__control::before {
	background:
		url("images/btn-arrow.svg") 50% center / 38px no-repeat,
		rgb(228 241 253 / 15%);
	border-radius: 4px;
	content: '';
	display: inline-block;
	height: 68px;
	overflow: hidden;
	position: absolute;
	right: 48px;
	top: 50%;
	transform: translateY(-50%) scale(1);
	transition: transform .3s, background-position .4s;
	transition: all .3s;
	vertical-align: middle;
	width: 68px;
}

/* 矢印 */
.form__detail-btn .wp-block-button__link:hover::before,
.smf-button-control__control:hover::before {
	animation: arrowBg .28s linear;
	transform: translateY(-50%) scale(1.05);
}

/* 矢印アニメ */

@keyframes arrowBg {
	0% {
		background-position: 50% center, center;
	}

	50% {
		background-position: 140% center, center;
	}

	50.1% {
		background-position: -40% center, center;
	}

	100% {
		background-position: 50% center, center;
	}
}


@media (width <=767px) {
	/* --------------------
	progress tracker
	----------------------- */

	.smf-progress-tracker {
		margin-bottom: 85px;
	}

	.smf-progress-tracker__item {
		justify-content: flex-end;
	}

	.smf-progress-tracker__item::after, .smf-progress-tracker__item::before {
		top: 10px;
	}

	.smf-progress-tracker__item__number,
	.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number {
		height: 20.8px;
		width: 20.8px;
	}

	.smf-progress-tracker__item__number::before,
	.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number::before {
		height: 8.7px;
		width: 8.7px;
	}


	.smf-progress-tracker__item__text {
		font-size: 14.5px;
	}

	.smf-button-control__control {
		width: 100%;
	}
}

/* ------------------------------
	フォーム確認画面
------------------------------ */

/* リード文 */
[data-screen="confirm"] .form__lead {
	display: none;
}

[data-screen="confirm"] .form__lead--complete {
	display: block;
	margin-bottom: 87px;
}

/* 各アイテムブロック */
[data-screen="confirm"] .wp-block-snow-monkey-forms-item.smf-item {
	border-bottom: 1px solid var(--line-gray);
	margin-bottom: 0;
	padding-bottom: 36px;
	padding-top: 46px;
}

[data-screen="confirm"] .wp-block-snow-monkey-forms-item.smf-item:first-of-type {
	padding-top: 0;
}

/* label */
[data-screen="confirm"] .smf-item__col.smf-item__col--label {
	margin-bottom: 32px;
}

/* 必須/任意タグ */
[data-screen="confirm"] .smf-item__label__text::after {
	display: none;
}

/* 入力済情報 */
[data-screen="confirm"] .smf-placeholder {
	color: var(--text-color);
	font-size: 18px;
	letter-spacing: .05em;
}

/* 確認画面では非表示
 * メール再入力
 * プライバシーポリシーチェック
 */
[data-screen="confirm"] .form__mail-again,
[data-screen="confirm"] .form__privacy {
	display: none;
}

/* フォームとボタンエリアの間 */
[data-screen="confirm"] .smf-form--letter+.smf-action {
	display: flex;
	gap: 39px;
	justify-content: center;
	margin-bottom: 0;
	margin-top: 132px;
}

[data-screen="confirm"] .smf-button-control {
	flex: 1;
}

/* 戻るボタン専用スタイル */
.smf-button-control__control[data-action="back"] {
	background: #bbb !important;
}

.smf-button-control__control[data-action="back"]::before {
	background: url("images/btn-arrow-back.svg") 50% center / 38px no-repeat,
		rgb(228 241 253 / 15%);
	left: 48px;
}

.smf-button-control__control[data-action="back"]:hover::before {
	animation: arrowBgBack .28s linear;
	transform: translateY(-50%) scale(1.05);
}

/* 矢印アニメ */

@keyframes arrowBgBack {
	0% {
		background-position: 50% center, center;
	}

	50% {
		background-position: -40% center, center;
	}

	50.1% {
		background-position: 140% center, center;
	}

	100% {
		background-position: 50% center, center;
	}
}

/* ------------------------------
	完了画面
------------------------------ */

.smf-complete-content {
	margin-top: 122px;
	text-align: center;
}

.form__complete-large-text {
	color: var(--text-color);
	font-size: 30px;
	letter-spacing: 0.05em;
	line-height: 1.1;
	margin-bottom: 77px;
}

.form__complete-text {
	color: var(--text-color);
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.875;
}

.form__complete-text+.form__complete-text {
	margin-top: 2em;
}

.form__detail-btn-wrapper {
	justify-content: center;
	margin-top: 121px;
}

.form__detail-btn {
	max-width: 755px;
	padding: unset;
	width: 100%;
}

/* ボタン */
.form__detail-btn .wp-block-button__link {
	background: none;
	display: block;
	font-size: 24px;
	font-weight: 500;
	height: 100%;
	letter-spacing: .05em;
	line-height: 1.1;
	padding: 54px 0;
	width: 100%;
}

.form__detail-btn .wp-block-button__link:hover {
	opacity: 1;
}

.smf-action .smf-button-control+.smf-button-control {
	margin-left: 0;
}

div[data-name="property_type"] {
	position: relative;
}

div[data-name="property_type"]::before {
	color: var(--text-color);
	content: '\e313';;
	font-family: var(--icon-font);
	font-size: 26px;
	font-weight: 300;
	pointer-events: none;
	position: absolute;
	right: 30px;
	top: 25px;
	z-index: 10;
}

	[data-screen="confirm"] div[data-name="property_type"]::before {
		display: none;
	}

@media (width <=767px) {
	.form__lead {
		color: var(--text-color);
		font-size: 15px;
		letter-spacing: 0.05em;
		line-height: 1.6;
		margin-bottom: 66px;
	}

	.wp-block-snow-monkey-forms-item.smf-item {
		margin-bottom: 36px;
	}


	.smf-item__col.smf-item__col--label {
		margin-bottom: 23px;
	}

	.smf-item__label {
		font-size: 16px;
	}

	.smf-item__label__text {
		font-size: 15px;
	}

	.smf-item__label__text::after {
		font-size: 12px;
	}

	.smf-textarea-control__control, .smf-text-control__control, .smf-select-control__control {
		font-size: 15px;
		padding: 28px 20px !important;
	}

	/* プライバシーポリシーの前のブロック */
	.wp-block-snow-monkey-forms-item.smf-item:nth-last-of-type(2) {
		margin-bottom: 27px;
	}

	.form__privacy {
		font-size: 13px;
		line-height: 1.7;
		padding: 44px 32px !important;
	}

	.form__privacy .smf-checkbox-control__label {
		font-size: 15px;
		letter-spacing: .05em;
	}

	.smf-action {
		margin-bottom: 0 !important;
		margin-top: 17px !important;
	}

	.form__detail-btn .wp-block-button__link, .smf-button-control__control {
		font-size: 15px;
		padding: 30px 0 !important;
	}

	.form__detail-btn .wp-block-button__link::before, .smf-button-control__control::before {
		background: url("images/btn-arrow.svg") 50% center / 28px no-repeat,
			rgb(228 241 253 / 15%);
		height: 44.8px;
		right: 16px;
		width: 44.8px;
	}

	div[data-name="property_type"]::before {
		top: 18px;
	}

	/* --------------------
	confirm
	----------------------- */

	[data-screen="confirm"] .form__lead--complete {
		margin-bottom: 89px;
	}

	[data-screen="confirm"] .smf-item__col.smf-item__col--label {
		margin-bottom: 17px;
	}

	[data-screen="confirm"] .wp-block-snow-monkey-forms-item.smf-item {
		padding-bottom: 26px;
		padding-top: 31px;
	}

	[data-screen="confirm"] .smf-item__label {
		font-size: 15px;
	}

	[data-screen="confirm"] .smf-placeholder {
		font-size: 15px;
	}

	[data-screen="confirm"] .smf-form--letter+.smf-action {
		flex-direction: column;
		gap: 10px;
		margin-top: 63px !important;
	}

	.smf-button-control__control[data-action="back"]::before {
		background: url("images/btn-arrow-back.svg") 50% center / 28px no-repeat,
			rgb(228 241 253 / 15%);
		left: 16px;
	}



	/* --------------------
	complete
	----------------------- */

	.smf-complete-content {
		margin-top: 0;
	}

	.form__complete-large-text {
		font-size: 20px;
		margin-bottom: 55px;
	}

	.form__complete-text {
		font-size: 15px;
		line-height: 1.6;
	}

	.form__detail-btn-wrapper {
		margin-top: 84px;
	}

	[data-screen="complete"] .smf-action {
		margin-bottom: 0 !important;
		margin-top: 0 !important;
	}

}



/* 共通スタイルメディアクエリ
==================================================== */

@media (width <=767px) {
	.sp-hidden {
		display: none;
	}

	.post-property__type,
	.property-type {
		font-size: 13px;
		padding: 6px;
	}

}

/* utility
==================================================== */

.u-sp-only {
	display: none;
}

.u-mb-50 {
	margin-bottom: var(--s50);
}

.u-bg-white {
	background: var(--white);
}

.u-bg-white-gray {
	background: var(--light-gray);
}

.u-border-none {
	text-decoration: none !important;
}

@media (width <=767px) {
	.u-pc-only {
		display: none;
	}

	.u-sp-only {
		display: block;
	}

}}