/* リキッドレイアウト対応 */

:root {
	--padding-pc: 25px;
	--padding-sp: 20px;
	--base-font-family: "Zen Kaku Gothic New", sans-serif;
	--en-font-family: "Futura-Medium", "Futura", "Jost", sans-serif;
	--second-font-family: "Noto Sans JP", sans-serif;
	--script-font-family: "Freestyle Script", cursive;
	--regular: 400;
	--normal: 500;
	--semi-bold: 600;
	--bold: 700;
	--black: #111;
	--white: #fff;
	--primary: #BE0D34;
	--base-color: #333;
	--dark: #222;
	--gray: #757575;
	--light-gray: #F4F4F4;
	--bg-gray: #C9C9C9;
	--line-green: #06C755;
}

body {
	font-family: var(--base-font-family);
}

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
	pointer-events: none;
}

a {
	text-decoration: none;
	color: inherit;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

html {
	overflow-wrap: break-word;
}

.breadcrumb {
	padding: 1rem 0;
}

.breadcrumb__list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.75rem;
	line-height: 1.5;
	color: var(--gray);
}

.breadcrumb__item::after {
	content: ">";
	font-size: 0.625rem;
	color: var(--gray);
}

.breadcrumb__item:last-child::after {
	display: none;
}

.breadcrumb__item a {
	color: var(--gray);
	transition: opacity 0.3s;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	min-width: 15rem;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.625rem 0.625rem;
	background-color: var(--base-color);
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--white);
	border: none;
	cursor: pointer;
	transition: opacity 0.3s;
}

.btn--en {
	font-family: var(--en-font-family);
}

.btn--white {
	background-color: var(--white);
	color: var(--base-color);
}

.btn--line {
	background-color: var(--line-green);
	color: var(--white);
}

.btn--outline {
	background-color: #666;
	border: 0.0625rem solid #D9D5D5;
}

.btn--full {
	width: 100%;
}

.btn__arrow {
	display: inline-block;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	background-color: currentColor;
	mask-image: url("../images/common/icon-btn-arrow.svg");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("../images/common/icon-btn-arrow.svg");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.btn__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.375rem;
	height: 1.375rem;
}

.btn__icon img {
	width: 100%;
	height: 100%;
}

.contact-form span,
.contact-form input {
	width: 100%;
}

.contact-form input {
	border: 1px solid #cccccc;
	padding: 0.625rem;
}

.contact-form textarea {
	width: 100%;
	border: 1px solid #cccccc;
	padding: 0.625rem;
}

.contact-form .contact-form__label {
	display: block;
	margin-bottom: 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.contact-form .need {
	position: relative;
	padding-right: 4.0625rem;
}

.contact-form .need::after {
	content: "必須";
	display: block;
	font-size: 0.8125rem;
	position: absolute;
	top: 50%;
	right: 1.3125rem;
	transform: translateY(-50%);
	padding: 0 0.125rem 0 0.25rem;
	background: #de0000;
	color: #fff;
	font-weight: var(--normal);
}

.contact-form .optional {
	position: relative;
	padding-right: 4.0625rem;
}

.contact-form .optional::after {
	content: "任意";
	display: block;
	font-size: 0.8125rem;
	position: absolute;
	top: 50%;
	right: 1.3125rem;
	transform: translateY(-50%);
	padding: 0 0.125rem 0 0.25rem;
	background: #808080;
	color: #fff;
	font-weight: var(--normal);
}

.contact-form .wpcf7-submit {
	display: block;
	position: relative;
	font-size: 1rem;
	color: #fff;
	font-weight: var(--bold);
	line-height: 1.5;
	background: #000;
	padding: 0.9375rem 1.375rem;
	border-radius: 12.5rem;
	border: 1px solid #000;
	transition: 0.3s ease-in-out all;
}

.contact-form .contact-form__row {
	margin-bottom: 1.5rem;
}

.contact-form .contact-form__row--submit {
	width: 21.875rem;
	margin-inline: auto;
	position: relative;
}

.contact-form .contact-form__row--submit::after {
	content: "";
	display: block;
	position: absolute;
	filter: brightness(15);
	background-image: url("../images/common/arrow_r_black.svg");
	background-repeat: no-repeat;
	background-size: contain;
	aspect-ratio: 14/6;
	right: 1.375rem;
	width: 0.875rem;
	top: 1.3em;
	transition: 0.3s ease-in-out all;
}

.contact-form .wpcf7-spinner {
	margin: 0;
	display: none;
}

.contact-form input[type=checkbox] + span {
	padding-left: 28px;
	display: inline-block;
	position: relative;
}

.contact-form input[type=checkbox] + span::after,
.contact-form input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

.contact-form input[type=checkbox] + span::before {
	border: 1px solid #aaaaaa;
	background-color: #ffffff;
	height: 20px;
	width: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.contact-form input[type=checkbox] + span::after {
	border: 2px solid;
	border-color: transparent transparent #000 #000;
	width: 18px;
	aspect-ratio: 2/1;
	left: 1px;
	top: 40%;
	transform: translateY(-50%) rotate(-45deg);
	display: none;
}

.contact-form input[type=checkbox]:checked + span::after {
	display: block;
}

.contact-form input[type=radio] + span {
	padding-left: 1.75rem;
	display: inline-block;
	position: relative;
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.02em;
	font-weight: var(--normal);
	font-family: var(--base-font);
	color: #000000;
	vertical-align: middle;
}

.contact-form input[type=radio] + span::after,
.contact-form input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

.contact-form input[type=radio] + span::before {
	border: 2px solid #808080;
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 50%;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
}

.contact-form input[type=radio] + span::after {
	background: radial-gradient(circle, #f14668 0 40%, transparent 40% 100%);
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 50%;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
	opacity: 0;
}

.contact-form input[type=radio]:checked + span::before {
	border-color: #f14668;
}

.contact-form input[type=radio]:checked + span::after {
	opacity: 1;
}

.contact-form .wpcf7-list-item {
	display: block;
	margin: 0.4375rem 0;
}

.data-table {
	width: 100%;
	border-radius: 1rem;
}

.data-table__row {
	display: flex;
	gap: 3.5rem;
}

.data-table__row:not(:first-of-type) .data-table__label {
	border-top: unset;
}

.data-table__row:not(:first-of-type) .data-table__value {
	border-top: unset;
}

.data-table__label {
	width: 12.25rem;
	flex-shrink: 0;
	padding: 2rem 0;
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
	font-family: var(--second-font-family);
	font-weight: var(--bold);
	font-size: 1rem;
	line-height: 1.448;
	letter-spacing: 0.02em;
	color: #b8b8b8;
}

.data-table__value {
	flex: 1;
	padding: 2rem 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--base-color);
}

.drawer-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 26.9375rem;
	height: 100vh;
	background-color: var(--white);
	z-index: 105;
	transform: translateX(100%);
	transition: transform 0.3s;
	overflow: auto;
	overscroll-behavior: contain;
	scrollbar-width: none;
}

.drawer-menu.open {
	transform: translateX(0);
}

.drawer-menu__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.drawer-menu__overlay.open {
	opacity: 1;
	visibility: visible;
}

.drawer-menu__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	padding: 1.25rem 2.5rem 2.5rem;
	height: calc(100% + 1px);
}

.drawer-menu__top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-left: 0.5rem;
}

.drawer-menu__logo {
	width: 100%;
}

.drawer-menu__logo img {
	width: 5.625rem;
	aspect-ratio: 90/52;
}

.drawer-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	aspect-ratio: 1;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	border-radius: 0;
	transition: opacity 0.3s;
}

.drawer-menu__close-icon {
	object-fit: contain;
}

.drawer-menu__list {
	display: flex;
	flex-direction: column;
	width: 21.25rem;
}

.drawer-menu__item {
	display: flex;
	flex-direction: column;
}

.drawer-menu__item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 0;
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--base-color);
	transition: opacity 0.3s;
}

.drawer-menu__item-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.drawer-menu__item-arrow img {
	width: 100%;
	height: 100%;
}

.drawer-menu__divider {
	width: 21.4375rem;
	height: 1px;
	background-color: #dddddd;
}

.drawer-menu__contact {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	height: 4.375rem;
	padding: 0.75rem 2.25rem;
	background-color: var(--primary);
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 1.125rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--white);
	transition: opacity 0.3s;
}

.footer {
	position: relative;
	background-color: #f9f9f9;
	overflow: hidden;
}

.footer__bg {
	position: absolute;
	top: 0;
	left: 27.9375rem;
	right: 0;
	bottom: 0;
}

