@charset "Shift_JIS";
.l-hero {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: calc(100vh + 5vw);
	margin-top: -7.625rem;
}
@media (max-width: 767px) {
	.l-hero {
		margin-top: -4rem;
	}
}
.l-hero::after {
	content: '';
	position: absolute;
	bottom: -0.0625rem;
	left: 0;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1920/96;
	background-image: url(/products/semipublic/images/bg-semicircle.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center bottom;
}

/* ページの主要なコンテナ */
.l-container {
	position: relative;
	margin-inline: auto;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	background-color: #fff;
	overflow-x: clip;
}

/* カードを配置するグリッドレイアウト */
.l-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	row-gap: 1.25rem;
	width: 93.75%;
	max-width: 103.75rem;
	margin-top: 6.25rem;
	margin-inline: auto;
}
@media (max-width: 1199px) {
	.l-grid {
		grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
	}
}

/* モーダルのためのオーバーレイ */
.l-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	background-color: rgba(51, 51, 51, 0.98);
}

/* モーダルのコンテンツ部分 */
.l-modal-content {
	position: relative;
	overflow-y: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5rem;
	width: 95%;
	height: auto;
	background-color: transparent;
}
@media (max-width: 1199px) {
	.l-modal-content {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		height: auto;
		max-height: 94%;
		margin-top: 3.75rem;
	}
}

.c-button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 28.125rem;
	height: 4.6875rem;
	padding: 0.5rem;
	margin-inline: 1.25rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	text-decoration: none;
	letter-spacing: 0.05em;
	line-height: 1;
	border: 0.0625rem solid #666;
	border-radius: 0.625rem;
	color: #fff;
	background-color: #666;
	cursor: pointer;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}
.c-button:hover {
	background-color: #333;
}
.c-button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2rem;
	display: block;
	width: 1rem;
	height: 1rem;
	background-image: url(/products/semipublic/images/icon-arrow-down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* タグボタン */
.c-button-tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 3.625rem;
	padding: 0.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1.25;
	border: none;
	border-radius: 0.25rem;
	color: #333;
	background-color: #fff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.c-button-tag:hover {
	color: #fff;
	background-color: #666;
}
.c-button-tag.is-active {
	color: #fff;
	background-color: #666;
}
@media (max-width: 1199px) {
	.c-button-tag {
		font-size: 1rem;
	}
}
@media (max-width: 575px) {
	.c-button-tag {
		font-size: 0.875rem;
	}
}

/* モーダルボタン */
.c-button-modal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(33.3333333333% - 0.5rem);
	padding: 1rem 0.125rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: clamp(0.75rem, 3.2vw, 0.875rem);
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	text-decoration: none;
	letter-spacing: 0.05em;
	line-height: 1;
	border: 0.0625rem solid #fff;
	border-radius: 1.5rem;
	color: #fff;
	background-color: transparent;
	-webkit-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}
.c-button-modal:hover {
	text-decoration: none;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
}
.c-button-modal:focus {
	background-color: rgba(255, 255, 255, 0.2);
}

/* 閉じるボタン */
.c-button-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 1.25rem;
	text-transform: uppercase;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
}
@media (max-width: 992px) {
	.c-button-close {
		font-size: 1rem;
	}
}
@media (max-width: 767px) {
	.c-button-close {
		position: fixed;
		top: 0.625rem;
		right: 0.625rem;
		z-index: 10000;
	}
}
.c-button-close::after {
	content: '';
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	margin-left: 1rem;
	background-image: url(/products/semipublic/images/btn-modal-close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}
@media (max-width: 992px) {
	.c-button-close::after {
		width: 2rem;
		height: 2rem;
		margin-left: 0.5rem;
	}
}

/* カードコンポーネント */
.c-card {
	border-radius: 0.625rem;
	color: #333;
	background-color: #fff;
	-webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.13);
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.13);
	overflow: hidden;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.2s;
	transition: -webkit-transform 0.3s, -webkit-box-shadow 0.2s;
	transition: transform 0.3s, box-shadow 0.2s;
	transition: transform 0.3s, box-shadow 0.2s, -webkit-transform 0.3s, -webkit-box-shadow 0.2s;
	/* 個々のタグのスタイル */
}
.c-card:hover {
	-webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.13);
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.13);
	-webkit-transform: translateY(-0.5rem);
	transform: translateY(-0.5rem);
}
.c-card__img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	aspect-ratio: 400/270;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 0.625rem 0.625rem 0 0;
}
.c-card__img-wrapper {
	position: relative;
	overflow: hidden;
}
.c-card__content {
	padding: 1.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.c-card__scene-tag {
	position: absolute;
	top: 0.625rem;
	left: 0.625rem;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 6.25rem;
	height: 6.25rem;
	font-size: 1rem;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 50%;
	color: #fff;
	background-color: #6697d2;
}
.c-card__body {
	padding: 2rem 1.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 575px) {
	.c-card__body {
		padding: 1.5rem 1rem;
	}
}
.c-card__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 1.125rem;
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1.25;
}
.c-card__subtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 400;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1.25;
}
.c-card__subtitle::before {
	content: '｜';
	font-size: 1.125rem;
	font-weight: 400;
}
.c-card__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-top: 1rem;
}
.c-card__tag {
	padding: 0.25rem 0.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 0.8125rem;
	line-height: 1;
	border: 0.0625rem solid #333;
	border-radius: 1rem;
	color: #333;
	background-color: #fff;
}
.c-card__tag::before {
	content: '#';
	font-size: 0.8125rem;
	line-height: 1;
}
.c-card__text {
	margin-top: 1rem;
	font-size: 1.125rem;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1;
}

