@charset "UTF-8";

/* ========================================
	Hero
======================================== */

.hero {
	position: relative;
	min-height: 835px;
	padding-bottom: 110px;
	background: #f3f0e9;
}

.hero__visual {
	position: absolute;
	inset: 0 0 110px;
	overflow: hidden;
}

.hero__visual picture,
.hero__visual img {
	width: 100%;
	height: 100%;
}

.hero__visual img {
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	position: absolute;
	inset: 0 0 110px;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.76) 25%,
			rgba(255, 255, 255, 0.19) 53%,
			rgba(255, 255, 255, 0) 78%
		);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(calc(100% - 100px), 1440px);
	min-height: 725px;
	margin-inline: auto;
	padding-top: 100px;
}

.hero__copy {
	width: min(43%, 530px);
	margin-left: 2%;
}

.hero__catch {
	width: min(100%, 470px);
}

.hero__lead {
	margin-top: 30px;
	font-family: "Noto Sans JP", serif;
	font-size: clamp(14px, 1.25vw, 18px);
	font-weight: 500;
	line-height: 2.1;
	letter-spacing: 0.09em;
}

/* ========================================
	Award
======================================== */

.heroAward {
	position: absolute;
	z-index: 4;
	right: 50%;
	bottom: 30px;
	width: min(calc(100% - 160px), 1120px);
	transform: translateX(50%);
}

.heroAward__inner {
	display: grid;
	grid-template-columns: 250px 1fr;
	align-items: stretch;
	min-height: 155px;
	padding: 20px 32px;
	background: rgba(250, 247, 240, 0.97);
	border-radius: 25px;
	box-shadow: 0 15px 40px rgba(73, 57, 30, 0.1);
}

.heroAward__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-right: 28px;
	text-align: center;
}

.heroAward__brand {
	font-family: "Noto Serif JP", serif;
	font-size: 17px;
	line-height: 1.4;
}

.heroAward__title {
	margin-top: 1px;
	font-size: 13px;
	font-weight: 600;
}

.heroAward__prize {
	color: var(--color-gold);
	font-family: "Noto Serif JP", serif;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.heroAward__note {
	margin-top: 4px;
	color: var(--color-gold);
	font-size: 9px;
}

/* 受賞項目 */

.heroAward__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}

.heroAward__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 110px;
	padding: 10px 16px;
	text-align: center;
}

/* 区切り線 */

.heroAward__item::before,
.heroAward__item::after {
	position: absolute;
	top: 50%;
	width: 1px;
	height: 78px;
	background: rgba(180, 138, 59, 0.28);
	content: "";
	transform: translateY(-50%);
}

/* 一番左の区切り線 */
.heroAward__item::before {
	left: 0;
}

/* 各項目の右側の区切り線 */
.heroAward__item::after {
	right: 0;
}

/* 左線は最初の項目だけ */
.heroAward__item:not(:first-child)::before {
	display: none;
}

/* 最後の項目の右線は不要 */
.heroAward__item:last-child::after {
	display: none;
}

.heroAward__item img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.heroAward__item p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.04em;
}


/* ========================================
	Common headings
======================================== */

.sectionHeading__en {
	color: #B1B1B1;
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	letter-spacing: 0.24em;
}

.sectionHeading__title {
	display: flex;
	align-items: baseline;
	flex-wrap: nowrap;
	margin-top: 20px;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}
.sectionHeading__large {
	font-size: clamp(42px, 4vw, 67px);
	letter-spacing: 0.08em;
	font-weight: 600;
}

.sectionHeading__small {
	font-size: clamp(24px, 2.3vw, 34px);
	letter-spacing: 0.03em;
}

.brushHeading {
	position: relative;
	z-index: 2;
}

.brushHeading__main {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(34px, 4vw, 62px);
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.09em;
}

.brushHeading__en {
	margin-top: 18px;
	color: var(--color-gold);
	font-family: "Noto Serif JP", serif;
	font-size: 11px;
	letter-spacing: 0.25em;
}

/* ========================================
	Philosophy
======================================== */

.philosophy {
	position: relative;
	padding: 70px 0 110px;
	background: #fff;
}