.footer__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(52, 52, 52, 0.73);
}

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

.footer__inner {
	position: relative;
	z-index: 1;
	width: 53.75rem;
	margin-left: auto;
	margin-right: 3.5625rem;
	padding: 2.25rem 0 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.footer__main {
	display: flex;
	width: 100%;
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: 1.6875rem;
	width: 100%;
}

.footer__nav {
	width: 100%;
}

.footer__nav-list {
	display: flex;
	gap: 2rem;
}

.footer__nav-item a {
	font-family: var(--second-font-family);
	font-weight: var(--normal);
	font-size: 0.875rem;
	line-height: 1.448;
	letter-spacing: 0.04em;
	color: var(--white);
	transition: opacity 0.3s;
}

.footer__sns {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__line-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	width: 15rem;
	padding: 0.625rem 2.5rem;
	background-color: #06c755;
	transition: opacity 0.3s;
}

.footer__line-btn img {
	width: 1.375rem;
	height: 1.375rem;
	flex-shrink: 0;
}

.footer__line-btn span {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--white);
	white-space: nowrap;
}

.footer__group-card {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	width: 33.75rem;
	padding: 1rem;
	background-color: var(--white);
	border-radius: 0.5rem;
	transition: opacity 0.3s;
}

.footer__group-card-logo {
	width: 8.0625rem;
	height: 5.75rem;
	object-fit: contain;
	flex-shrink: 0;
}

.footer__group-card-text {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #333;
}

.footer__group-card-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.footer__group-card-arrow img {
	width: 1.5rem;
	height: 1.5rem;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 35.0625rem;
	gap: 3.875rem;
}

.footer__legal {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.footer__legal a {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.75rem;
	line-height: 1.2;
	color: var(--white);
	transition: opacity 0.3s;
}

.footer__copyright {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.8125rem;
	line-height: 1.2;
	color: var(--white);
}

.footer__info {
	position: absolute;
	top: 4.1875rem;
	left: 5.9375rem;
	z-index: 1;
	width: 13.8125rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.footer__logo {
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer__logo img {
	width: 10.09375rem;
	height: auto;
}

.footer__info-divider {
	width: 12.5rem;
	height: 0.0625rem;
	background-color: #000;
}

.footer__company-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.footer__company-name {
	font-family: var(--second-font-family);
	font-weight: var(--bold);
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #333;
	text-align: center;
}

.footer__company-address {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #333;
}

.footer__company-address a {
	color: #333;
	transition: opacity 0.3s;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: background-color 0.3s;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 2.25rem;
	height: 4.375rem;
}

.header__logo {
	display: block;
	width: 5.625rem;
	transition: opacity 0.3s;
}

.header__logo img {
	width: 100%;
	height: auto;
}

.header__nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header__menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 5rem;
	height: 4.375rem;
	padding: 0.75rem 1.5rem;
	background-color: #4e4e4e;
	border: none;
	cursor: pointer;
	gap: 0.375rem;
	transition: opacity 0.3s;
}

.header__menu span {
	display: block;
	height: 0.1875rem;
	background-color: var(--white);
	border-radius: 0.125rem;
	transition: transform 0.3s, opacity 0.3s;
	flex-shrink: 0;
}

/* Figma: 上最短・中央やや長・下最長 */

.header__menu span:nth-child(1) {
	width: 70%;
	margin-left: auto;
}

.header__menu span:nth-child(2) {
	width: 100%;
}

.header__menu span:nth-child(3) {
	width: 70%;
	margin-right: auto;
}

.header__menu-label {
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 0.625rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--white);
	margin-top: 0.125rem;
}

.header__contact {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10rem;
	height: 4.375rem;
	padding: 0.75rem 2.25rem;
	background-color: var(--primary);
	transition: opacity 0.3s;
}

.header__contact-text {
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 1.125rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--white);
	white-space: nowrap;
}

.info-card {
	display: flex;
	align-items: center;
	gap: 3rem;
	padding: 2.5rem 3rem;
	background-color: var(--light-gray);
	transition: opacity 0.3s;
}

.info-card--no-link {
	cursor: default;
	opacity: 0.6;
}

.info-card--no-link:hover {
	opacity: 0.6;
}

.info-card__img {
	position: relative;
	width: 15rem;
	aspect-ratio: 240/160;
	flex-shrink: 0;
	overflow: hidden;
}

.info-card__status {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 0.125rem;
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 0.75rem;
	line-height: 1.4;
	color: var(--white);
	z-index: 1;
}

.info-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.info-card__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.info-card__date {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: #777;
}

.info-card__tags {
	display: flex;
	gap: 0.5rem;
}

.info-card__tag {
	display: inline-flex;
	padding: 0.25rem 0.5rem;
	background-color: var(--base-color);
	border-radius: 0.0625rem;
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.75rem;
	line-height: 1;
	letter-spacing: 0.04em;
	color: var(--white);
}

.info-card__info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.info-card__info-item {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--dark);
}

.info-card__info-sep {
	font-family: var(--second-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.2;
	color: var(--dark);
}

.info-card__title {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--base-color);
}

.inner {
	max-width: 83.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.list-filter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.list-filter__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	width: -moz-fit-content;
	width: fit-content;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

.list-filter__text-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	padding: 0 0.5rem 0 1rem;
}

.list-filter__text {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.25rem;
	line-height: 1.8;
	letter-spacing: 0.03em;
	color: #d9d5d5;
	transition: color 0.3s;
	white-space: nowrap;
}

.list-filter__arrow {
	width: 1.5rem;
	aspect-ratio: 1;
	opacity: 0.3;
	transition: opacity 0.3s;
}

.list-filter__arrow img {
	width: 100%;
	height: 100%;
}

.list-filter__btn.is-active .list-filter__arrow {
	opacity: 1;
}

.list-filter__btn.is-active .list-filter__text {
	color: var(--base-color);
}

.list-filter__line {
	width: 100%;
	height: 0.0625rem;
	background-color: #d9d5d5;
	transition: background-color 0.3s;
}

.list-filter__btn.is-active .list-filter__line {
	background-color: var(--base-color);
}

.page-hero {
	position: relative;
	background-color: var(--white);
	overflow: hidden;
	padding-bottom: 1.875rem;
}

.page-hero__img {
	position: absolute;
	top: 0;
	right: 0;
	width: 30rem;
	aspect-ratio: 480/320;
}

.page-hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.page-hero__title {
	padding-top: 7.5rem;
	align-self: stretch;
	gap: -0.5rem;
}

.page-hero__title .section-title__en {
	font-family: var(--base-font-family);
}

.page-hero__title--inter .section-title__en {
	font-family: "Inter", sans-serif;
}

.page-hero__title .section-title__jp {
	font-weight: var(--normal);
	font-size: 2.5rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--dark);
}

.page-hero__breadcrumb {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.page-hero__breadcrumb-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.625rem;
	padding: 0.75rem 0;
}

.page-hero__breadcrumb-item {
	flex-shrink: 0;
	font-family: "Inter", sans-serif;
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.21;
	letter-spacing: 0.05em;
	color: #b8b8b8;
	transition: opacity 0.3s;
}

.page-hero__breadcrumb-item--current {
	color: var(--dark);
}

.page-hero__breadcrumb-sep {
	flex-shrink: 0;
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 0.875rem;
	line-height: 0.6;
	letter-spacing: 0.05em;
	color: #b8b8b8;
}

.page-hero__breadcrumb-line {
	width: 100%;
	height: 0.0625rem;
	background-color: #757575;
}

.pagination {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.pagination__numbers {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.pagination__number {
	font-family: var(--base-font-family);
	font-weight: var(--bold);
	font-size: 1rem;
	line-height: 1;
	color: var(--base-color);
	transition: color 0.3s;
}

.pagination__number--active {
	color: var(--primary);
}

.pagination__dots {
	font-family: "Helvetica", sans-serif;
	font-weight: var(--regular);
	font-size: 0.75rem;
	line-height: 1;
	color: var(--base-color);
}

.pagination__prev,
.pagination__next {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: var(--base-font-family);
	font-weight: var(--bold);
	font-size: 1rem;
	color: var(--base-color);
	transition: color 0.3s;
}

.pagination__prev-arrow,
.pagination__next-arrow {
	width: 0.3125rem;
	height: 0.625rem;
}

.pagination__prev-arrow img,
.pagination__next-arrow img {
	width: 100%;
	height: 100%;
}

.pagination__prev-arrow img {
	transform: rotate(180deg);
}

.section-contact {
	position: relative;
	padding: 2.0625rem;
	background-color: var(--white);
}

.section-contact__border {
	position: relative;
	width: 100%;
	padding: 2.0625rem;
	border: 1.75rem solid #efefef;
	border-radius: 0.25rem;
	overflow: hidden;
}

.section-contact__bg {
	position: absolute;
	top: 0;
	left: 0;
	inset: 0;
}

.section-contact__bg::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, white 0 30%, transparent);
	z-index: 2;
}