/* ローディング表示コンポーネント */
.c-loader {
	padding: 2rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.25rem;
	text-align: center;
	color: #666;
}

/* main-visual */
.c-fade-image {
	position: absolute;
	top: 0;
	z-index: -10;
	width: 100%;
	height: calc(100vh + 5vw);
	overflow: hidden;
}

.c-fade-image__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	vertical-align: bottom;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 1;
	-webkit-transition: opacity 5000ms ease-out;
	transition: opacity 5000ms ease-out;
}

/* State */
.c-fade-image__item.is-active {
	opacity: 0;
}

/* 各画像に適用するアニメーション */
.c-fade-image__item.is-active {
	-webkit-animation: fade-effect-image 20000ms ease-in-out infinite;
	animation: fade-effect-image 20000ms ease-in-out infinite;
}

/* 1枚目の画像用 @keyframes */
@-webkit-keyframes fade-effect-image {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-effect-image {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.c-hero {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 33.75rem;
	height: auto;
	margin-inline: 1.25rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.c-hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #333;
	border-radius: 50%;
	opacity: 0.3;
	mix-blend-mode: color-burn;
}
.c-hero__img {
	width: 100%;
	max-width: 33.75rem;
	height: auto;
	vertical-align: bottom;
}

.c-section__title {
	width: 100%;
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.75rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	line-height: 1;
	background-color: #fff;
}
@media (max-width: 767px) {
	.c-section__title {
		margin-top: 4rem;
	}
}
.c-section__title .has-scene-color {
	padding-left: 1rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #bbb3d8;
}

.p-about {
	display: grid;
	grid-template-columns: 1fr 53%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 87.5rem;
	padding: 4rem 1.25rem 0;
	margin-inline: auto;
	margin-bottom: 8rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 992px) {
	.p-about {
		grid-template-columns: 1fr;
		row-gap: 4rem;
	}
}
.p-about__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 3.5rem;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
}
@media (max-width: 992px) {
	.p-about__heading {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}
}
.p-about__title-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 1.75rem;
}
@media (max-width: 992px) {
	.p-about__title-area {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.p-about__title-area-text {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
}
.p-about__title-img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.p-about__text {
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 1.125rem;
	line-height: 2.3;
}
@media (max-width: 575px) {
	.p-about__text {
		font-size: 1rem;
	}
}
.p-about__body {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	aspect-ratio: 720/480;
}
@media (max-width: 1199px) {
	.p-about__body {
		max-width: 37.5rem;
		margin-top: 1.5rem;
		margin-inline: auto;
	}
}
.p-about__body::before,
.p-about__body::after {
	content: '';
	position: absolute;
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.p-about__body::before {
	top: -9%;
	left: -2rem;
	z-index: 1;
	width: 120%;
	height: 120%;
	background-image: url(/products/semipublic/images/semi-public-img-before@2x.png);
}
.p-about__body::after {
	top: -31%;
	left: -8rem;
	width: 130%;
	height: 130%;
	background-image: url(/products/semipublic/images/semi-public-img-after@2x.png);
}
.p-about__body-img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	-webkit-filter: drop-shadow(0 0 1.5rem rgba(187, 179, 216, 0.45));
	filter: drop-shadow(0 0 1.5rem rgba(187, 179, 216, 0.45));
}
@media (max-width: 992px) {
	.p-about__br {
		display: none;
	}
}

.p-scene__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: 4.5rem;
}
@media (max-width: 767px) {
	.p-scene__block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.p-scene__block-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 33.3333333333%;
	height: auto;
	padding: 4.82% 0.625rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.p-scene__block-item:nth-child(1) {
	background-image: url(/products/semipublic/images/scene-img01.jpg);
}
.p-scene__block-item:nth-child(2) {
	background-image: url(/products/semipublic/images/scene-img02.jpg);
}
.p-scene__block-item:nth-child(3) {
	background-image: url(/products/semipublic/images/scene-img03.jpg);
}
@media (max-width: 767px) {
	.p-scene__block-item {
		width: 100%;
	}
}
.p-scene__block-title {
	width: 20.3125rem;
	height: auto;
	vertical-align: bottom;
}
.p-scene__bg {
	position: relative;
	padding-top: 6.25rem;
	padding-bottom: 6.25rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #d5dfe8;
}
.p-scene__button-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* プロジェクト一覧のヘッダー */
.p-search-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
}
.p-search-header__title {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.25rem;
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.25;
}
.p-search-header__title::before {
	content: '';
	display: inline-block;
	width: 2.8125rem;
	height: 2.8125rem;
	margin-right: 1rem;
	vertical-align: middle;
	background-image: url(/products/semipublic/images/icon-search.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transform: translateY(-0.25rem);
	transform: translateY(-0.25rem);
}

/* 商品を探す */
.p-search-filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 87.5rem;
	padding: 2rem 2rem 2.5rem;
	margin-inline: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	color: #fff;
	border-radius: 0.625rem;
	background-color: #333;
}
@media (max-width: 1499px) {
	.p-search-filter {
		width: 93.75%;
	}
}
@media (max-width: 575px) {
	.p-search-filter {
		padding: 1.25rem;
	}
}
.p-search-filter__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2.5rem;
	width: 100%;
	margin-top: 0.5rem;
}
.p-search-filter__inner {
	width: 100%;
}
.p-search-filter__title {
	padding-bottom: 0.75rem;
	margin-bottom: 1.25rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.25rem;
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1.25;
	border-bottom: 0.0625rem solid #fff;
}
.p-search-filter__tags {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.75rem;
	width: 100%;
}
@media (max-width: 1199px) {
	.p-search-filter__tags {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 767px) {
	.p-search-filter__tags {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 検索結果-該当なし */
.p-no-results {
	margin-top: 4rem;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
}

/* モーダル内の詳細表示エリア */
.p-product-modal {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2%;
	width: 100%;
}
@media (max-width: 1199px) {
	.p-product-modal {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-bottom: 2.5rem;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
.p-product-modal__img {
	width: 60%;
	height: auto;
	vertical-align: bottom;
	aspect-ratio: 1000/650;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 1199px) {
	.p-product-modal__img {
		width: 94%;
	}
}
.p-product-modal__body {
	width: 38%;
	margin-top: -2.25rem;
	color: #fff;
}
@media (max-width: 1199px) {
	.p-product-modal__body {
		width: 94%;
		margin-top: 1rem;
	}
}
.p-product-modal__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1.25rem;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}
.p-product-modal__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 10.625rem;
	height: 10.625rem;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	white-space: nowrap;
	color: #fff;
	background-color: #6697d2;
	border-radius: 50%;
}
@media (max-width: 1199px) {
	.p-product-modal__tag {
		width: 7.5rem;
		height: 7.5rem;
		font-size: 1.25rem;
	}
}
@media (max-width: 575px) {
	.p-product-modal__tag {
		width: 5.625rem;
		height: 5.625rem;
		font-size: 1.125rem;
	}
}
.p-product-modal__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
}
@media (max-width: 1199px) {
	.p-product-modal__title {
		font-size: 2rem;
	}
}
@media (max-width: 575px) {
	.p-product-modal__title {
		font-size: 1.5rem;
	}
}
.p-product-modal__subtitle {
	margin-top: 1rem;
	font-size: 1.125rem;
	font-weight: 400;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
}
.p-product-modal__related-links {
	margin-top: 1.5rem;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}
.p-product-modal__use {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-bottom: 1rem;
	margin-top: 1.5rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 0.125rem solid #d5dfe8;
}
.p-product-modal__use-title {
	font-size: 1.25rem;
	font-weight: 600;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.03em;
	line-height: 1;
}
.p-product-modal__use-button {
	color: #333;
	background-color: #fff;
}
.p-product-modal__use-button::after {
	content: '';
	width: 1rem;
	height: 1rem;
	margin-left: 0.5rem;
	color: #333;
	background-image: url(/products/semipublic/images/icon-download-black.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
@media (max-width: 767px) {
	.p-product-modal__use-button::after {
		width: clamp(0.75rem, 3.2vw, 0.875rem);
		height: clamp(0.75rem, 3.2vw, 0.875rem);
		margin-left: 0.25rem;
	}
}
.p-product-modal__use-button:hover {
	color: #333;
	background-color: rgba(255, 255, 255, 0.8);
}
.p-product-modal__use-button:focus {
	background-color: rgba(255, 255, 255, 0.8);
}
.p-product-modal__link-group {
	margin-bottom: 1.5rem;
	font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}
.p-product-modal__link-group:last-child {
	margin-bottom: 0;
}
.p-product-modal__link-group-title {
	margin-top: 1.25rem;
	margin-bottom: 0.75rem;
	font-size: 1.75rem;
	font-weight: 500;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.05em;
	line-height: 1.25;
}
.p-product-modal__link-group-subtitle {
	font-size: 1.25rem;
}
.p-product-modal__link-group-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.75rem;
}
.p-product-modal__link-group-buttons .c-button-modal::after {
	content: '';
	margin-left: 0.5rem;
}
@media (max-width: 767px) {
	.p-product-modal__link-group-buttons .c-button-modal::after {
		margin-left: 0.25rem;
	}
}
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(1)::after,
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(2)::after,
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(3)::after,
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(4)::after {
	content: '';
	display: block;
	width: 1rem;
	height: 1rem;
	color: #fff;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
@media (max-width: 767px) {
	.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(1)::after,
	.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(2)::after,
	.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(3)::after,
	.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(4)::after {
		width: clamp(0.75rem, 3.2vw, 0.875rem);
		height: clamp(0.75rem, 3.2vw, 0.875rem);
	}
}
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(1)::after {
	background-image: url(/products/semipublic/images/icon-arrow-right.svg);
}
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(2)::after {
	background-image: url(/products/semipublic/images/icon-catalog.svg);
}
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(3)::after {
	background-image: url(/products/semipublic/images/icon-download.svg);
}
.p-product-modal__link-group-buttons .c-button-modal:nth-of-type(4)::after {
	background-image: url(/products/semipublic/images/icon-arrow-right.svg);
}

/* Photo Gallery */
.p-gallery__bg {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 6rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fff;
}
.p-gallery__semicircle {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1920/96;
	background-color: #d5dfe8;
}
.p-gallery__subtitle {
	margin-top: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4375rem;
	letter-spacing: 0.1em;
	line-height: 1;
}

/* Alpine.jsが初期化されるまで要素を隠す */
[x-cloak] {
	display: none !important;
}

/* テキストを中央寄せにするユーティリティ */
.u-text-center {
	text-align: center;
}

/* 上マージンを設定するユーティリティ */
.u-mt-lg {
	margin-top: 4.5rem;
}

/* 下マージンを設定するユーティリティ */
.u-mb-xl {
	margin-bottom: 5rem;
}

/* sceneのタグ色変更 */
.u-scene-tag.c-button-tag:nth-of-type(2) {
	color: #6697d2;
}
.u-scene-tag.c-button-tag:nth-of-type(2):hover {
	color: #fff;
	background-color: #6697d2;
}
.u-scene-tag.c-button-tag:nth-of-type(2).is-active {
	color: #fff;
	background-color: #666;
}
.u-scene-tag.c-button-tag:nth-of-type(3) {
	color: #bbb3d8;
}
.u-scene-tag.c-button-tag:nth-of-type(3):hover {
	color: #fff;
	background-color: #bbb3d8;
}
.u-scene-tag.c-button-tag:nth-of-type(3).is-active {
	color: #fff;
	background-color: #666;
}
.u-scene-tag.c-button-tag:nth-of-type(4) {
	color: #7db294;
}
.u-scene-tag.c-button-tag:nth-of-type(4):hover {
	color: #fff;
	background-color: #7db294;
}
.u-scene-tag.c-button-tag:nth-of-type(4).is-active {
	color: #fff;
	background-color: #666;
}
.u-scene-tag__collective-housing .c-card__scene-tag {
	background-color: rgba(102, 151, 210, 0.8);
}
.u-scene-tag__store .c-card__scene-tag {
	background-color: rgba(187, 179, 216, 0.8);
}
.u-scene-tag__various-facilities .c-card__scene-tag {
	background-color: rgba(125, 178, 148, 0.8);
}

/* modalのタグ色変更 */
.u-scene-tag__collective-housing.p-product-modal__tag {
	background-color: #6697d2;
}
.u-scene-tag__store.p-product-modal__tag {
	background-color: #bbb3d8;
}
.u-scene-tag__various-facilities.p-product-modal__tag {
	background-color: #7db294;
} /*# sourceMappingURL=style.css.map */