.philosophy::before {
	position: absolute;
	top: 0;
	right: -5%;
	width: 43%;
	height: 100%;
	background:
		linear-gradient(
			135deg,
			rgba(236, 231, 219, 0.35),
			rgba(255, 255, 255, 0)
		);
	content: "";
	clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.philosophy__inner {
	position: relative;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(70px, 10vw, 100px);
	align-items: center;
	width: min(calc(100% - 100px), 1200px);
	margin-inline: auto;
}

.philosophy__body {
	padding-top: 20px;
	font-family: "Noto Serif JP", serif;
	font-size: 18px;
	line-height: 2.5;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.philosophy__body p + p {
	margin-top: 25px;
}

/* ========================================
	Works grid
======================================== */

.worksSection {
	position: relative;
	padding: 30px 0 90px;
	background: #fff;
}

.worksSection--renovation,
.worksSection--reform,
.worksSection--newhouse {
	background: #fff;
}

.worksSection__inner {
	width: min(calc(100% - 80px), 1160px);
	margin-inline: auto;
}

.worksSection__heading {
	margin: 0 0 -80px -75px;
}

.worksSection__heading2 {
	margin: 0 0 -42px -75px;
}

.worksSection__headingImage {
	display: block;
	width: 500px;
	max-width: 100%;
	height: auto;
}
.worksSection__headingImage2 {
	display: block;
	width: 500px;
	max-width: 100%;
	height: auto;
}
/* 3列 × 2段 */

.worksGrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 52px 26px;
	align-items: start;
	margin-top: 0;
}



/* ========================================
	Buttons
======================================== */

.sectionButton {
	display: flex;
	justify-content: center;
	margin-top: 58px;
}

.outlineButton {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 350px);
	min-height: 52px;
	padding: 0 42px;
	border: 1px solid #89867f;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	transition:
		color 0.3s ease,
		background-color 0.3s ease;
}

.outlineButton:hover {
	color: #fff;
	background: #282824;
}

.outlineButton__arrow {
	display: none;
}

/* ========================================
	About banner
======================================== */

.aboutBanner {
	padding: 120px 0 110px;
	background: #fff;
}

.aboutBanner__inner {
	width: min(calc(100% - 80px), 1140px);
	margin-inline: auto;
}

.aboutBanner__box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	background: #f3f3f3;
	border-radius: 16px;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.aboutBanner__image {
	min-height: 245px;
	overflow: hidden;
}

.aboutBanner__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.aboutBanner__box:hover .aboutBanner__image img {
	transform: scale(1.025);
}

.aboutBanner__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 38px 48px 30px;
	color: var(--color-text);
}

.aboutBanner__title {
	font-family: "LINE Seed JP", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.aboutBanner__text {
	margin-top: 16px;
	color: #55534f;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.9;
}

.aboutBanner__nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #d4d4d4;
}

.aboutBanner__nav li {
	flex: 0 0 auto;
}

.aboutBanner__nav a {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	transition: opacity 0.25s ease;
}

.aboutBanner__nav a:hover {
	opacity: 0.55;
}

.aboutBanner__nav i {
	font-size: 9px;
	transition: transform 0.25s ease;
}

.aboutBanner__nav a:hover i {
	transform: translateX(3px);
}








/* ========================================
	Hero scroll
======================================== */

.heroScroll {
	position: absolute;
	z-index: 5;
	right: max(26px, calc((100vw - 1440px) / 2 + 12px));
	bottom: 130px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: #fff;
}

.heroScroll__text {
	font-family: "LINE Seed JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	writing-mode: vertical-rl;
}

.heroScroll__line {
	position: relative;
	display: block;
	width: 1px;
	height: 64px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.45);
}

.heroScroll__lineMove {
	position: absolute;
	top: -100%;
	left: 0;
	width: 1px;
	height: 100%;
	background: #fff;
	animation: heroScrollLine 1.8s ease-in-out infinite;
}

@keyframes heroScrollLine {
	0% {
		top: -100%;
	}

	55% {
		top: 0;
	}

	100% {
		top: 100%;
	}
}

/* ========================================
	Tablet
======================================== */

@media screen and (max-width: 1024px) {

	.hero {
		min-height: 730px;
	}

	.hero__visual,
	.hero__overlay {
		bottom: 100px;
	}

	.hero__inner {
		width: calc(100% - 70px);
		min-height: 630px;
	}

	.hero__copy {
		width: 48%;
		margin-left: 0;
	}

	.heroAward {
		width: calc(100% - 70px);
	}

	.heroAward__inner {
		grid-template-columns: 185px 1fr;
		padding-inline: 25px;
	}

	.heroAward__item {
		padding-inline: 8px;
	}

	.heroAward__item::after {
		height: 68px;
	}

	.heroAward__item img {
		width: 40px;
		height: 40px;
	}

	.heroAward__item p {
		font-size: 11px;
	}

	.philosophy__inner {
		width: calc(100% - 70px);
		gap: 65px;
	}

	.worksSection__inner,
	.aboutBanner__inner,
	.informationArea__inner,
	.bottomVisual__inner {
		width: calc(100% - 70px);
	}

	.worksGrid {
		grid-auto-rows: 180px;
	}


	.newsBox {
		padding: 40px 32px;
	}

	.contactBox__content {
		padding: 42px 36px;
	}

	.serviceBanner {
		grid-template-columns: 95px 1fr 52px;
		padding-inline: 18px;
	}

}