.section-contact__bg img {
	width: 100%;
	height: 100%;
	object-position: left;
	object-fit: contain;
	position: relative;
	z-index: 1;
	opacity: 0.65;
}

.section-contact__content {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 5rem 0;
}

.section-contact__text {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1.125rem;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: var(--base-color);
	text-align: center;
}

.section-cta {
	position: relative;
	overflow: hidden;
}

.section-cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.section-cta__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-cta__inner {
	position: relative;
	z-index: 1;
	width: 72.5rem;
	max-width: calc(100% - 2.5rem);
	margin: 0 auto;
	padding: 3.75rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2.625rem;
}

.section-cta__card {
	flex: 1;
	background-color: rgba(255, 255, 255, 0.84);
	padding: 0.9375rem 1rem;
}

.section-cta__card-inner {
	border: 1px solid #c9c9c9;
	padding: 2.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	height: 100%;
}

.section-cta__card-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-cta__card-heading {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--base-color);
	text-align: center;
}

.section-cta__card-text {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--base-color);
	text-align: center;
}

.section-cta__btn {
	margin-top: 0.5rem;
}

.section-title {
	display: flex;
	flex-direction: column;
	gap: -0.75rem;
}

.section-title--center {
	align-items: center;
	text-align: center;
}

.section-title__en {
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--primary);
}

.section-title__en--inter {
	font-family: "Inter", sans-serif;
}

.section-title__jp {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #000;
}

.section-title__jp--white {
	color: var(--white);
}

.section-title__jp--dark {
	color: var(--dark);
}

.work-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding-bottom: 1.875rem;
	background-color: var(--white);
	position: relative;
	overflow: hidden;
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
	border-radius: 0.25rem;
	transition: box-shadow 0.3s;
}

.work-card__img {
	width: 100%;
	aspect-ratio: 1/1;
	overflow: hidden;
}

.work-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.work-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 20.25rem;
}

.work-card__meta {
	display: flex;
	gap: 0.5rem;
}

.work-card__meta span {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 0.75rem;
	line-height: 1.917;
	color: #757575;
}

.work-card__title {
	font-family: var(--base-font-family);
	font-weight: var(--bold);
	font-size: 1rem;
	line-height: 1.4375;
	color: var(--base-color);
}

.work-card__tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.work-card__tag {
	padding: 0.25rem 0.625rem;
	min-width: 4.375rem;
	text-align: center;
	border: 0.0625rem solid var(--primary);
	border-radius: 1.25rem;
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 0.75rem;
	line-height: 1.448;
	color: var(--primary);
}

.work-card__plus {
	position: absolute;
	right: 0.625rem;
	bottom: 0.625rem;
	width: 2.4375rem;
	height: 2.4375rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.work-card__plus img {
	width: 100%;
	height: 100%;
}

.company-message {
	position: relative;
	overflow: hidden;
	padding: 2.65rem 0 0;
}

.company-message__top {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 11.5625rem;
}

.company-message__img-center {
	width: 65%;
	aspect-ratio: 1000/527;
	position: relative;
}

.company-message__img-center img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.company-message__red-accent {
	width: 17.5625rem;
	height: 48.625rem;
	background-color: var(--primary);
}

.company-message__red-small {
	position: absolute;
	margin-top: -3.75rem;
	top: 19.375rem;
	right: 16.7%;
	width: 5.0625rem;
	aspect-ratio: 1;
	background-color: var(--primary);
}

.company-message__line-v {
	width: 2px;
	height: 24.25rem;
	background-color: #c6c4bf;
	position: absolute;
	right: 5.625rem;
	bottom: -1.25rem;
	transform: translateY(50%);
}

.company-message__bottom {
	margin-top: -38.625rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	max-width: 71.25rem;
	margin-inline: auto;
}

.company-message__catchphrase {
	position: absolute;
	bottom: -1.5rem;
	right: 2%;
	z-index: 1;
	font-family: "Inter", sans-serif;
	font-weight: var(--normal);
	font-size: clamp(3rem, 7.2vw, 6.5rem);
	line-height: 1.21;
	letter-spacing: 0.05em;
	color: #665a5a;
}

.company-message__body {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 51.875rem;
	margin-inline: auto;
	margin-top: -12.5rem;
	transform: translateX(1.4375rem);
	padding: 15.1875rem 8.625rem 5.25rem 5.625rem;
	background-color: #f6f6f6;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.company-message__body p {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #000;
}

.company-outline {
	background-color: #faf7f7;
}

.company-outline__inner {
	max-width: 73.5rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	padding: 7.5rem 1.25rem;
}

.company-outline__title .section-title__en {
	font-family: var(--base-font-family);
}

.company-outline__title .section-title__jp {
	font-weight: var(--normal);
	font-size: 3.5rem;
	color: var(--dark);
}

.company-outline__table {
	max-width: 53.5rem;
	margin-inline: auto;
}

.p404 {
	background-color: var(--white);
}

.p404__inner {
	width: 72.5rem;
	max-width: calc(100% - 2.5rem);
	margin: 0 auto;
	padding: 7.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

.p404__title .section-title__jp {
	font-size: 1.75rem;
}

.p404__text {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--base-color);
	text-align: center;
}

.p404__btn {
	margin-top: 0.5rem;
}

.guide-anchor__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1.5rem var(--padding-pc);
}

.guide-anchor__link {
	min-width: 25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	padding: 0.75rem 1.3125rem 0.75rem 1.9375rem;
	border: none;
	border-radius: 0.5rem;
	background-color: #484848;
	color: var(--white);
	transition: opacity 0.3s;
}

.guide-anchor__link-content {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.guide-anchor__icon {
	position: relative;
	width: 4.25rem;
	height: 4.25rem;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.guide-anchor__icon-circle {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background-color: var(--white);
}

.guide-anchor__icon img {
	position: relative;
	z-index: 1;
	width: 3.125rem;
	height: 2.5rem;
	object-fit: contain;
}

.guide-anchor__text {
	font-family: var(--second-font-family);
	font-weight: var(--normal);
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--white);
}

.guide-anchor__arrow {
	width: 0;
	height: 0;
	border-left: 0.5625rem solid transparent;
	border-right: 0.5625rem solid transparent;
	border-top: 0.6875rem solid var(--white);
	flex-shrink: 0;
}

.guide-section-heading {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
}

.guide-section-heading__bar {
	display: block;
	width: 0.375rem;
	align-self: stretch;
	background-color: var(--primary);
}

.guide-section-heading__text {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--primary);
}

.guide-separator {
	height: 0.0625rem;
	background-color: #757575;
	margin: 0;
}

.guide-flow {
	background-color: var(--white);
	padding: 3.75rem 0 3.75rem;
}

.guide-flow__inner {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.guide-flow__body {
	display: flex;
	gap: 7.5rem;
}

.guide-flow__nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 15.125rem;
	flex-shrink: 0;
	position: sticky;
	top: 6.25rem;
	align-self: flex-start;
}

.guide-flow__nav-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s;
}

.guide-flow__nav-num {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.5rem;
	line-height: 1.5;
	color: #c9c9c9;
	transition: color 0.3s;
}

.guide-flow__nav-label {
	display: flex;
	flex-direction: column;
}

.guide-flow__nav-text {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.5rem;
	line-height: 1.5;
	color: #c9c9c9;
	white-space: nowrap;
	transition: color 0.3s;
}

.guide-flow__nav-line {
	display: none;
	width: 100%;
	height: 0.0625rem;
	background-color: var(--base-color);
}

.guide-flow__nav-item.is-active .guide-flow__nav-num {
	color: var(--base-color);
}

.guide-flow__nav-item.is-active .guide-flow__nav-text {
	color: var(--base-color);
}

.guide-flow__nav-item.is-active .guide-flow__nav-line {
	display: block;
}

.guide-flow__cards {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	flex: 1;
	min-width: 0;
	padding-bottom: 2.5rem;
}

.guide-flow__card {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	background-color: #f1f1f1;
	padding: 3rem 4rem 3rem 5rem;
}

