@charset "UTF-8";

/* foundation --------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0a0205;
}

body {
	color: rgba(10, 2, 5, 0.7);
}

/* layout ------------------------------- */

/* section */
.section {
	--section-space: 140px;

	margin-top: var(--section-space);
}

@media screen and (max-width: 1200px) {
	.section {
		--section-space: 110px;
	}
}

@media screen and (max-width: 768px) {
	.section {
		--section-space: 80px;
	}
}

@media screen and (max-width: 576px) {
	.section {
		--section-space: 65px;
	}
}

@media screen and (max-width: 400px) {
	.section {
		--section-space: 50px;
	}
}

/* container */
.container-sm {
	width: min(100% - 200px, 1500px);
	margin-inline: auto;
}

@media screen and (max-width: 1200px) {
	.container-sm {
		width: calc(100% - 140px);
	}
}

@media screen and (max-width: 768px) {
	.container-sm {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 576px) {
	.container-sm {
		width: calc(100% - 40px);
	}
}

.container {
	width: min(100% - 160px, 1500px);
	margin-inline: auto;
}

@media screen and (max-width: 1200px) {
	.container {
		width: calc(100% - 120px);
	}
}

@media screen and (max-width: 768px) {
	.container {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 576px) {
	.container {
		width: calc(100% - 40px);
	}
}

.container-lg {
	width: min(100% - 120px, 1700px);
	margin-inline: auto;
}

@media screen and (max-width: 1200px) {
	.container-lg {
		width: calc(100% - 100px);
	}
}

@media screen and (max-width: 768px) {
	.container-lg {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 576px) {
	.container-lg {
		width: calc(100% - 40px);
	}
}

/* utility ------------------------------ */

/* visually-hidden */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
}

/* footnote */
.footnote {
	margin-top: 20px;
	color: rgba(0, 0, 0, 0.7);
	font-size: 1.3rem;
	line-height: 1.87;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.footnote {
		font-size: 1.2rem;
	}
}

/* animation ---------------------------- */
@keyframes kf-skelton-loader {
	0% {
		transform: translateX(-100%);
	}

	70% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

@keyframes kf-scroll-left-1 {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes kf-scroll-left-2 {
	0% {
		transform: translateX(100%);
	}

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

/* component ---------------------------- */

/* btn */
.btn {
	display: inline-flex;
	align-items: center;
	padding-block: 8px;
}

@media screen and (max-width: 1200px) {
	.btn {
		padding-block: 4px;
	}
}

@media screen and (max-width: 768px) {
	.btn {
		padding-block: 2px;
	}
}

.btn i {
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 20px;
	margin-right: 10px;
	background-image: url('../../assets/images/common/icn_arrow_r.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px auto;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: border-color 250ms ease;
	content: '';
}

@media (hover: hover) {
	.btn:hover i {
		border-color: rgb(0, 0, 0);
	}
}

.btn p {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.btn p {
		font-size: 1.2rem;
	}
}

/* sbs */
.sbs {
	width: 100%;
}

/* inner */
.sbs__inner {
	display: grid;
	grid-template: 'head body' auto/1fr 700px;
	-moz-column-gap: 100px;
	column-gap: 100px;
}

@media screen and (max-width: 1400px) {
	.sbs__inner {
		grid-template-columns: 1fr 600px;
		-moz-column-gap: 80px;
		column-gap: 80px;
	}
}

@media screen and (max-width: 1200px) {
	.sbs__inner {
		grid-template-columns: 1fr 560px;
		-moz-column-gap: 60px;
		column-gap: 60px;
	}
}

@media screen and (max-width: 992px) {
	.sbs__inner {
		grid-template: 'body' auto 'head' auto/1fr;
		-moz-column-gap: 0;
		column-gap: 0;
	}
}

.sbs.--reverse .sbs__inner {
	grid-template: 'body head' auto/700px 1fr;
}

@media screen and (max-width: 1400px) {
	.sbs.--reverse .sbs__inner {
		grid-template-columns: 600px 1fr;
	}
}

@media screen and (max-width: 1200px) {
	.sbs.--reverse .sbs__inner {
		grid-template-columns: 560px 1fr;
	}
}

@media screen and (max-width: 992px) {
	.sbs.--reverse .sbs__inner {
		grid-template: 'body' auto 'head' auto/1fr;
		-moz-column-gap: 0;
		column-gap: 0;
	}
}

/* head */
.sbs__head {
	grid-area: head;
}

@media screen and (max-width: 992px) {
	.sbs__head {
		margin-top: 80px;
	}
}

/* body */
.sbs__body {
	grid-area: body;
}

/* header */
.sbs__header {
	grid-area: header;
}

/* ttl */
.sbs__ttl {
	font-size: 4rem;
	line-height: 1.78;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1400px) {
	.sbs__ttl {
		font-size: 3.75rem;
	}
}

@media screen and (max-width: 1200px) {
	.sbs__ttl {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 992px) {
	.sbs__ttl {
		font-size: 4vw;
	}
}

@media screen and (max-width: 768px) {
	.sbs__ttl {
		font-size: 4.5vw;
	}
}

@media screen and (max-width: 576px) {
	.sbs__ttl {
		font-size: 5vw;
	}
}

.sbs__ttl span {
	display: block;
}

/* main */
.sbs__main {
	width: 94%;
	margin-top: 64px;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1400px) {
	.sbs__main {
		width: 100%;
		margin-top: 48px;
	}
}

@media screen and (max-width: 1200px) {
	.sbs__main {
		margin-top: 32px;
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 768px) {
	.sbs__main {
		font-size: 1.3rem;
	}
}

/* txt */
.sbs__txt {
	color: rgba(10, 2, 5, 0.7);
}

.sbs__txt span {
	display: block;
}

/* media, image */
.sbs__media,
.sbs__image {
	border-radius: 10px;
}

/* footer */
.sbs__footer {
	margin-top: 92px;
}

@media screen and (max-width: 1400px) {
	.sbs__footer {
		margin-top: 80px;
	}
}

@media screen and (max-width: 1200px) {
	.sbs__footer {
		margin-top: 60px;
	}
}

/* pickup */
.sbs__pickup {
	font-size: 2.2rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1200px) {
	.sbs__pickup {
		font-size: 2rem;
	}
}

@media screen and (max-width: 768px) {
	.sbs__pickup {
		font-size: 1.8rem;
	}
}

/* list */
.sbs__list {
	margin-top: 32px;
}

@media screen and (max-width: 1400px) {
	.sbs__list {
		margin-top: 28px;
	}
}

@media screen and (max-width: 1200px) {
	.sbs__list {
		margin-top: 24px;
	}
}

/* item */
.sbs__item {
	position: relative;
	padding-left: 1.4em;
	font-size: 1.6rem;
	line-height: 1.67;
	letter-spacing: 0.05em;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-block: 20px;
}

@media screen and (max-width: 1400px) {
	.sbs__item {
		font-size: 1.5rem;
		padding-block: 18px;
	}
}

@media screen and (max-width: 1200px) {
	.sbs__item {
		font-size: 1.4rem;
		padding-block: 16px;
	}
}

@media screen and (max-width: 768px) {
	.sbs__item {
		padding-block: 14px;
		font-size: 1.3rem;
	}
}

.sbs__item::before {
	position: absolute;
	left: 0;
	width: auto;
	height: auto;
	font-size: 1.2rem;
	font-size: 0.8em;
	transform: translateY(0.22em);
	content: '○';
}

@media screen and (max-width: 768px) {
	.sbs__item::before {
		font-size: 1.1rem;
	}
}

.sbs__item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* works */
.works {
	width: 100%;
}

/* head */
.works__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/* ttl */
.works__ttl {
	overflow: hidden;
	font-size: 2.4rem;
	letter-spacing: 0.03em;
}

@media screen and (max-width: 992px) {
	.works__ttl {
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 768px) {
	.works__ttl {
		font-size: 2rem;
	}
}

@media screen and (max-width: 576px) {
	.works__ttl {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 576px) {
	.works__ttl .btn i {
		margin-right: 6px;
	}
}

.works__ttl .char {
	display: inline-block;
	transform: translateY(20px);
	opacity: 0;
}

/* more */
.works__more {
	margin-left: auto;
}

/* body */
.works__body {
	margin-top: 50px;
}

@media screen and (max-width: 992px) {
	.works__body {
		margin-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.works__body {
		margin-top: 30px;
	}
}

/* list */
.works__list {
	--hbg: calc((100vw - 100% - var(--scrollbar-width)));

	width: calc(100% + var(--hbg));
	margin-left: calc(-1 * var(--hbg) / 2);
	overflow-x: hidden;
}

@media screen and (max-width: 768px) {
	.works__list {
		padding-bottom: 24px;
		overflow-x: auto;
	}
}

/* pagehead section ---------------------- */

/* title */
.pagehead__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 8rem;
}

@media screen and (max-width: 992px) {
	.pagehead__title {
		font-size: 6rem;
	}
}

@media screen and (max-width: 576px) {
	.pagehead__title {
		font-size: 4rem;
	}
}

.pagehead__title span:first-child {
	font-size: 2.4rem;
	text-transform: uppercase;
}

@media screen and (max-width: 992px) {
	.pagehead__title span:first-child {
		font-size: 2rem;
	}
}

@media screen and (max-width: 576px) {
	.pagehead__title span:first-child {
		font-size: 1.6rem;
	}
}

/* image */
.pagehead__image {
	background-color: rgba(0, 0, 0, 0.03);
}

/* house section ---------------------- */

/* house */
.house {
	width: 100%;
}

/* works */
.house__works {
	margin-top: 68px;
}

@media screen and (max-width: 768px) {
	.house__works {
		margin-top: 120px;
	}
}

/* owner section ---------------------- */

/* owner */
.owner {
	width: 100%;
}

.owner:last-of-type {
	padding-bottom: 140px;
}

/* inner */
.owner__inner {
	padding-top: var(--section-space);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* works */
.owner__works {
	margin-top: 68px;
}

@media screen and (max-width: 768px) {
	.owner__works {
		margin-top: 120px;
	}
}

/* swiper section ---------------------- */
.house-swiper__wrapper,
.store-swiper__wrapper {
	-webkit-transform-style: preserve-3d;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

/* slide */
.house-swiper__slide,
.store-swiper__slide {
	width: 380px;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
	.house-swiper__slide,
	.store-swiper__slide {
		width: 350px;
		padding-right: 40px;
	}
}

@media screen and (max-width: 576px) {
	.house-swiper__slide,
	.store-swiper__slide {
		width: 320px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 400px) {
	.house-swiper__slide,
	.store-swiper__slide {
		width: 280px;
	}
}