/* ========================================
	Smartphone
======================================== */

@media screen and (max-width: 767px) {

	.hero {
		min-height: auto;
		padding-bottom: 0;
	}

	.hero__visual {
		position: relative;
		inset: auto;
		height: 570px;
	}

	.hero__visual img {
		object-position: 62% center;
	}

	.heroScroll {
		display: none;
	}
	
	.hero__overlay {
		inset: 0;
		height: 570px;
		background:
			linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.2) 0%,
				rgba(255, 255, 255, 0.05) 45%,
				rgba(255, 255, 255, 0.93) 88%,
				#fff 100%
			),
			linear-gradient(
				90deg,
				rgba(255, 255, 255, 0.75) 0%,
				rgba(255, 255, 255, 0) 77%
			);
	}

	.hero__inner {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		min-height: 0;
		padding: 145px 24px 0;
	}

	.hero__copy {
		width: 96%;
	}

	.hero__lead {
		margin-top: 24px;
		font-size: 16px;
		line-height: 1.9;
	}

	.hero__lead br {
		display: none;
	}

	.heroAward {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 30px);
		margin: -42px auto 0;
		transform: none;
	}

	.heroAward__inner {
		display: block;
		min-height: 0;
		padding: 25px 18px;
		border-radius: 18px;
	}

	.heroAward__heading {
		padding: 0 0 20px;
	}

	.heroAward__list {
		grid-template-columns: repeat(2, 1fr);
		border-top: 1px solid rgba(180, 138, 59, 0.28);
		border-left: 0;
	}

	.heroAward__item {
		min-height: 105px;
		padding: 15px 8px;
		border-bottom: 1px solid rgba(180, 138, 59, 0.28);
	}

	.heroAward__item::after {
		top: 50%;
		right: 0;
		width: 1px;
		height: 70px;
		background: rgba(180, 138, 59, 0.28);
		transform: translateY(-50%);
	}

	.heroAward__item:nth-child(2n) {
		border-right: 0;
	}

	.heroAward__item:nth-child(2n)::after {
		display: none;
	}

	.heroAward__item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.heroAward__item img {
		width: 40px;
		height: 40px;
	}

	.philosophy {
		padding: 60px 0 35px;
	}

	.philosophy::before {
		display: none;
	}

	.philosophy__inner {
		display: block;
		width: calc(100% - 40px);
	}

	.sectionHeading__title {
		margin-top: 12px;
		font-size: 34px;
	}

	.sectionHeading__large {
		font-size: 40px;
	}

	.sectionHeading__small {
		font-size: 30px;
	}

	.philosophy__body {
		margin-top: 43px;
		padding-top: 0;
		font-size: 18px;
		line-height: 1.8;
	}

	.philosophy__body br {
		display: none;
	}

	.worksSection {
		padding: 20px 0 50px;
	}

	.worksSection__inner {
		width: calc(100% - 30px);
	}

	.brushHeading__main {
		font-size: 34px;
	}

	.worksSection__heading {
		margin: 0 0 -75px -75px;
	}

	.worksSection__heading2 {
		margin: 0 0 -30px -25px;
	}
	
	.worksSection__headingImage {
		max-width: 500px;
	}

	.worksSection__headingImage2 {
		max-width: 390px;
	}

	.worksGrid {
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		gap: 38px;
	}

	.sectionButton {
		margin-top: 45px;
	}

	.outlineButton {
		width: 100%;
		max-width: 340px;
		font-size: 16px;
	}

	.aboutBanner {
		padding: 90px 0;
	}

	.aboutBanner__inner {
		width: calc(100% - 30px);
	}

	.aboutBanner__box {
		display: grid;
		grid-template-columns: 1fr;
	}

	.aboutBanner__image {
		width: 100%;
		height: 220px;
		min-height: 0;
	}

	.aboutBanner__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.aboutBanner__body {
		width: 100%;
		padding: 30px 25px 35px;
	}

	.aboutBanner__title {
		font-size: 25px;
	}

	.aboutBanner__nav {
		display: block;
	}

	.aboutBanner__nav span {
		display: block;
		margin-top: 7px;
	}

	.aboutBanner__nav li + li {
		margin-top: 8px;
	}


}