.guide-flow__card-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.guide-flow__card-step {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.guide-flow__card-step-label {
	font-family: "Futura Lt BT", "Futura", "Jost", var(--en-font-family);
	font-weight: var(--regular);
	font-size: 2.6875rem;
	line-height: 1;
	color: #b7b7b7;
}

.guide-flow__card-step-num {
	font-family: "Futura Lt BT", "Futura", "Jost", var(--en-font-family);
	font-weight: var(--regular);
	font-size: 5.3125rem;
	line-height: 1;
	color: #b7b7b7;
}

.guide-flow__card-icon {
	width: 9.625rem;
	height: 9.625rem;
	border-radius: 50%;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.guide-flow__card-icon img {
	width: 6.3125rem;
	height: 5.5625rem;
	object-fit: contain;
}

.guide-flow__card-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	z-index: 4;
	min-width: 0;
}

.guide-flow__card-title {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.75rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #222;
}

.guide-flow__card-list {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	width: 100%;
}

.guide-flow__card-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #474747;
}

.guide-flow__card-list-note {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #be0d34;
}

.guide-flow__card-list li::before {
	content: "";
	display: block;
	width: 0.25rem;
	margin-top: 0.5lh;
	transform: translateY(-50%);
	height: 0.25rem;
	border-radius: 50%;
	background-color: #474747;
	flex-shrink: 0;
}

.guide-flow__card-list-note {
	color: var(--primary);
}

.guide-flow__card-list-note::before {
	display: none;
}

.guide-flow__card-note {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.guide-flow__card-note-icon {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	background-color: #484848;
	-webkit-mask-image: url("../images/common/icon-arrow-down.svg");
	mask-image: url("../images/common/icon-arrow-down.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transform: rotate(-90deg);
}

.guide-flow__card-note-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.5rem;
	background-color: var(--white);
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #484848;
}

.guide-flow__arrow {
	width: 0;
	height: 0;
	border-left: 1.25rem solid transparent;
	border-right: 1.25rem solid transparent;
	border-top: 0.9375rem solid var(--base-color);
	align-self: center;
}

.guide-faq {
	background-color: var(--white);
}

.guide-faq__inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding: 3.75rem 0 6.25rem;
}

.guide-faq__body {
	display: flex;
	gap: 2.5rem;
}

.guide-faq__sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 16.625rem;
	flex-shrink: 0;
	background-color: #f1f1f1;
	padding: 2.5rem 1rem;
	position: sticky;
	top: 6.25rem;
	align-self: flex-start;
}

.guide-faq__sidebar-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s;
}

.guide-faq__sidebar-btn::before {
	content: "";
	display: block;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background-color: var(--base-color);
	flex-shrink: 0;
	transition: background-color 0.3s;
}

.guide-faq__sidebar-btn.is-active::before {
	background-color: var(--primary);
}

.guide-faq__sidebar-text {
	font-family: var(--second-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.6;
	color: #b7b7b7;
	white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
	border-bottom: 0.0625rem solid transparent;
	transition: color 0.3s, border-color 0.3s;
}

.guide-faq__sidebar-btn.is-active .guide-faq__sidebar-text {
	color: var(--base-color);
	border-bottom-color: #474747;
}

.guide-faq__list {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	flex: 1;
	min-width: 0;
}

.guide-faq__category-heading {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.guide-faq__category-line {
	display: block;
	width: 0.25rem;
	height: 1.75rem;
	background-color: var(--base-color);
}

.guide-faq__category-title {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.5rem;
	line-height: 1.5;
	color: var(--base-color);
}

.guide-faq__item {
	margin-bottom: 0.75rem;
}

.guide-faq__question {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	background-color: #f1f1f1;
	border: none;
	border-radius: 0.625rem;
	cursor: pointer;
	text-align: left;
	transition: opacity 0.3s;
}

.guide-faq__q-label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background-color: var(--base-color);
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.125;
	color: var(--white);
	flex-shrink: 0;
}

.guide-faq__q-text {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.7;
	color: #222;
	flex: 1;
}

.guide-faq__q-icon {
	position: relative;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.guide-faq__q-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0.125rem;
	background-color: var(--base-color);
	transform: translateY(-50%);
	transition: transform 0.3s;
}

.guide-faq__q-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0.125rem;
	background-color: var(--base-color);
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.3s;
}

.guide-faq__item.is-open .guide-faq__q-icon::after {
	transform: translateY(-50%) rotate(0deg);
}

.guide-faq__answer {
	display: none;
	overflow: hidden;
}

.guide-faq__answer-inner {
	display: flex;
	gap: 1.5rem;
	padding: 1rem 1.625rem;
}

.guide-faq__a-label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background-color: var(--primary);
	font-family: var(--en-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.125;
	color: var(--white);
	flex-shrink: 0;
}

.guide-faq__a-text {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: #222;
}

.info-detail {
	background-color: var(--white);
	padding: 11.25rem 0 6.25rem;
}

.info-detail__inner {
	width: 75.625rem;
	margin: 0 auto;
	padding: 0 var(--padding-pc);
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.info-detail__article {
	width: 55.25rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.info-detail__head {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.info-detail__category {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 7.8125rem;
	padding: 0.25rem 0.75rem;
	background-color: var(--base-color);
	font-family: var(--second-font-family);
	font-weight: var(--normal);
	font-size: 0.75rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--white);
	align-self: flex-start;
}

.info-detail__title {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--base-color);
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--gray);
	position: relative;
}

.info-detail__title::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 15rem;
	background-color: var(--primary);
}

.info-detail__date {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--dark);
	margin-bottom: 1.125rem;
}

.info-detail__eyecatch {
	width: 100%;
	aspect-ratio: 884/432;
	overflow: hidden;
	margin-bottom: 1.125rem;
}

.info-detail__eyecatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-detail__toc {
	background-color: #efefef;
	padding: 1.25rem;
	margin-bottom: 2.5rem;
}

.info-detail__toc-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.info-detail__toc-title {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--primary);
}

.info-detail__toc-close {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--base-color);
}

.info-detail__toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.info-detail__toc-item {
	border-bottom: 1px solid #d9d5d5;
}

.info-detail__toc-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0 1rem;
	min-height: 2.75rem;
}

.info-detail__toc-item--no-children .info-detail__toc-row {
	padding: 0.5rem 1rem;
}

.info-detail__toc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 0.8125rem;
	transition: transform 0.3s;
	aspect-ratio: 9/5;
	-webkit-mask-image: url("../images/common/icon-arrow-bottom.svg");
	mask-image: url("../images/common/icon-arrow-bottom.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	background-color: var(--base-color);
}

.info-detail__toc-item.is-open .info-detail__toc-icon {
	transform: rotate(180deg);
}

.info-detail__toc-link {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--base-color);
	text-decoration: none;
	flex: 1;
	min-width: 0;
}

.info-detail__toc-children {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: none;
}

.info-detail__toc-subitem {
	border-top: none;
}

.info-detail__toc-subitem .info-detail__toc-link {
	display: block;
	padding: 0.5rem 1rem 0.5rem 2.5rem;
}

.info-detail__content {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--dark);
}

.info-detail__content h2 {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.75rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--base-color);
	border-bottom: 0.0625rem solid var(--primary);
	margin: 2.5rem 0 1.25rem;
}

.info-detail__content h3 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--base-color);
	margin: 2.5rem 0 1rem;
}

.info-detail__content h3::before {
	content: "";
	display: block;
	width: 0.25rem;
	height: 2.5rem;
	background-color: var(--primary);
	flex-shrink: 0;
}

.info-detail__content .wp-block-table {
	margin: 1rem 0;
}

.info-detail__content p {
	margin-bottom: 1rem;
}

.info-detail__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.info-detail__content th {
	background-color: #e3e3e3;
	border: 0.0625rem solid #c3c3c3;
	padding: 0.5rem 0.75rem;
	font-weight: var(--normal);
	font-size: 1rem;
	text-align: center;
}

.info-detail__content td {
	border: 0.0625rem solid #c3c3c3;
	padding: 0.5rem 0.75rem;
	font-size: 1rem;
	text-align: center;
}

.info-detail__content td:first-of-type {
	background-color: #c3c3c3;
}

.info-detail__content img {
	max-width: 100%;
	height: auto;
}

.info-detail__cta {
	display: flex;
	justify-content: center;
	padding-top: 1.25rem;
}

.info-list {
	background-color: var(--white);
}

.info-list__inner {
	width: 80rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.5rem;
	padding: 2.5rem 0 7.5rem;
}

.info-list__posts {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
}

.privacy {
	background-color: var(--white);
}

.privacy__inner {
	padding: 7.5rem 0 6.25rem;
}

.privacy__content {
	max-width: 72.5rem;
	margin: 0 auto;
	background-color: var(--white);
	border-radius: 1.25rem;
	padding: 2.5rem 0.625rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.privacy__content > * {
	max-width: 55.25rem;
	margin-inline: auto;
	width: 100%;
}

.privacy__h2 {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #333;
	padding-bottom: 1.125rem;
	border-bottom: 1px solid #757575;
	position: relative;
}

.privacy__h2::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 15rem;
	height: 0.25rem;
	background-color: #be0d34;
	bottom: 0;
}

.privacy__h3 {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.75rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #333;
	padding-bottom: 0.125rem;
	border-bottom: 1px solid var(--primary);
}

.privacy__article {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.privacy__item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.privacy__item-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

.privacy__item-bar {
	display: block;
	width: 0.25rem;
	height: 2.5rem;
	background-color: var(--primary);
	flex-shrink: 0;
	align-self: stretch;
	max-height: 2.5rem;
}

.privacy__content p,
.privacy__detail p {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #333;
}

.privacy__content p strong {
	font-weight: var(--normal);
}

.privacy__note {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #333;
}

.privacy__public {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-top: 1.25rem;
	padding-top: 2.5rem;
}

.privacy__detail {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-left: 1rem;
}

.top-fv {
	position: relative;
	height: 50.4375rem;
	overflow: hidden;
}

.top-fv__slider {
	position: absolute;
	inset: 0;
	height: 100%;
}

.top-fv__slider::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.45);
	z-index: 1;
	pointer-events: none;
}

.top-fv__slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-fv__content {
	position: absolute;
	left: 5.875rem;
	bottom: 14.25rem;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.top-fv__title {
	font-family: "Zen Kaku Gothic Antique", var(--base-font-family);
	font-weight: var(--regular);
	font-size: 4rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #f2f2f2;
}

.top-fv__subtitle {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1.5rem;
	line-height: 1.6;
	color: var(--white);
}

.top-fv__banner {
	position: absolute;
	right: 2.25rem;
	bottom: 2.0625rem;
	z-index: 1;
	width: 18.75rem;
	background-color: var(--white);
	border-radius: 0.25rem;
	overflow: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.top-fv__banner.is-closed {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.top-fv__banner-close {
	position: absolute;
	right: 0.4375rem;
	top: 0.4375rem;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.top-fv__banner-close img {
	width: 100%;
	height: 100%;
	display: block;
}

.top-fv__banner-inner {
	display: flex;
	flex-direction: column;
	gap: 0.5625rem;
	padding: 1.5rem;
}

.top-fv__banner-head {
	display: flex;
	align-items: center;
	gap: 0.5625rem;
	width: 100%;
}

.top-fv__banner-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.125rem;
	padding: 0.125rem 1rem;
	background-color: var(--primary);
	border-radius: 1.25rem;
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.75rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--white);
	flex-shrink: 0;
}

.top-fv__banner-badge-icon {
	display: flex;
	width: 1rem;
	height: 1rem;
}

.top-fv__banner-badge-icon img {
	width: 100%;
	height: 100%;
	display: block;
}

.top-fv__banner-divider {
	flex: 1;
	min-width: 0;
	height: 0.0625rem;
	background-color: #d9d5d5;
}

.top-fv__banner-title {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 0.75rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #000;
	word-break: break-all;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.top-fv__banner-meta {
	display: flex;
	align-items: center;
	gap: 0.4375rem;
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.75rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #000;
}

.top-fv__banner-btn {
	font-size: 0.875rem;
	padding: 0.625rem 2.5rem;
	letter-spacing: 0.05em;
}

.top-works {
	position: relative;
	background-color: var(--light-gray);
	overflow: hidden;
}

.top-works__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 43.625rem;
	aspect-ratio: 698/344;
	opacity: 0.6;
}

.top-works__bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-works__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4.1875rem;
	max-width: 73.5rem;
	width: 100%;
	margin: 0 auto;
	padding: 7.5rem 1.25rem;
}

.top-works__title {
	width: 100%;
}

.top-works__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 3rem;
	column-gap: 3rem;
	row-gap: 4.1875rem;
	width: 100%;
}

.top-works__btn {
	display: flex;
	justify-content: center;
}

.top-jt {
	position: relative;
	background-color: var(--white);
	overflow: hidden;
	margin-bottom: 2rem;
}

.top-jt__inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 2.875rem;
	padding: 4.25rem 0 0 15.4%;
}

.top-jt__logo {
	width: clamp(12.5rem, 24vw, 21.8125rem);
	flex-shrink: 0;
	padding: 5rem 0 7.5rem;
}

.top-jt__logo img {
	width: 100%;
	height: auto;
}

.top-jt__card {
	position: relative;
	flex: 1;
	min-width: 0;
}

.top-jt__card-bg {
	position: absolute;
	inset: 0;
	background-color: #747474;
}

.top-jt__card-border {
	position: absolute;
	top: 1.25rem;
	left: 1.625rem;
	right: 0;
	bottom: 1.5625rem;
	border-left: 1px solid var(--white);
	border-top: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
}

.top-jt__card-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding: 3.75rem 2.5rem 3.75rem 5.125rem;
}

.top-jt .section-title__en {
	font-size: 1.25rem;
	color: var(--white);
}

.top-jt__heading {
	font-size: 3.5rem;
	font-weight: var(--normal);
	font-family: var(--en-font-family);
	letter-spacing: 0.05em;
}

.top-jt__btn {
	align-self: flex-start;
}

.top-jt__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 46rem;
}

.top-jt__text p {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1.125rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--white);
}

.top-jt__bg {
	position: relative;
	z-index: 1;
	display: flex;
	margin-top: -3.75rem;
}

.top-jt__bg-left {
	width: 20%;
	flex-grow: 1;
	height: 36.375rem;
	position: relative;
	z-index: 2;
}

.top-jt__bg-left img {
	width: 65vw;
	max-width: unset;
	height: 100%;
	object-fit: cover;
}

.top-jt__bg-right {
	width: 65vw;
	height: 36.75rem;
	opacity: 0.2;
	position: relative;
	z-index: 1;
	margin-top: 3.75rem;
}

.top-jt__bg-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-mask-image: linear-gradient(to bottom, black 0% 80%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 0% 80%, transparent 100%);
}

.top-about {
	position: relative;
	background-color: var(--white);
	overflow: hidden;
}

.top-about__bg-left {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	background-color: var(--light-gray);
}

.top-about__deco {
	position: absolute;
	background-color: var(--primary);
}

.top-about__deco--1 {
	top: 20.3125rem;
	right: 0;
	width: 23vw;
	max-width: 25rem;
	aspect-ratio: 1;
}

.top-about__deco--2 {
	top: 39.75rem;
	left: 25.3125rem;
	width: 7.8125rem;
	height: 7.8125rem;
}

.top-about__deco--3 {
	bottom: 0rem;
	left: 0;
	width: 7.8125rem;
	height: 7.8125rem;
}

.top-about__deco--4 {
	top: 9.1875rem;
	right: 14.3125rem;
	width: 3.125rem;
	height: 3.0625rem;
}

.top-about__line-v {
	position: absolute;
	top: 30.125rem;
	left: 64.3125rem;
	width: 0.125rem;
	height: 26.75rem;
	background-color: #c6c4bf;
}

.top-about__line-h {
	position: absolute;
	top: 4.75rem;
	left: -12.4375rem;
	width: 32rem;
	height: 0.0625rem;
	background-color: #757575;
}

.top-about__upper {
	max-width: 90rem;
	margin-inline: auto;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	padding-top: 4.75rem;
}

.top-about__header {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	flex: 1;
	min-width: 0;
	padding: 9.375rem 1.25rem 0 12.7%;
}

.top-about__hero {
	position: relative;
	width: 54%;
	max-width: 48.25rem;
	aspect-ratio: 772/467;
	flex-shrink: 0;
	margin-right: 3.3%;
}

.top-about__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-about__sub-img {
	position: absolute;
	top: 43.625rem;
	left: 28.75rem;
	width: 23.75rem;
	aspect-ratio: 380/253;
	z-index: 2;
}

.top-about__sub-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-about__section-title {
	width: 100%;
}

.top-about__subtitle {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1.125rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--base-color);
}

.top-about__cards {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 75rem;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 6.25rem;
	margin-top: 31.875rem;
	padding-bottom: 6.25rem;
}

.top-about__card {
	display: flex;
	gap: 4rem;
}

.top-about__card--reverse {
	flex-direction: row-reverse;
}

.top-about__card-img {
	width: 45rem;
	aspect-ratio: 720/480;
	flex-shrink: 0;
}

.top-about__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-about__card-body {
	display: flex;
	flex-direction: column;
	gap: 0.5625rem;
	min-width: 0;
}

.top-about__card-num {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 2.8125rem;
}

.top-about__card-number {
	font-family: var(--script-font-family);
	font-weight: var(--regular);
	font-size: 4rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #d8d8d8;
}

.top-about__card-label {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.top-about__card-label-line {
	width: 1.375rem;
	height: 0.0625rem;
	background-color: #757575;
}

.top-about__card-label-text {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1.125rem;
	line-height: 1.2;
	color: #757575;
}

.top-about__card-title {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 1.5rem;
	line-height: 1.5;
	color: var(--base-color);
}

.top-about__card-desc {
	background-color: var(--light-gray);
	padding: 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 23.625rem;
}

.top-about__card-desc--white {
	background-color: var(--white);
}

.top-about__card-desc p {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 0.9375rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--base-color);
}

.top-works__title .section-title__jp {
	color: var(--base-color);
}

.top-jt__section-title .section-title__en {
	color: var(--white);
	font-size: 1.5rem;
}

.work-single .work-detail__breadcrumb-wrap {
	margin-bottom: 7.5rem;
}

.work-single .page-hero__breadcrumb-list {
	justify-content: flex-start;
}

.work-detail-hero {
	background-color: #f4f4f4;
	border-radius: 0 0 2.5rem 2.5rem;
	overflow: hidden;
}

.work-detail-hero__inner {
	width: 72.5rem;
	max-width: calc(100% - 2.5rem);
	margin: 0 auto;
	min-height: 15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 0;
}

.work-detail-hero__title {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #000;
	text-align: center;
}

.work-detail__breadcrumb-wrap {
	width: 80rem;
	max-width: calc(100% - 2.5rem);
	margin: 0 auto;
	padding-top: 1.5rem;
}

.work-detail__nav-btn .list-filter__text {
	color: var(--base-color);
}

.work-detail__nav-btn .list-filter__arrow {
	opacity: 1;
}

.work-detail__nav-btn .list-filter__line {
	background-color: var(--base-color);
}

.work-detail {
	background-color: var(--white);
}

.work-detail__inner {
	width: 80rem;
	margin: 0 auto;
	padding: 6.25rem 0 7.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
}

.work-detail__section {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2.5rem;
}

.work-detail__h3 {
	max-width: 53.5rem;
	width: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.75rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #be0d38;
	position: relative;
}

.work-detail__h3::before {
	content: "";
	position: absolute;
	right: calc(100% + 1rem);
	display: block;
	width: 12.5rem;
	height: 0.0625rem;
	background-color: #757575;
	flex-shrink: 0;
}

.work-detail__gallery {
	display: flex;
	gap: 2.5rem;
	max-width: 75rem;
	width: 100%;
	margin-inline: auto;
}

.work-detail__gallery .swiper-slide {
	align-self: center;
}

.work-detail__gallery-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.work-detail__gallery-btn {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: none;
	padding: 0;
	background-color: #484848;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
}

.work-detail__gallery-btn::before {
	content: "";
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
}

.work-detail__gallery-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.work-detail__gallery-btn--prev::before {
	transform: rotate(-135deg);
	margin-left: 0.1875rem;
}

.work-detail__gallery-btn--next::before {
	transform: rotate(45deg);
	margin-right: 0.1875rem;
}

.work-detail__gallery-thumbs {
	width: 32rem;
	padding: 2.5rem 1.5rem;
	background-color: #f6f6f6;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	align-content: start;
}

.work-detail__thumb {
	aspect-ratio: 144/96;
	cursor: pointer;
	overflow: hidden;
}

.work-detail__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s;
}

.work-detail__thumb.is-active {
	opacity: 0.6;
}

.work-detail__gallery-main {
	flex: 1;
	overflow: hidden;
}

.work-detail__gallery-main img {
	width: 100%;
	height: auto;
}

.work-detail__floorplan {
	max-width: 53.5rem;
	margin-inline: auto;
}

.work-detail__floorplan img {
	width: 100%;
	height: auto;
}

.work-detail__concept-wrap {
	max-width: 56.625rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4rem;
	padding: 3rem var(--padding-pc);
}

.work-detail__concept-box {
	width: 100%;
	margin-top: -1.25rem;
	max-width: 53.5rem;
	width: 100%;
	margin-inline: auto;
	background-color: #f1f1f1;
	display: flex;
	justify-content: center;
	padding: 1.5rem;
}

.work-detail__concept-text {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #000;
	text-align: center;
}

.work-detail__points {
	margin-top: -1.25rem;
	width: 100%;
	background-color: #f1f1f1;
	padding: 1rem 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.work-detail__point {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	width: 100%;
}

.work-detail__point-num {
	font-family: var(--base-font-family);
	font-weight: var(--regular);
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--base-color);
	flex-shrink: 0;
}

.work-detail__point-text {
	font-family: var(--base-font-family);
	font-weight: var(--normal);
	font-size: 1.5rem;
	line-height: 1.5;
	color: var(--base-color);
}

.work-detail__location {
	width: 100%;
}

.work-detail__location iframe {
	width: 100%;
	height: 25rem;
	border: none;
}

.work-detail__data-table {
	max-width: 53.5rem;
	width: 100%;
	margin-inline: auto;
}

.work-recommend {
	background-color: #f4f2f2;
}

.work-recommend__inner {
	width: 73.5rem;
	margin: 0 auto;
	padding: 5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}

.work-recommend__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	width: 100%;
}

.works-list {
	background-color: var(--white);
	padding: 2.5rem 0 7.5rem;
}

.works-list__inner {
	width: 76.625rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.8125rem;
	padding: 0 var(--padding-pc) 0;
}

.works-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 3rem;
	column-gap: 3rem;
	row-gap: 4.25rem;
	width: 100%;
}

.works-list__pagination {
	margin-top: 1.25rem;
}

@media (any-hover: hover) {

.breadcrumb__item a:hover {
	opacity: 0.7;
}

.btn:hover {
	opacity: 0.7;
}

.contact-form .wpcf7-submit:hover {
	color: #000;
	background: #fff;
	height: -moz-fit-content;
	height: fit-content;
}

.contact-form .contact-form__row--submit:hover::after {
	filter: brightness(0);
}

.drawer-menu__close:hover {
	opacity: 0.7;
}

.drawer-menu__item a:hover {
	opacity: 0.7;
}

.drawer-menu__contact:hover {
	opacity: 0.7;
}

.footer__nav-item a:hover {
	opacity: 0.7;
}

.footer__line-btn:hover {
	opacity: 0.7;
}

.footer__group-card:hover {
	opacity: 0.7;
}

.footer__legal a:hover {
	opacity: 0.7;
}

.footer__company-address a:hover {
	opacity: 0.7;
}

.header__logo:hover {
	opacity: 0.7;
}

.header__menu:hover {
	opacity: 0.7;
}

.header__contact:hover {
	opacity: 0.7;
}

a.info-card:hover {
	opacity: 0.8;
}

.list-filter__btn:hover {
	opacity: 0.7;
}

.page-hero__breadcrumb-item:hover {
	opacity: 0.7;
}

.pagination__number:hover {
	color: var(--primary);
}

.pagination__prev:hover,
.pagination__next:hover {
	color: var(--primary);
}

.work-card:hover {
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
}

.work-card:hover .work-card__img img {
	transform: scale(1.05);
}

.guide-anchor__link:hover {
	opacity: 0.7;
}

.guide-faq__question:hover {
	opacity: 0.7;
}

.info-detail__toc-close:hover {
	text-decoration: underline;
}

.info-detail__toc-link:hover {
	text-decoration: underline;
}

.top-fv__banner-close:hover {
	opacity: 1;
}

.work-detail__gallery-btn:hover {
	opacity: 0.7;
}

.work-detail__thumb:hover img {
	opacity: 0.7;
}

}

@media only screen and (min-width: 768px) {

.sp {
	display: none !important;
}

}

@media (min-width: 768px) {

html {
	font-size: 1.1428571429vw;
}

}

@media (min-width: 1400px) {

html {
	font-size: 16px;
}

}

@media only screen and (max-width: 767px) {

.pc {
	display: none !important;
}

}

@media screen and (max-width: 767px) {

a[href^="tel:"] {
	pointer-events: all;
}

.btn {
	width: 12.5rem;
	padding: 0.625rem 1.875rem;
	font-size: 0.875rem;
}

.contact-form .need {
	padding-right: 5rem;
}

.contact-form .optional {
	padding-right: 5rem;
}

.contact-form .wpcf7-submit {
	max-width: unset;
	font-size: 0.9375rem;
}

.contact-form .contact-form__row--submit {
	width: unset;
}

.contact-form input[type=checkbox] + span::after {
	left: 2px;
}

.data-table__row {
	flex-direction: column;
	gap: unset;
}

.data-table__label {
	width: 100%;
	font-size: 0.875rem;
	padding: 0.75rem 0 0;
	border-bottom: unset;
	border-top: 1px solid #ddd;
}

.data-table__value {
	width: 100%;
	font-size: 0.875rem;
	padding: 0 0 0.75rem;
	border-top: unset;
}

.drawer-menu {
	width: 100%;
}

.drawer-menu__inner {
	padding: 1rem 1.25rem 5rem;
}

.drawer-menu__top {
	padding-left: 0;
}

.drawer-menu__list {
	width: 100%;
}

.drawer-menu__divider {
	width: 100%;
}

.footer__bg {
	left: 0;
}

.footer__inner {
	width: 100%;
	margin: 0;
	padding: 2.5rem var(--padding-sp);
	gap: 2.5rem;
}

.footer__nav-list {
	flex-direction: column;
	gap: 1rem;
}

.footer__nav-item a {
	font-size: 0.8125rem;
}

.footer__sns {
	align-items: stretch;
}

.footer__line-btn {
	width: 100%;
}

.footer__group-card {
	flex-direction: column;
	gap: 0.375rem;
}

.footer__group-card {
	width: 100%;
}

.footer__group-card-arrow {
	align-self: flex-end;
}

.footer__bottom {
	width: 100%;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.footer__info {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	padding: 1.25rem var(--padding-sp) 1.25rem;
	background-color: #f9f9f9;
}

.header__inner {
	padding-left: 1rem;
	height: 3.75rem;
}

.header__logo {
	width: 4.375rem;
}

.header__menu {
	width: 3.75rem;
	height: 3.75rem;
	padding: 0.75rem 1rem;
	gap: 0.3125rem;
}

.header__menu span {
	height: 0.125rem;
}

.header__menu-label {
	font-size: 0.5rem;
	margin-top: 0.0625rem;
}

.header__contact {
	width: 6.25rem;
	height: 3.75rem;
	padding: 0.75rem 1rem;
}

.header__contact-text {
	font-size: 0.875rem;
}

.info-card {
	flex-direction: column;
	gap: 1rem;
	padding: 1.25rem;
}

.info-card__img {
	width: 100%;
	aspect-ratio: 16/9;
}

.info-card__body {
	width: 100%;
}

.info-card__title {
	font-size: 1rem;
}

.inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.list-filter {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.list-filter__btn {
	width: 100%;
}

.list-filter__text-wrap {
	gap: 0.625rem;
	padding: 0 0.5rem 0 0.75rem;
}

.list-filter__text {
	font-size: 1rem;
}

.list-filter__arrow {
	width: 1rem;
}

.page-hero {
	padding-bottom: 0;
}

.page-hero__img {
	top: unset;
	bottom: 0;
	width: 15rem;
	aspect-ratio: 240/160;
}

.page-hero__inner {
	gap: 0.5rem;
	padding: 0.5rem var(--padding-sp) 0;
}

.page-hero__title {
	padding-top: 5rem;
}

.page-hero__title .section-title__en {
	font-size: 0.875rem;
}

.page-hero__title .section-title__jp {
	font-size: 1.75rem;
	line-height: 1.6;
}

.page-hero__breadcrumb {
	width: 100%;
	gap: unset;
}

.page-hero__breadcrumb-list {
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.section-contact {
	padding: 0.625rem 1.25rem;
}

.section-contact__border {
	padding: 1.25rem;
}

.section-contact__bg img {
	object-position: center;
	object-fit: cover;
	opacity: 0.4;
}

.section-contact__content {
	padding: 0;
	gap: 0.75rem;
}

.section-contact__text {
	font-size: 0.875rem;
}

.section-cta__inner {
	flex-direction: column;
	padding: 2.5rem 0;
	gap: 1.25rem;
}

.section-cta__card {
	width: 100%;
	padding: 0.75rem;
}

.section-cta__card-inner {
	padding: 1.75rem 1rem;
	gap: 1rem;
}

.section-cta__card-heading {
	font-size: 1.5rem;
}

.section-cta__card-text {
	font-size: 0.875rem;
}

.section-title__jp {
	font-size: 1.5rem;
}

.work-card__body {
	width: calc(100% - 2rem);
}

.company-message {
	padding: 2.5rem 0;
}

.company-message__img-center {
	width: 100%;
	margin-left: 0;
	aspect-ratio: 16/9;
}

.company-message__red-accent {
	height: 31.25rem;
}

.company-message__red-small {
	display: none;
}

.company-message__line-v {
	bottom: 0;
	top: 90%;
	transform: unset;
	right: 0.9375rem;
}

.company-message__bottom {
	margin-top: -25rem;
}

.company-message__catchphrase {
	font-size: 2.75rem;
	bottom: -0.625rem;
	right: unset;
	left: 5%;
}

.company-message__body {
	width: calc(100% - 1.25rem);
	margin-top: -3.75rem;
	margin-left: 1.25rem;
	padding: 7.5rem 1rem 2.5rem;
	transform: unset;
}

.company-message__body p {
	letter-spacing: 0.02em;
}

.company-outline__inner {
	padding: 3.75rem var(--padding-sp);
	gap: 2rem;
}

.company-outline__title .section-title__jp {
	font-size: 2rem;
}

.p404__inner {
	padding: 3.75rem 0;
	gap: 1.75rem;
}

.p404__title .section-title__jp {
	font-size: 1.25rem;
}

.p404__text {
	font-size: 0.875rem;
	text-align: left;
}

.guide-anchor__inner {
	gap: 0.5rem;
	padding: 1rem var(--padding-sp);
}

.guide-anchor__link {
	min-width: unset;
	flex: 1;
	gap: unset;
	padding: 0.75rem 0.5rem;
}

.guide-anchor__link-content {
	gap: 0.25rem;
	flex: 1;
	justify-content: flex-start;
}

.guide-anchor__icon {
	width: 2rem;
	height: 2rem;
	padding: 0.25rem;
}

.guide-anchor__icon img {
	width: 100%;
}

.guide-anchor__text {
	font-size: 0.875rem;
}

.guide-anchor__arrow {
	border-left: 0.4375rem solid transparent;
	border-right: 0.4375rem solid transparent;
	border-top: 0.5rem solid var(--white);
}

.guide-section-heading__text {
	font-size: 1.5rem;
}

.guide-flow {
	padding: 1.5rem 0 1.5rem;
}

.guide-flow__inner {
	gap: 1rem;
}

.guide-flow__body {
	flex-direction: column;
	gap: 2rem;
}

.guide-flow__nav {
	position: static;
	flex-direction: column;
	width: 100%;
	gap: 0.25rem;
	padding-left: 1.5rem;
}

.guide-flow__nav-num {
	font-size: 1rem;
}

.guide-flow__nav-text {
	font-size: 1rem;
}

.guide-flow__cards {
	gap: 0.5rem;
	padding-bottom: 0;
}

.guide-flow__card {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.25rem;
	padding: 2rem 1.5rem;
}

.guide-flow__card-left {
	position: relative;
	z-index: 1;
	width: 100%;
	justify-content: space-between;
}

.guide-flow__card-step-label {
	font-size: 1.75rem;
}

.guide-flow__card-step-num {
	font-size: 4rem;
}

.guide-flow__card-icon {
	transform: translateY(1.25rem);
	width: 7.5rem;
	height: 7.5rem;
}

.guide-flow__card-icon img {
	aspect-ratio: 65/57;
	width: 4.5625rem;
}

.guide-flow__card-content {
	gap: 0.1875rem;
	width: 100%;
}

.guide-flow__card-title {
	margin-top: -1rem;
	font-size: 1.75rem;
}

.guide-flow__card-note-badge {
	font-size: 0.8125rem;
}

.guide-flow__arrow {
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-top: 0.75rem solid var(--base-color);
}

.guide-faq__inner {
	padding: 1.5rem var(--padding-sp) 2.5rem;
}

.guide-faq__body {
	flex-direction: column;
	gap: 1.5rem;
}

.guide-faq__sidebar {
	position: static;
	flex-direction: column;
	width: 100%;
	gap: 1rem;
	padding: 1.25rem 1rem;
}

.guide-faq__list {
	gap: 3rem;
}

.guide-faq__category-heading {
	margin-bottom: 1.25rem;
}

.guide-faq__category-title {
	font-size: 1.125rem;
}

.guide-faq__question {
	padding: 0.75rem 1rem;
	gap: 0.75rem;
}

.guide-faq__q-text {
	font-size: 0.875rem;
}

.guide-faq__answer-inner {
	gap: 0.75rem;
	padding: 0.75rem 1rem;
}

.guide-faq__a-text {
	font-size: 0.875rem;
}

.info-detail {
	padding: 5rem 0 3.75rem;
}

.info-detail__inner {
	width: 100%;
	padding: 2.5rem var(--padding-sp);
	gap: 2.5rem;
	overflow: visible;
}

.info-detail .page-hero__breadcrumb {
	overflow: hidden;
}

.info-detail .page-hero__breadcrumb-list {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	padding: 0.75rem 0;
}

.info-detail__article {
	width: 100%;
}

.info-detail__title {
	font-size: 1.375rem;
	padding-bottom: 0.75rem;
}

.info-detail__title::after {
	width: 7.5rem;
}

.info-detail__date {
	margin-bottom: 0.75rem;
}

.info-detail__eyecatch {
	margin-bottom: 0.75rem;
}

.info-detail__toc {
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.info-detail__toc-row {
	padding: 0 0.75rem;
	min-height: 2.5rem;
}

.info-detail__toc-item--no-children .info-detail__toc-row {
	padding: 0.375rem 0.75rem;
}

.info-detail__toc-subitem .info-detail__toc-link {
	padding: 0.375rem 0.75rem 0.375rem 1.75rem;
}

.info-detail__content h2 {
	font-size: 1.375rem;
}

.info-detail__content h3 {
	margin: 1.5rem 0 0.75rem;
}

.info-detail__content h3::before {
	width: 0.1875rem;
	height: 1.5rem;
}

.archive-info .section-title__jp {
	font-size: 1.75rem;
}

.info-list__inner {
	width: 100%;
	padding: 1.875rem var(--padding-sp) 3.75rem;
	gap: 2rem;
}

.privacy__inner {
	padding: 6.25rem var(--padding-sp) 3.75rem;
}

.privacy__content {
	padding: 1.5rem 0;
	gap: 2rem;
}

.privacy__h2::after {
	width: 7.5rem;
}

.privacy__h2 {
	font-size: 1.5rem;
}

.privacy__h3 {
	font-size: 1.375rem;
}

.privacy__content p,
.privacy__detail p {
	font-size: 0.875rem;
}

.privacy__public {
	gap: 2rem;
}

.privacy__detail {
	padding-left: 0.5rem;
}

.top-fv {
	height: 100svh;
}

.top-fv__content {
	left: var(--padding-sp);
	bottom: 65%;
	transform: translateY(50%);
}

.top-fv__title {
	font-size: 2.25rem;
}

.top-fv__subtitle {
	font-size: 1.125rem;
}

.top-fv__banner {
	right: var(--padding-sp);
	left: var(--padding-sp);
	bottom: 1.25rem;
	width: auto;
}

.top-fv__banner-btn {
	width: 100%;
	font-size: 0.875rem;
	padding: 0.625rem 1.5rem;
}

.top-works__bg-img {
	width: 18.75rem;
}

.top-works__inner {
	padding: 3.75rem var(--padding-sp);
	gap: 2.5rem;
}

.top-works__grid {
	grid-template-columns: 1fr;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	row-gap: 1.5rem;
}

.top-jt {
	margin-bottom: 1rem;
}

.top-jt__inner {
	flex-direction: column;
	padding: 0 var(--padding-sp);
	gap: unset;
}

.top-jt__logo {
	width: 9.375rem;
	padding: 1rem 0;
}

.top-jt__card {
	width: 100%;
}

.top-jt__card-bg {
	inset: 0 -20vw 0 0;
}

.top-jt__card-border {
	top: 1rem;
	left: 1rem;
	right: -20vw;
	bottom: 1rem;
}

.top-jt__card-content {
	padding: 2.5rem 0.75rem 2.5rem 1.75rem;
	gap: 1.5rem;
}

.top-jt .section-title__en {
	font-size: 1.125rem;
}

.top-jt__heading {
	font-size: 2rem;
}

.top-jt__btn {
	align-self: stretch;
}

.top-jt__text p {
	font-size: 0.875rem;
}

.top-jt__bg {
	margin-top: -2.5rem;
}

.top-jt__bg-left {
	height: 12.5rem;
}

.top-jt__bg-right {
	margin-top: 2.5rem;
	height: 12.5rem;
}

.top-about {
	padding: 3.75rem 0 0;
}

.top-about__bg-left {
	width: 20%;
	bottom: unset;
	height: 37.5rem;
}

.top-about__deco--1 {
	top: 15.625rem;
}

.top-about__line-v {
	display: none;
}

.top-about__line-h {
	display: none;
}

.top-about__upper {
	flex-direction: column;
	padding-top: 0;
}

.top-about__header {
	padding: 1.875rem var(--padding-sp);
	gap: 1.25rem;
}

.top-about__hero {
	width: 100%;
	max-width: none;
	aspect-ratio: 16/9;
	margin-right: 0;
	order: -1;
}

.top-about__sub-img {
	display: none;
}

.top-about__subtitle {
	font-size: 0.875rem;
}

.top-about__cards {
	gap: 3.75rem;
	margin-top: 0;
	padding: 2.5rem 0 3.75rem;
}

.top-about__card {
	flex-direction: column;
	gap: 1.25rem;
}

.top-about__card--reverse {
	flex-direction: column;
}

.top-about__card-img {
	width: 100%;
	max-width: none;
}

.top-about__card-body {
	width: 100%;
	padding: 0 var(--padding-sp);
}

.top-about__card-number {
	font-size: 3rem;
}

.top-about__card-title {
	font-size: 1.25rem;
}

.top-about__card-desc p {
	font-size: 0.875rem;
}

.top-jt__section-title .section-title__en {
	font-size: 1rem;
}

.work-single .work-detail__breadcrumb-wrap {
	margin-bottom: 3.75rem;
}

.work-detail-hero__inner {
	min-height: 10rem;
	padding: 5rem 0 2.5rem;
}

.work-detail-hero__title {
	font-size: 1.25rem;
}

.work-detail__breadcrumb-wrap {
	padding-top: 1rem;
}

.work-detail__inner {
	width: 100%;
	padding: 2.5rem var(--padding-sp) 3.75rem;
	gap: 4rem;
}

.work-detail__h3 {
	font-size: 1.375rem;
}

.work-detail__h3::before {
	width: 3.125rem;
	position: static;
}

.work-detail__gallery {
	flex-direction: column-reverse;
	gap: 1rem;
}

.work-detail__gallery-thumbs {
	width: 100%;
	padding: 1rem;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.375rem;
}

.work-detail__gallery-main {
	width: 100%;
}

.work-detail__floorplan {
	width: 17.5rem;
}

.work-detail__concept-wrap {
	width: 100%;
	gap: 2.25rem;
	padding: 2rem 0;
	max-width: 37.5rem;
}

.work-detail__concept-box {
	margin-top: -0.75rem;
}

.work-detail__concept-text {
	font-size: 1.25rem;
}

.work-detail__points {
	margin-top: -0.75rem;
	padding: 1rem 1.25rem;
}

.work-detail__point-num {
	font-size: 1.125rem;
}

.work-detail__point-text {
	font-size: 1rem;
}

.work-detail__location iframe {
	height: 18.75rem;
}

.work-detail__data-table {
	width: 100%;
}

.work-recommend__inner {
	width: 100%;
	padding: 2.5rem var(--padding-sp);
	gap: 2rem;
}

.work-recommend__grid {
	grid-template-columns: 1fr;
	gap: 1rem;
}

.works-list {
	padding: 1.875rem 0 3.75rem;
}

.works-list__inner {
	width: 100%;
	padding: 0 var(--padding-sp) 0;
	gap: 1.5rem;
}

.works-list__grid {
	grid-template-columns: 1fr;
	gap: 1rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

