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

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #FAFAFA;
	color: #242323;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

body.is-fixed {
	position: fixed; /* 画面を固定 */
}

body.lang-en {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	letter-spacing: 0.03em;
}

.u-sp {
	display: none;
}

.u-sm {
	display: none;
}

html {
	font-size: 100%;
}

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

/* ホバー */

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

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	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 */

/* Set core body defaults */

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

/* 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 {
	display: block;
	max-width: 100%;
	width: 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: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	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;
}

.c-breadcrumb {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	line-height: 26px;
	line-height: 1.625rem;
	padding-left: 20px;
	padding-left: 1.25rem;
	padding-top: 70px;
	padding-top: 4.375rem;
}

.c-breadcrumb__first {
	white-space: nowrap;
}

.c-breadcrumb_sp {
	display: none;
}

.c-breadcrumb__current {
	margin-left: 12px;
	margin-left: 0.75rem;
	max-width: 100%;
	overflow: hidden;
	padding-left: 20px;
	padding-left: 1.25rem;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap; /* 必要に応じて調整 */
}

.c-breadcrumb__current::before {
	border-right: 1px solid #242323;
	border-top: 1px solid #242323;
	content: "";
	height: 8px;
	height: 0.5rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	width: 0.5rem;
}

.c-btn__more {
	padding-right: 45px;
	padding-right: 2.8125rem;
	position: relative;
}

.c-btn__text {
	border-bottom: 1px solid rgba(36, 35, 35, .2);
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	padding-bottom: 5px;
	padding-bottom: 0.3125rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.lang-en .c-btn__text {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.c-btn__arrow-icon {
	background-color: #fff;
	border: 1px solid rgba(36, 35, 35, .2);
	border-radius: 50%;
	bottom: 0;
	height: 34px;
	height: 2.125rem;
	line-height: 1;
	margin: auto 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 34px;
	width: 2.125rem;
}

.c-btn__arrow-icon:before,
.c-btn__arrow-icon:after {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background: url(../images/common/arrow_btn.svg) no-repeat center center/cover;
	content: "";
	height: 8px;
	height: 0.5rem;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 11px;
	width: 0.6875rem;
}

.c-btn__arrow-icon:after {
	-webkit-transform: translateX(-250%) translateY(-50%);
	transform: translateX(-250%) translateY(-50%);
}

.c-btn__more.is-hover .c-btn__arrow-icon:before {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: transformLeftRight;
	animation-name: transformLeftRight;
}

.c-btn__more.is-hover .c-btn__arrow-icon:after {
	-webkit-animation-name: transformRightLeft;
	animation-name: transformRightLeft;
}

.c-btn__more.is-hover:hover .c-btn__arrow-icon:before {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-name: transformRightLeft;
	animation-name: transformRightLeft;
}

.c-btn__more.is-hover:hover .c-btn__arrow-icon:after {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: transformLeftRight;
	animation-name: transformLeftRight;
}

.c-btn__arrow-under {
	background-color: #fff;
	border: 1px solid rgba(36, 35, 35, .2);
	border-radius: 50%;
	bottom: 0;
	height: 34px;
	height: 2.125rem;
	line-height: 1;
	margin: auto 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 34px;
	width: 2.125rem;
}

.c-btn__arrow-under:before,
.c-btn__arrow-under:after {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background: url(../images/common/arrow-under.svg) no-repeat center center/cover;
	content: "";
	height: 11px;
	height: 0.6875rem;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 8px;
	width: 0.5rem;
}

.c-btn__arrow-under:after {
	-webkit-transform: translateX(-50%) translateY(-250%);
	transform: translateX(-50%) translateY(-250%);
}

.c-btn__more.is-hover .c-btn__arrow-under:before { /* 上から下のアニメーション */
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: transformTopBottom;
	animation-name: transformTopBottom;
}

.c-btn__more.is-hover .c-btn__arrow-under:after {
	-webkit-animation-name: transformBottomTop;
	animation-name: transformBottomTop; /* 下から上のアニメーション */
}

.c-btn__more.is-hover:hover .c-btn__arrow-under:before { /* 下から上のアニメーション */
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-name: transformBottomTop;
	animation-name: transformBottomTop;
}

.c-btn__more.is-hover:hover .c-btn__arrow-under:after { /* 上から下のアニメーション */
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: transformTopBottom;
	animation-name: transformTopBottom;
}

.c-button {
	display: grid;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1;
	overflow: hidden;
	padding: 21px 0;
	padding: 1.3125rem 0;
	place-content: center;
	position: relative;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.c-button__black {
	border: #fff 2px solid;
	color: #fff;
	max-width: 100%;
	width: 400px;
	width: 25rem;
}

/* カスタムカーソルの基本スタイル */

.c-cursor__circle {
	background-color: #fff;
	border: 1px solid rgba(36, 35, 35, .2);
	border-radius: 50%;
	display: none;
	height: 34px;
	height: 2.125rem;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 34px;
	width: 2.125rem;
	z-index: 999; /* カーソル位置を調整 */
}

.c-cursor__circle:before,
.c-cursor__circle:after {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background: url(../images/common/arrow_btn.svg) no-repeat center center/cover;
	content: "";
	height: 8px;
	height: 0.5rem;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 11px;
	width: 0.6875rem;
}

.c-cursor__circle:after {
	-webkit-transform: translateX(-250%) translateY(-50%);
	transform: translateX(-250%) translateY(-50%);
}

.c-cursor__circle.is-hover:before {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: cursorTransformLeftRight;
	animation-name: cursorTransformLeftRight;
}

.c-cursor__circle.is-hover:after {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-name: cursorTransformRightLeft;
	animation-name: cursorTransformRightLeft;
}

.c-lang-switch {
	gap: 15px;
	gap: 0.9375rem;
	padding-inline: 9px;
	padding-inline: 0.5625rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #EDEDED;
	border-radius: 1.375rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 20px;
	height: 1.25rem;
	position: relative;
	width: 64px;
	width: 4rem;
}

.c-lang-switch__indicator {
	background: #fff;
	border: 1px solid rgba(36, 35, 35, .2);
	border-radius: 50%;
	height: 32px;
	height: 2rem;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 32px;
	width: 2rem;
	z-index: 1;
}

.c-lang-switch__indicator.is-hover {
	background: #000;
	border: 1px solid #000;
}

.c-lang-switch__btn {
	color: #242323;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.7;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
}

.c-lang-switch__btn.is-hover {
	color: #FFF;
}

.c-line img {
	aspect-ratio: 1280/26;
	height: auto;
}

.c-tag {
	border: 1px solid #242323;
	border-radius: 100vmax;
	display: inline-block;
	letter-spacing: 0px;
	margin-left: 5px;
	margin-left: 0.3125rem;
	margin-right: 5px;
	margin-right: 0.3125rem;
	padding: 8px 18px;
	padding: 0.5rem 1.125rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.c-tag:hover {
	background-color: #242323;
	color: #fff;
}

.c-tag.--black {
	background-color: #242323;
	color: #fff;
	font-size: 16px;
	font-size: 1rem;
}

.c-text {
	font-size: 14px;
	font-size: 0.875rem;
}

.c-title__xl {
	font-family: "Montserrat", sans-serif;
	font-size: 56px;
	font-size: 3.5rem;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 1;
}

.lang-en .c-title__xl {
	font-family: "Albert Sans", sans-serif;
}

.c-title__lg {
	font-size: 32px;
	font-size: 2rem;
}

.lang-en .c-title__lg {
	font-family: "Albert Sans", sans-serif;
	font-size: 34px;
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 1.4;
}

.c-title {
	font-size: 24px;
	font-size: 1.5rem;
}

.lang-en .c-title {
	font-family: "Albert Sans", sans-serif;
}

.c-subTitle {
	font-size: 14px;
	font-size: 0.875rem;
}

.c-title__section.--center {
	text-align: center;
}

.c-title__section h2 {
	margin-top: 22px;
	margin-top: 1.375rem;
}

.lang-en .c-title__section h2 {
	margin-top: 0px;
	margin-top: 0rem;
}

.c-title__treats {
	margin-top: 20px;
	margin-top: 1.25rem;
}

.c-title__treats img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: auto;
	max-width: 85px;
	max-width: 5.3125rem;
	object-fit: cover;
	object-position: center;
}

.c-title__treats.--center img {
	margin-inline: auto;
}

.l-inner {
	margin-inline: auto;
	max-width: 940px;
	padding-left: 20px;
	padding-right: 20px;
}

.l-inner__lg {
	margin-inline: auto;
	max-width: 1120px;
	max-width: 70rem;
	padding-left: 20px;
	padding-right: 20px;
}

.l-inner__md {
	margin-inline: auto;
	max-width: 940px;
	max-width: 58.75rem;
	padding-left: 20px;
	padding-right: 20px;
}

.l-inner__sm {
	margin-inline: auto;
	max-width: 860px;
	max-width: 53.75rem;
	padding-left: 20px;
	padding-right: 20px;
}

.l-inner__xs {
	margin-inline: auto;
	max-width: 720px;
	max-width: 45rem;
	padding-left: 20px;
	padding-right: 20px;
}

/* ローディング画面のスタイル */

.l-loading {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
	-webkit-filter: blur(0);
	filter: blur(0);
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	-webkit-transition: opacity 2s ease, -webkit-filter 2s ease;
	transition: opacity 2s ease, -webkit-filter 2s ease;
	transition: opacity 2s ease, filter 2s ease;
	transition: opacity 2s ease, filter 2s ease, -webkit-filter 2s ease;
	width: 100%;
	z-index: 100; /* 初期状態はぼかし0 */
}

/* ドットコンテナ */

.l-loading__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 512px;
	width: 32rem;
}

/* 各ドットのスタイル */

.l-loading__dot {
	border-radius: 45%;
	opacity: 0;
	-webkit-transform-origin: center;
	transform-origin: center;
}

/* 波線の形にするためのドット配置 */

.l-loading__dot:nth-child(1) {
	background: url(../images/top/loading-dot.webp) no-repeat center center/contain;
	height: 7.39px;
	height: 0.461875rem;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	width: 7.08px;
	width: 0.4425rem;
}

.l-loading__dot:nth-child(2) {
	background: url(../images/top/loading-dot-1.webp) no-repeat center center/contain;
	height: 9.56px;
	height: 0.5975rem;
	-webkit-transform: translateY(-0.625rem);
	transform: translateY(-0.625rem);
	width: 9.89px;
	width: 0.618125rem;
}

.l-loading__dot:nth-child(3) {
	background: url(../images/top/loading-dot-2.webp) no-repeat center center/contain;
	height: 10.95px;
	height: 0.684375rem;
	-webkit-transform: translateY(-1.125rem);
	transform: translateY(-1.125rem);
	width: 10.91px;
	width: 0.681875rem;
}

.l-loading__dot:nth-child(4) {
	background: url(../images/top/loading-dot-3.webp) no-repeat center center/contain;
	height: 10.49px;
	height: 0.655625rem;
	-webkit-transform: translateY(-1.375rem);
	transform: translateY(-1.375rem);
	width: 10.75px;
	width: 0.671875rem;
}

.l-loading__dot:nth-child(5) {
	background: url(../images/top/loading-dot-4.webp) no-repeat center center/contain;
	height: 14.46px;
	height: 0.90375rem;
	-webkit-transform: translateY(-1.6875rem);
	transform: translateY(-1.6875rem);
	width: 14.64px;
	width: 0.915rem;
}

.l-loading__dot:nth-child(6) {
	background: url(../images/top/loading-dot-5.webp) no-repeat center center/contain;
	height: 8.17px;
	height: 0.510625rem;
	-webkit-transform: translateY(-1.375rem);
	transform: translateY(-1.375rem);
	width: 8.38px;
	width: 0.52375rem;
}

.l-loading__dot:nth-child(7) {
	background: url(../images/top/loading-dot-6.webp) no-repeat center center/contain;
	height: 9.52px;
	height: 0.595rem;
	-webkit-transform: translateY(-1.25rem);
	transform: translateY(-1.25rem);
	width: 9.05px;
	width: 0.565625rem;
}

.l-loading__dot:nth-child(8) {
	background: url(../images/top/loading-dot-7.webp) no-repeat center center/contain;
	height: 11.5px;
	height: 0.71875rem;
	-webkit-transform: translateY(-0.625rem);
	transform: translateY(-0.625rem);
	width: 11px;
	width: 0.6875rem;
}

.l-loading__dot:nth-child(9) {
	background: url(../images/top/loading-dot-8.webp) no-repeat center center/contain;
	height: 8.65px;
	height: 0.540625rem;
	-webkit-transform: translateY(0.3125rem);
	transform: translateY(0.3125rem);
	width: 8.59px;
	width: 0.536875rem;
}

.l-loading__dot:nth-child(10) {
	background: url(../images/top/loading-dot-9.webp) no-repeat center center/contain;
	height: 8.44px;
	height: 0.5275rem;
	-webkit-transform: translateY(0.9375rem);
	transform: translateY(0.9375rem);
	width: 8.13px;
	width: 0.508125rem;
}

.l-loading__dot:nth-child(11) {
	background: url(../images/top/loading-dot-10.webp) no-repeat center center/contain;
	height: 10.43px;
	height: 0.651875rem;
	-webkit-transform: translateY(1.25rem);
	transform: translateY(1.25rem);
	width: 11.52px;
	width: 0.72rem;
}

.l-loading__dot:nth-child(12) {
	background: url(../images/top/loading-dot-11.webp) no-repeat center center/contain;
	height: 9.9px;
	height: 0.61875rem;
	-webkit-transform: translateY(1.6875rem);
	transform: translateY(1.6875rem);
	width: 10.26px;
	width: 0.64125rem;
}

.l-loading__dot:nth-child(13) {
	background: url(../images/top/loading-dot-12.webp) no-repeat center center/contain;
	height: 11.96px;
	height: 0.7475rem;
	-webkit-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
	width: 11.11px;
	width: 0.694375rem;
}

.l-loading__dot:nth-child(14) {
	background: url(../images/top/loading-dot-13.webp) no-repeat center center/contain;
	height: 10.82px;
	height: 0.67625rem;
	-webkit-transform: translateY(1.75rem);
	transform: translateY(1.75rem);
	width: 11.57px;
	width: 0.723125rem;
}

.l-loading__dot:nth-child(15) {
	background: url(../images/top/loading-dot-14.webp) no-repeat center center/contain;
	height: 10.5px;
	height: 0.65625rem;
	-webkit-transform: translateY(1.25rem);
	transform: translateY(1.25rem);
	width: 10.38px;
	width: 0.64875rem;
}

.l-loading__dot:nth-child(16) {
	background: url(../images/top/loading-dot-15.webp) no-repeat center center/contain;
	height: 8.05px;
	height: 0.503125rem;
	-webkit-transform: translateY(0.625rem);
	transform: translateY(0.625rem);
	width: 8.05px;
	width: 0.503125rem;
}

.l-loading__dot:nth-child(17) {
	background: url(../images/top/loading-dot-16.webp) no-repeat center center/contain;
	height: 10.19px;
	height: 0.636875rem;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	width: 10.73px;
	width: 0.670625rem;
}

/* スマホサイズ時の調整 */

.l-main {
	margin-top: 90px;
	margin-top: 5.625rem;
}

/* ========================
   モーダルの基本デザイン
   ======================== */

/* ▼ モーダルの初期状態：非表示 + 背景が透明 */

.my-modal { /* 白背景 + 透明80% */
	background: rgba(255, 255, 255, .8);
	display: none;
	height: 100%;
	left: 0; /* 初期は非表示 */
	opacity: 0;
	position: fixed;
	top: 0; /* フェード用に 0 */
	-webkit-transition: opacity 0.1s ease;
	transition: opacity 0.1s ease;
	width: 100%;
	z-index: 9999; /* 0.1秒かけて背景をフェード */
}

/* ▼ .show が付くと表示 + 背景が100%不透明(=1)になる */

.my-modal.show {
	display: block;
	opacity: 1; /* 背景フェードイン */
}

/* ▼ モーダル内部：画像を画面中央に配置 */

.my-modal-content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	left: 50%;
	max-height: 82vh;
	max-width: 90vw;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 75vw;
}

/* ▼ 実際に表示する画像：初期は透明0 → 遅れてフェードイン */

.my-modal-content img { /* 0.3秒の遅延 + 0.4秒かけてフェード
   → 背景のフェードより 0.3秒あとに画像が出始める */
	-o-object-fit: contain;
	display: block; /* 画面幅の65%で表示 */
	height: auto; /* アスペクト比維持 */
	max-height: 82vh;
	object-fit: contain; /* 画面からはみ出さない */
	opacity: 0; /* 初期は0 */
	-webkit-transition: opacity 0.1s ease 0.2s;
	transition: opacity 0.1s ease 0.2s;
	width: 75vw;
}

/* ▼ .show と同時に画像がフェードイン */

.my-modal.show img {
	opacity: 1;
}

/* ▼ スマホ等、画面幅が狭い時はもう少し大きく表示してもOK */

.l-nav__menu {
	bottom: 32px;
	bottom: 2rem;
	left: 50%;
	position: fixed;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: 10;
}

.l-nav__menu.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.l-nav__content {
	margin-inline: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* ナビゲーションリストのスタイル */

.l-nav__lists {
	padding-block: 8px;
	padding-block: 0.5rem;
	padding-inline: 14px;
	padding-inline: 0.875rem;
	background-color: #fff;
	border: 1px solid #242323;
	border-radius: 100vmax;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 5%;
	position: relative;
	z-index: 0;
}

.l-nav__list {
	border-radius: 100vmax;
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 1;
}

.lang-en .l-nav__list {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.l-nav__list.--current {
	background-color: #EDEDED;
	color: #242323;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: -1;
}

.l-nav__menu-link {
	padding-inline: 10px;
	padding-inline: 0.625rem;
	display: inline-block;
	line-height: 1;
}

#nav-bg {
	background-color: transparent;
	border-radius: 100vmax;
	height: calc(100% - 0.5rem);
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 0;
}

.l-nav__list:hover ~ #nav-bg {
	background-color: #242323;
}

.l-nav__list.--transparent {
	background-color: transparent;
	color: #242323;
}

.l-nav__menu-instagram {
	margin-left: -24px;
	margin-left: -1.5rem;
	position: relative;
}

.l-nav__menu-instagram img {
	height: auto;
	max-width: 40px;
	max-width: 2.5rem;
}

.p-about__fv {
	padding-top: 60px;
	padding-top: 3.75rem;
}

.p-about__fv-img {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-about__fv-img img {
	aspect-ratio: 900/510;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-about__subTitle {
	line-height: 26px;
	line-height: 1.625rem;
}

.p-about__title {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.lang-en .p-about__title {
	font-weight: 700;
	letter-spacing: 0.03em;
}

.p-about__philosophy {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-about__philosophy-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.lang-en .p-about__philosophy-container {
	display: block;
}

.p-about__philosophy-content {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 45%;
	flex: 0 0 45%;
}

.lang-en .p-about__philosophy-content {
	max-width: 700px;
	max-width: 43.75rem;
}

.p-about__philosophy-en {
	color: #000;
	font-family: "Montserrat", sans-serif;
	line-height: 1;
}

.lang-en .p-about__philosophy-en {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
}

.p-about__philosophy-title {
	font-weight: 500;
	line-height: 1.5;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-about__philosophy-title {
	font-size: 34px;
	font-size: 2.125rem;
	font-weight: 600;
}

.p-about__philosophy-subTitle {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-about__philosophy-text {
	color: #000;
	letter-spacing: 0px;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-about__philosophy-text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__philosophy-img {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 47%;
	flex: 0 1 47%;
}

.lang-en .p-about__philosophy-img {
	margin-left: auto;
	margin-top: 40px;
	margin-top: 2.5rem;
	max-width: 422px;
	max-width: 26.375rem;
}

.lang-en .p-about__philosophy-img img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-about__philosophy-img img {
	aspect-ratio: 423/494;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-about__service {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-about__service-text {
	color: #000;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-about__service-text .c-text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__service-container {
	margin-top: 32px;
	margin-top: 2rem;
}

.p-about__service-content {
	background-color: #fff;
	border-radius: 0.5rem;
	margin-top: 12px;
	margin-top: 0.75rem;
	padding: 32px 40px;
	padding: 2rem 2.5rem;
}

.p-about__service-number {
	color: #000;
	font-family: "Montserrat", sans-serif;
	line-height: 1;
}

.lang-en .p-about__service-number {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
}

.p-about__service-title {
	color: #000;
	font-weight: 500;
	line-height: 1;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-about__service-content-text {
	color: #000;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-about__service-content-text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__service-content-tag {
	row-gap: 10px;
	row-gap: 0.625rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-about__service-content-tag li {
	font-size: 14px;
	font-size: 0.875rem;
}

.p-about__team-up {
	border-top: 1px solid rgba(36, 35, 35, .2);
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-about__team-up-head {
	color: #000;
}

.lang-en .p-about__team-up-head {
	font-family: "Albert Sans", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-about__team-up-title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-about__team-up-sub {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 26px;
	line-height: 1.625rem;
	margin-left: 12px;
	margin-left: 0.75rem;
}

.lang-en .p-about__team-up-sub {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__team-up__text {
	color: #000;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-about__team-up__text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__architect {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-about__architect-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 32px;
	margin-top: 2rem;
}

.p-about__architect-img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 32.2222222222%;
	flex: 0 0 32.2222222222%;
}

.p-about__architect-img img {
	border-radius: 0.5rem;
	height: auto;
	max-width: 290px;
	max-width: 18.125rem;
}

.p-about__architect-content {
	margin-left: 40px;
	margin-left: 2.5rem;
	max-width: 400px;
	max-width: 25rem;
}

.p-about__architect-content p {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	line-height: 1.8571428571;
}

.lang-en .p-about__architect-content {
	max-width: 572px;
	max-width: 35.75rem;
}

.lang-en .p-about__architect-content p {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.lang-en .p-about__architect-note {
	font-size: 14px !important;
	font-size: 0.875rem !important;
	letter-spacing: 0.03em;
}

.p-about__architect-name {
	font-weight: 500;
	line-height: 1.4;
}

.lang-en .p-about__architect-name {
	font-family: "Albert Sans", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-about__architect-en {
	line-height: 1;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-about__architect-text {
	letter-spacing: 0px;
	line-height: 26px;
	line-height: 1.625rem;
	margin-top: 32px;
	margin-top: 2rem;
	max-width: 400px;
	max-width: 25rem;
}

.lang-en .p-about__architect-text {
	max-width: 572px;
	max-width: 35.75rem;
}

.p-about__sns {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-about__sns-text {
	font-family: "Montserrat", sans-serif;
	margin-right: 4px;
	margin-right: 0.25rem;
}

.lang-en .p-about__sns-text {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-about__sns-link {
	display: inline-block;
	margin-left: 8px;
	margin-left: 0.5rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-about__sns-icon img {
	display: inline-block;
	height: auto;
	max-width: 34px;
	max-width: 2.125rem;
}

.p-about__profile {
	margin-top: 32px;
	margin-top: 2rem;
}

.p-about__profile-heading {
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

.lang-en .p-about__profile-heading {
	font-family: "Albert Sans", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.p-about__profile-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 26px;
	line-height: 1.625rem;
}

.lang-en .p-about__profile-row {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__profile-row:first-child {
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-about__profile-text {
	margin-left: 1em;
}

.p-about__archive {
	margin-top: 32px;
	margin-top: 2rem;
	padding-bottom: 80px;
	padding-bottom: 5rem;
	text-align: end;
}

.p-about__award {
	margin-top: 32px;
	margin-top: 2rem;
}

.p-about__award-heading {
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

.lang-en .p-about__award-heading {
	font-family: "Albert Sans", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.p-about__award-text {
	color: #242323;
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__company {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-about__company-title {
	margin-top: 32px;
	margin-top: 2rem;
	text-align: center;
}

.p-about__company-inner {
	margin-inline: auto;
	max-width: 540px;
	max-width: 33.75rem;
}

.lang-en .p-about__company-inner {
	max-width: 900px;
	max-width: 56.25rem;
}

.p-about__company-name {
	font-weight: 500;
	line-height: 45px;
	line-height: 2.8125rem;
}

.lang-en .p-about__company-name {
	font-family: "Albert Sans", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-about__company-content {
	margin-top: 32px;
	margin-top: 2rem;
}

.p-about__company-row {
	border-top: 1px solid rgba(36, 35, 35, .2);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 26px;
	line-height: 1.625rem;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	padding-top: 20px;
	padding-top: 1.25rem;
}

.lang-en .p-about__company-row {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-about__company-term {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.8148148148%;
	flex: 0 0 14.8148148148%;
}

.lang-en .p-about__company-term {
	max-width: 122px;
	max-width: 7.625rem;
}

.p-about__company-description {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-left: 15px;
	margin-left: 0.9375rem;
}

.p-about__company-description.--list {
	letter-spacing: 0px;
	line-height: 2;
	margin-left: 1em;
}

.p-about__company-img {
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-about__company-img img {
	aspect-ratio: 385/494;
	-o-object-fit: cover;
	-o-object-position: center;
	margin-inline: auto;
	border-radius: 0.5rem;
	height: auto;
	max-width: 385px;
	max-width: 24.0625rem;
	object-fit: cover;
	object-position: center;
}

.p-about__company-sns {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 32px;
	margin-top: 2rem;
}

.p-about__contact {
	margin-top: 80px;
	margin-top: 5rem;
	padding-bottom: 80px;
	padding-bottom: 5rem;
}

.p-about__contact.--single {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.lang-en .p-about__contact.--single {
	-webkit-margin-before: 120px;
	margin-block-start: 120px;
	-webkit-margin-before: 7.5rem;
	margin-block-start: 7.5rem;
}

.p-about__contact-text {
	font-size: 18px;
	font-size: 1.125rem;
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
	-webkit-margin-before: 1.25rem;
	margin-block-start: 1.25rem;
	text-align: center;
}

.lang-en .p-about__contact-text {
	letter-spacing: 0.03em;
	line-height: 1.7;
	-webkit-margin-before: 14px;
	margin-block-start: 14px;
	-webkit-margin-before: 0.875rem;
	margin-block-start: 0.875rem;
}

.p-contact__top {
	padding-bottom: 80px;
	padding-bottom: 5rem;
	padding-top: 80px;
	padding-top: 5rem;
}

.p-contact__top-text {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 26px;
	line-height: 1.625rem;
	margin-left: 32px;
	margin-left: 2rem;
	margin-top: 32px;
	margin-top: 2rem;
	text-align: center;
}

.p-contact__top-btn {
	margin-inline: auto;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-contact__top-btn a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-right: 0;
}

.p-contact__top-btnImg {
	margin-left: 12px;
	margin-left: 0.75rem;
}

.p-contact__top-btnImg img {
	height: auto;
	max-width: 34px;
	max-width: 2.125rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-contact {
	padding-top: 56px;
	padding-top: 3.5rem;
}

.p-contact__inner {
	margin-inline: auto;
	max-width: 580px;
	max-width: 36.25rem;
	padding-left: 20px;
	padding-right: 20px;
}

.p-contact__body {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-contact__message {
	color: #000;
	font-size: 15px;
	font-size: 0.9375rem;
}

.lang-en .p-contact__message {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-contact__box {
	background-color: #EDEDED;
	border-radius: 0.5rem;
	margin-top: 16px;
	margin-top: 1rem;
	padding: 20px;
	padding: 1.25rem;
}

.p-contact__list {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 15px;
	font-size: 0.9375rem;
}

.lang-en .p-contact__list {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-contact__list:not(:first-child) {
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-contact__list-text {
	min-width: 140px;
	min-width: 8.75rem;
}

.p-contact__list-mail {
	display: block;
	letter-spacing: 0.05em;
	margin-left: 20px;
	margin-left: 1.25rem;
	text-decoration: underline;
}

.p-contact__note {
	margin-block: 16px 316px;
	margin-block: 1rem 19.75rem;
	color: rgba(36, 35, 35, .5);
	font-size: 11px;
	font-size: 0.6875rem;
}

.lang-en .p-contact__note {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-contact__question {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-contact__question-body {
	padding-bottom: 140px;
	padding-bottom: 8.75rem;
}

.p-contact__question-text {
	color: #000;
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
	max-width: 420px;
	max-width: 26.25rem;
}

.p-contact__recruit-body {
	padding-bottom: 140px;
	padding-bottom: 8.75rem;
}

.p-contact__recruit-text {
	color: #000;
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
	max-width: 420px;
	max-width: 26.25rem;
}

.p-contact__recruit-lists {
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.8;
	margin-top: 15px;
	margin-top: 0.9375rem;
}

.p-contact__title {
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.lang-en .p-contact__title {
	font-family: "Albert Sans", sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
}

.p-contact__btn {
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-drawer {
	display: none;
}

.p-drawer__btn {
	background-color: #242323;
	border: 1px solid #242323;
	border-radius: 100vmax;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	margin-left: 8px;
	margin-left: 0.5rem;
	padding: 10px 20px;
	padding: 0.625rem 1.25rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.lang-en .p-drawer__btn {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-drawer__close {
	cursor: pointer;
	position: absolute;
	right: -8px;
	right: -0.5rem;
	top: -23px;
	top: -1.4375rem;
	z-index: 1;
}

.p-drawer__close img {
	height: auto;
	max-width: 35px;
	max-width: 2.1875rem;
}

.p-footer {
	padding-bottom: 60px;
	padding-bottom: 3.75rem;
	padding-top: 82px;
	padding-top: 5.125rem;
}

.p-footer__logo img {
	height: auto;
	max-width: 240px;
	max-width: 15rem;
}

.p-footer__address {
	font-size: 14px;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.8571428571;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-footer__address-item:not(:first-child) {
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-footer__address-item-title {
	font-weight: 700;
}

.p-footer__inner {
	margin-inline: auto;
	max-width: 1108px;
	max-width: 69.25rem;
	padding-left: 20px;
	padding-right: 20px;
}

.p-footer__container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.p-footer__nav {
	margin-left: auto;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-footer__nav {
	margin-top: 60px;
	margin-top: 3.75rem;
}

.p-footer__nav-lists {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.p-footer__nav-list:not(:first-child) {
	margin-left: 20px;
	margin-left: 1.25rem;
}

.p-footer__nav-link {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
}

.lang-en .p-footer__nav-link {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-footer__nav-link::after {
	background: #242323;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}

.p-footer__nav-link:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}

.p-footer__nav-icon img {
	height: auto;
	max-width: 40px;
	max-width: 2.5rem;
}

.p-footer__lang-switch {
	position: absolute;
	right: 0;
	top: 0;
}

.p-footer__instagram-cta-link {
	gap: 11px;
	gap: 0.6875rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	bottom: -40px;
	bottom: -2.5rem;
	display: grid;
	grid-template-columns: auto 2.125rem;
	position: absolute;
	right: 0;
}

.p-footer__instagram-cta-link img {
	-o-object-fit: contain;
	display: block;
	height: auto;
	object-fit: contain;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	width: 100%;
}

.p-footer__instagram-cta-link:hover img {
	opacity: 0.8;
}

.p-footer__instagram-cta-link:hover .p-footer__instagram-cta-text {
	color: #242323;
}

.p-footer__instagram-cta-text {
	color: rgba(36, 35, 35, .5);
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.42px;
	line-height: 1.7;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.p-footer__copyright {
	margin-top: 80px;
	margin-top: 5rem;
}

.lang-en .p-footer__copyright {
	margin-top: 42px;
	margin-top: 2.625rem;
}

.p-footer__copyright-text {
	color: rgba(36, 35, 35, .5);
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
}

.lang-en .p-footer__copyright-text {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.home .p-header__top {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 24px 30px;
	padding: 1.5rem 1.875rem;
	position: relative; /* ヘッダーを上に隠す */
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	width: 100%;
	z-index: 10;
}

.home .p-header__top.is-fixed {
	left: 0;
	position: fixed;
	top: 0;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.home .p-header__logo {
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.home .p-header__logo img {
	aspect-ratio: 250/44;
	-o-object-fit: cover;
	-o-object-position: center;
	height: auto;
	max-width: 250px;
	max-width: 15.625rem;
	object-fit: cover;
	object-position: center;
}

.home .p-header__logo.is-show {
	opacity: 1;
}

.home .p-header__inner {
	margin-top: 0;
}

.p-header__top {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	left: 0;
	padding: 24px 30px;
	padding: 1.5rem 1.875rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.p-header__top.is-hidden {
	left: 0;
	position: fixed;
	top: 0;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%); /* ヘッダーを上に隠す */
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.p-header__logo {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-header__logo img {
	height: auto;
	max-width: 250px;
	max-width: 15.625rem;
}

.p-header__top-btn-area {
	gap: 10px;
	gap: 0.625rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
}

.p-header__top-contact {
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-header__top-contact img {
	height: auto;
	max-width: 34px;
	max-width: 2.125rem;
}

.p-header__inner {
	margin-inline: auto;
	margin-top: 92px;
	margin-top: 5.75rem;
	padding-left: 115px;
	padding-left: 7.1875rem;
	padding-right: 115px;
	padding-right: 7.1875rem;
}

.p-header__container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.lang-en .p-header__container {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-header__container.is-margin {
	margin-top: 90px;
	margin-top: 5.625rem;
}

.p-header__title img {
	height: auto;
	max-width: 542px;
	max-width: 33.875rem;
}

.p-header__right {
	margin-left: auto;
	margin-top: -15px;
	margin-top: -0.9375rem;
}

.p-header__subTitle {
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1;
	padding-left: 16px;
	padding-left: 1rem;
}

.lang-en .p-header__subTitle {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-header__topic {
	color: #000;
	font-weight: 500;
	line-height: 1;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-header__text {
	color: #000;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 2;
	margin-top: 20px;
	margin-top: 1.25rem;
	padding-left: 16px;
	padding-left: 1rem;
}

.p-header__text-en {
	color: #242323;
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
	margin-top: 21px;
	margin-top: 1.3125rem;
}

.p-header__btn {
	margin-top: 16px;
	margin-top: 1rem;
	padding-left: 16px;
	padding-left: 1rem;
}

.p-header__btn-en {
	margin-top: 21px;
	margin-top: 1.3125rem;
}

.p-header__name {
	color: #000;
	font-size: 14px;
	font-size: 0.875rem;
	margin-top: 66px;
	margin-top: 4.125rem;
	padding-right: 30px;
	padding-right: 1.875rem;
	text-align: end;
}

.p-navigation-drawer__bg {
	background-color: #d9d9d9;
	display: none;
	height: 100vh;
	left: 0; /* 縦スクロールを可能に */
	overflow-x: hidden;
	overflow-y: auto;
	padding: 40px 20px;
	padding: 2.5rem 1.25rem;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 101; /* 横スクロールは非表示に */
}

.p-navigation-drawer__head {
	background-color: #fff;
	border-radius: 0.5rem 0.5rem 0 0;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.1;
	padding: 11.5px;
	padding: 0.71875rem;
	text-align: center;
}

.lang-en .p-navigation-drawer__head {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-navigation-drawer__body {
	background-color: #fff;
	border-radius: 0 0 0.5rem 0.5rem;
	padding: 40px 75px;
	padding: 2.5rem 4.6875rem;
}

.p-navigation-drawer__content {
	position: relative;
}

.p-navigation-drawer__img img {
	height: auto;
	max-width: 400px;
	max-width: 25rem;
}

.p-navigation-drawer__list {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-navigation-drawer__list-item {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
}

.lang-en .p-navigation-drawer__list-item {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
	line-height: 1;
}

.p-navigation-drawer__list-item span {
	position: relative;
}

.p-navigation-drawer__list-item span::after {
	background: #242323;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}

.p-navigation-drawer__list-item span:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}

.p-navigation-drawer__list-item:not(:first-child) {
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-navigation-drawer__list-icon img {
	height: auto;
	max-width: 34px;
	max-width: 2.125rem;
}

.p-navigation-drawer__lang-switch {
	-webkit-margin-before: 47px;
	margin-block-start: 47px;
	-webkit-margin-before: 2.9375rem;
	margin-block-start: 2.9375rem;
}

.p-navigation-footer__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.p-navigation-footer__list-item {
	color: #fff;
	font-size: 14px;
	font-size: 0.875rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-navigation-footer__list-item:not(:first-child) {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.p-navigation-footer__list-item a {
	display: block;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

.p-navigation-footer__submenu {
	padding: 8px;
	padding: 0.5rem;
}

.p-navigation-footer__submenu li:not(:first-child) {
	margin-top: 4px;
	margin-top: 0.25rem;
}

.p-navigation-footer__submenu .p-navigation__link-sub {
	font-size: 12px;
	font-size: 0.75rem;
}

.p-navigation-footer__submenu .p-navigation__link-sub span {
	position: relative;
}

.p-navigation-footer__submenu .p-navigation__link-sub.--sub {
	display: block;
	padding-bottom: 0;
}

.p-navigation-footer__submenu .p-navigation__link-sub span::after {
	background: #fff;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}

.p-navigation-footer__submenu .p-navigation__link-sub span:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}

.p-news__single {
	margin-top: 34px;
	margin-top: 2.125rem;
	padding-top: 6px;
	padding-top: 0.375rem;
}

.p-news__single p {
	font-size: 15px;
	font-size: 0.9375rem;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-news__single-breadcrumb {
	padding-top: 56px;
	padding-top: 3.5rem;
}

.p-news__single-post {
	border-bottom: 1px solid rgba(36, 35, 35, .2);
	padding-bottom: 30px;
	padding-bottom: 1.875rem;
}

.p-news__single-thumbnail img {
	aspect-ratio: 682/350;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-news__single-time {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.lang-en .p-news__single-time {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-news__single-heading {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 500;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-news__single-tags {
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-news__single-tag {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	padding-right: 0.8em;
	position: relative;
}

.p-news__single-tag:not(:last-child)::before {
	content: "・";
	position: absolute;
	right: -0.15em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-news__btn-more {
	margin-top: 40px;
	margin-top: 2.5rem;
	text-align: center;
}

.p-news {
	padding-top: 60px;
	padding-top: 3.75rem;
}

.p-news__inner {
	margin-inline: auto;
	max-width: 670px;
	max-width: 41.875rem;
	padding-left: 20px;
	padding-right: 20px;
}

.p-news__content {
	margin-top: 80px;
	margin-top: 5rem;
}

.p-news__top {
	padding-bottom: 80px;
	padding-bottom: 5rem;
	padding-top: 80px;
	padding-top: 5rem;
}

.p-news__top-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.p-news__top-text {
	font-size: 14px;
	font-size: 0.875rem;
	margin-top: 32px;
	margin-top: 2rem;
}

.p-news__article {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-left: 80px;
	margin-left: 5rem;
}

.p-news__list {
	border-top: 1px solid rgba(36, 35, 35, .2);
	padding-bottom: 19.5px;
	padding-bottom: 1.21875rem;
	padding-top: 19.5px;
	padding-top: 1.21875rem;
}

.p-news__list:not(:first-child) {
	border-bottom: 1px solid rgba(36, 35, 35, .2);
}

.p-news__link {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-right: 60px;
	padding-right: 3.75rem;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-news__thumbnail {
	border-radius: 0.5rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 29.203539823%;
	flex: 0 0 29.203539823%;
	max-width: 165px;
	max-width: 10.3125rem;
	overflow: hidden;
}

.p-news__thumbnail img {
	aspect-ratio: 165/95;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.p-news__list-content {
	margin-left: 32px;
	margin-left: 2rem;
}

.p-news__time {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
}

.lang-en .p-news__time {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-news__article-title {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
}

.p-news__top-btn {
	margin-top: 32px;
	margin-top: 2rem;
	text-align: end;
}

.p-news__link.is-hover .c-btn__arrow-icon:before {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: transformLeftRight;
	animation-name: transformLeftRight;
}

.p-news__link.is-hover .c-btn__arrow-icon:after {
	-webkit-animation-name: transformRightLeft;
	animation-name: transformRightLeft;
}

.p-news__link.is-hover:hover .c-btn__arrow-icon:before {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-name: transformRightLeft;
	animation-name: transformRightLeft;
}

.p-news__link.is-hover:hover .c-btn__arrow-icon:after {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: transformLeftRight;
	animation-name: transformLeftRight;
}

.p-note__top {
	padding-bottom: 80px;
	padding-bottom: 5rem;
	padding-top: 80px;
	padding-top: 5rem;
}

.p-note__top-head {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -20px;
	margin-left: -1.25rem;
}

.p-note__top-text {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 26px;
	line-height: 1.625rem;
	margin-left: 32px;
	margin-left: 2rem;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-note__top-profile {
	margin-left: auto;
}

.p-note__top-profile img {
	height: auto;
	margin-left: auto;
	max-width: 160px;
	max-width: 10rem;
}

.p-note__top-link {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-right: 60px;
	padding-right: 3.75rem;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-note__top-time {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 500;
}

.lang-en .p-note__top-time {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-note__top-article-title {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	margin-top: 10px;
	margin-top: 0.625rem;
}

.p-note__top-btn {
	margin-top: 64px;
	margin-top: 4rem;
	text-align: center;
}

.p-note__top-article {
	margin-top: 52px;
	margin-top: 3.25rem;
}

.p-note__slide-link {
	display: block;
}

.p-project__single {
	padding-top: 6px;
	padding-top: 0.375rem;
}

.p-project__single-breadcrumb {
	padding-top: 50px;
	padding-top: 3.125rem;
}

.p-project__single-post {
	border-bottom: 1px solid rgba(36, 35, 35, .2);
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
}

.p-project__single-thumbnail {
	margin-top: 34px;
	margin-top: 2.125rem;
}

.p-project__single-thumbnail img {
	aspect-ratio: 682/350;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-project__single-category {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 18px;
	margin-top: 1.125rem;
	padding-left: 1em;
	position: relative;
}

.p-project__single-category::before {
	background: url(../images/common/vector.webp) no-repeat center center/cover;
	content: "";
	height: 6px;
	height: 0.375rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
}

.p-project__single-heading {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 500;
	margin-top: 10px;
	margin-top: 0.625rem;
}

.p-project__single-tags {
	margin-top: 10px;
	margin-top: 0.625rem;
}

.p-project__single-tag {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	padding-right: 0.8em;
	position: relative;
}

.p-project__single-tag:not(:last-child)::before {
	content: "・";
	position: absolute;
	right: -0.15em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-project__detail {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-project__detail-heading {
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

.lang-en .p-project__detail-heading {
	font-family: "Albert Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.p-project__detail-name {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 16px;
	line-height: 1rem;
	margin-top: 12px;
	margin-top: 0.75rem;
	padding-left: 14px;
	padding-left: 0.875rem;
	position: relative;
}

.p-project__detail-name::before {
	background: url(../images/common/vector.webp) no-repeat center center/cover;
	content: "";
	height: 6px;
	height: 0.375rem;
	left: 2px;
	left: 0.125rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
}

.p-project__detail-content {
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-project__detail-list {
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.p-project__detail-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.p-project__detail-title {
	padding-left: 16px;
	padding-left: 1rem;
	padding-right: 1em;
	position: relative;
	white-space: nowrap;
}

.lang-en .p-project__detail-title {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-project__detail-title::before {
	content: "・";
	left: 0;
	position: absolute;
	top: 11px;
	top: 0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-project__detail-title::after {
	content: "：";
	position: absolute;
	right: 0;
	top: 11px;
	top: 0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-project__detail-text {
	margin-left: 2px;
	margin-left: 0.125rem;
}

.lang-en .p-project__detail-text {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-project__top {
	margin-top: 57px;
	margin-top: 3.5625rem;
	padding-bottom: 80px;
	padding-bottom: 5rem;
	padding-top: 80px;
	padding-top: 5rem;
}

.p-project__top.is-margin {
	padding-top: 172px;
	padding-top: 10.75rem;
}

.p-project__top-menu {
	margin-inline: auto;
	margin-top: 28px;
	margin-top: 1.75rem;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-project__tags-many {
	margin-inline: auto;
	gap: 10px 0px;
	gap: 0.625rem 0rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 32px;
	margin-top: 2rem;
	max-width: 780px;
	max-width: 48.75rem;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-project__tags-many.--top {
	max-width: 600px;
	max-width: 37.5rem;
}

.p-project__top-tags {
	margin-top: 4px;
	margin-top: 0.25rem;
}

.p-project__top-link {
	display: block;
	margin-top: 45px;
	margin-top: 2.8125rem;
}

.p-project__top-link:not(:first-child) {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-project__top-link img {
	aspect-ratio: 820/465;
	-o-object-fit: cover;
	-o-object-position: center;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-project__top-thumbnail {
	border-radius: 0.5rem;
	overflow: hidden;
}

.p-project__top-thumbnail img {
	aspect-ratio: 820/464;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.p-project__top-heading {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 9px;
	margin-top: 0.5625rem;
}

.p-project__top-category {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 5px;
	margin-top: 0.3125rem;
	padding-left: 1em;
	position: relative;
}

.p-project__top-category::before {
	background: url(../images/common/vector.webp) no-repeat center center/cover;
	content: "";
	height: 6px;
	height: 0.375rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
}

.p-project__top-tag {
	-webkit-text-decoration-line: underline;
	-webkit-text-decoration-style: solid;
	-webkit-text-decoration-skip-ink: none;
	-webkit-text-decoration-color: transparent;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 500;
	padding-right: 1em;
	position: relative;
	text-decoration-color: transparent;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.p-project__top-tag:hover {
	-webkit-text-decoration-color: #000;
	text-decoration-color: #000;
}

.p-project__top-tag:not(:last-child)::before {
	content: "・";
	position: absolute;
	right: -0.25em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.lang-en .p-project__top-tag {
	-webkit-text-decoration-color: rgba(36, 35, 35, .35);
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.7;
	text-decoration-color: rgba(36, 35, 35, .35);
}

.lang-en .p-project__top-tag:hover {
	-webkit-text-decoration-color: #000;
	text-decoration-color: #000;
}

.lang-en .p-project__top-tag:not(:last-child)::before {
	content: " ";
}

.p-project-top__message {
	font-size: 16px;
	font-size: 1rem;
	margin-top: 40px;
	margin-top: 2.5rem;
	text-align: center;
}

.p-project__top-btn {
	margin-top: 40px;
	margin-top: 2.5rem;
	text-align: center;
}

.p-project {
	padding-top: 60px;
	padding-top: 3.75rem;
}

.p-project__tags {
	margin-inline: auto;
	margin-top: 32px;
	margin-top: 2rem;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-project__tags-many {
	margin-inline: auto;
	margin-top: 32px;
	margin-top: 2rem;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-project__content {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-project__lists {
	gap: 40px;
	gap: 2.5rem;
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	position: relative;
}

.p-project__link {
	display: block;
}

.p-project__link img {
	aspect-ratio: 520/295;
	-o-object-fit: cover;
	-o-object-position: center;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-project__message {
	font-size: 24px;
	font-size: 1.5rem;
	left: 50%;
	line-height: 1.5;
	position: absolute;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
}

.p-project__btn-more {
	margin-top: 140px;
	margin-top: 8.75rem;
	text-align: center;
}

.p-project__btn-more.--single {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-project__current-tag-name {
	font-weight: 500;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
	margin-top: 27px;
	margin-top: 1.6875rem;
	text-align: center;
}

.p-project__single__content h2.wp-block-heading {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 500;
}

.lang-en .p-project__single__content h2.wp-block-heading {
	font-family: "Albert Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-project__single__content h3.wp-block-heading {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 500;
	margin-top: 15px;
	margin-top: 0.9375rem;
}

.lang-en .p-project__single__content h3.wp-block-heading {
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-project__single__content p {
	font-size: 15px;
	font-size: 0.9375rem;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-project__single__content ul.wp-block-list {
	line-height: 1.7;
}

.p-project__single__content ul.wp-block-list li {
	padding-left: 16px;
	padding-left: 1rem;
	position: relative;
}

.p-project__single__content ul.wp-block-list li::before {
	content: "・";
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-project__single__content ol.wp-block-list {
	line-height: 1.7;
	list-style: decimal;
	margin-left: 1.5em;
}

.p-project__single__content .has-background {
	border-radius: 0.5rem;
	font-size: 15px;
	font-size: 0.9375rem;
	margin-top: 8px;
	margin-top: 0.5rem;
	padding: 20px;
	padding: 1.25rem;
}

.p-project__single__content .wp-block-image img {
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-project__single__content .wp-block-column img {
	aspect-ratio: 337/350;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-project__single__content .wp-block-columns {
	gap: 8px;
	gap: 0.5rem;
}

.p-news__single h2.wp-block-heading {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 500;
}

.lang-en .p-news__single h2.wp-block-heading {
	font-family: "Albert Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-news__single h3.wp-block-heading {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 500;
	margin-top: 15px;
	margin-top: 0.9375rem;
}

.lang-en .p-news__single h3.wp-block-heading {
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.p-news__single ul.wp-block-list {
	line-height: 1.7;
}

.p-news__single ul.wp-block-list li {
	padding-left: 16px;
	padding-left: 1rem;
	position: relative;
}

.p-news__single ul.wp-block-list li::before {
	content: "・";
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-news__single ol.wp-block-list {
	line-height: 1.7;
	list-style: decimal;
	margin-left: 1.5em;
}

.p-news__single .has-background {
	border-radius: 0.5rem;
	font-size: 15px;
	font-size: 0.9375rem;
	margin-top: 8px;
	margin-top: 0.5rem;
	padding: 20px;
	padding: 1.25rem;
}

.p-news__single a {
	word-wrap: anywhere;
}

.p-news__single .wp-block-image img {
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-news__single .wp-block-column img {
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.p-news__single .wp-block-columns {
	gap: 8px;
	gap: 0.5rem;
}

.p-news__single .has-small-font-size {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0px;
	line-height: 1;
	padding-left: 1em;
	position: relative;
}

.p-news__single .has-small-font-size::before {
	background: url(../images/common/vector.webp) no-repeat center center/cover;
	content: "";
	height: 6px;
	height: 0.375rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
}

.p-fv__top {
	margin-top: 10px;
	margin-top: 0.625rem;
}

.lang-en .p-fv__top {
	margin-top: 64px;
	margin-top: 4rem;
}

.p-fv__top .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.swiper-slide {
	margin-top: 12px;
	margin-top: 0.75rem;
}

.fv-row-01,
.fv-row-02,
.fv-row-03 {
	padding-bottom: 11px;
	padding-bottom: 0.6875rem;
}

.fv-row-01 img,
.fv-row-02 img,
.fv-row-03 img {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-slide__img01,
.p-slide__img02,
.p-slide__img03 {
	margin: 2px;
	margin: 0.125rem;
	position: relative;
}

.p-slide__img01 img,
.p-slide__img02 img,
.p-slide__img03 img {
	aspect-ratio: 675/450;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.5rem;
	height: auto;
	height: auto;
	object-fit: cover;
	object-position: center;
	-webkit-transform: scale(0.98);
	transform: scale(0.98);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.p-slide__img02 img {
	aspect-ratio: 450/276;
}

.p-slide__img03 img {
	aspect-ratio: 672/419;
}

.p-slide__info {
	background-color: #fff;
	border: 1px solid #242323;
	border-radius: 0.875rem;
	bottom: -8px;
	bottom: -0.5rem;
	max-width: 410px;
	max-width: 25.625rem;
	opacity: 0;
	padding: 14px 20px;
	padding: 0.875rem 1.25rem;
	padding-right: 66px;
	padding-right: 4.125rem;
	position: absolute;
	right: 8px;
	right: 0.5rem;
	-webkit-transform: translateX(2.5rem);
	transform: translateX(2.5rem);
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s;
}

.p-slide__categories {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1;
	padding-left: 1em;
	position: relative;
}

.lang-en .p-slide__categories {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.03em;
}

.p-slide__categories::before {
	background-color: #242323;
	border-radius: 50%;
	content: "";
	height: 6px;
	height: 0.375rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
}

.p-slide__tags {
	line-height: 19px;
	line-height: 1.1875rem;
	margin-top: 4px;
	margin-top: 0.25rem;
}

.p-slide__tag {
	color: #000;
	display: inline-block;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
	padding-right: 1em;
	position: relative;
}

.p-slide__tag:not(:last-child)::before {
	content: "・";
	position: absolute;
	right: -0.25em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-slide__arrow-icon {
	right: 20px;
	right: 1.25rem;
}

.note-slide {
	height: auto;
	margin-left: -72px;
	margin-left: -4.5rem;
}

.note-slide .slick-list {
	height: 100%;
}

.note-slide .slick-slide {
	padding-left: 20px;
	padding-left: 1.25rem;
	padding-right: 20px;
	padding-right: 1.25rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.note-slide .slick-track {
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
	padding-top: 40px;
	padding-top: 2.5rem;
}

.note-slide .slick-list .slick-current { /* 中央スライドだけちょっと上に上げる等、演出が必要なら */ /* transform: translateY(-10px); */
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
}

.note-slide .js-even-up .slick-slide.even {
	-webkit-transform: translate3d(0, -2.5rem, 0);
	transform: translate3d(0, -2.5rem, 0);
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
}

.note-slide .js-even-up .slick-slide.odd {
	-webkit-transform: translate3d(0, 0px, 0);
	transform: translate3d(0, 0px, 0);
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
}

.note-slide .slick-slide.odd {
	-webkit-transform: translate3d(0, -2.5rem, 0);
	transform: translate3d(0, -2.5rem, 0);
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0.03, 0.15, 1);
}

.p-note__slide-img01,
.p-note__slide-img02,
.p-note__slide-img03,
.p-note__slide-img04 {
	border-radius: 0.5rem;
	overflow: hidden;
}

.p-note__slide-img01 img,
.p-note__slide-img02 img,
.p-note__slide-img03 img,
.p-note__slide-img04 img {
	aspect-ratio: 317/183;
	-o-object-fit: cover;
	-o-object-position: center;
	margin-inline: auto;
	border-radius: 0.5rem;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.u-inline-block {
	display: inline-block;
}

.u-fade-in {
	opacity: 0;
	-webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
	transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
	transition: opacity 1s ease-out, transform 1s ease-out;
	transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
	visibility: hidden;
}

.is-visible-fade {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	visibility: visible;
}

.u-indent {
	padding-left: 1em;
	text-indent: -1em;
}

.u-indent2 {
	padding-left: 1.75em;
	text-indent: -1.75em;
}

.u-lh__md {
	line-height: 1.4;
}

.u-mt__20 {
	margin-top: 20px;
	margin-top: 1.25rem;
}

.u-mt__10 {
	margin-top: 10px;
	margin-top: 0.625rem;
}

.u-mt__30 {
	margin-top: 30px;
	margin-top: 1.875rem;
}

.u-mt__40 {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.u-mt__50 {
	margin-top: 50px;
	margin-top: 3.125rem;
}

.u-mt__60 {
	margin-top: 60px;
	margin-top: 3.75rem;
}

.u-mt__80 {
	margin-top: 80px;
	margin-top: 5rem;
}

.u-mt__100 {
	margin-top: 100px;
	margin-top: 6.25rem;
}

.u-ml__20 {
	margin-left: 20px;
	margin-left: 1.25rem;
}

.u-mb__20 {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.u-pt__50 {
	padding-top: 50px;
	padding-top: 3.125rem;
}

.u-pt__60 {
	padding-top: 60px;
	padding-top: 3.75rem;
}

.u-pt__100 {
	padding-top: 100px;
	padding-top: 6.25rem;
}

.u-pb__30 {
	padding-bottom: 30px;
	padding-bottom: 1.875rem;
}

.u-pb__180 {
	padding-bottom: 180px;
	padding-bottom: 11.25rem;
}

.u-py__100 {
	padding-bottom: 100px;
	padding-bottom: 6.25rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.u-py__50 {
	padding-bottom: 50px;
	padding-bottom: 3.125rem;
	padding-top: 50px;
	padding-top: 3.125rem;
}

.u-py__60 {
	padding-bottom: 60px;
	padding-bottom: 3.75rem;
	padding-top: 60px;
	padding-top: 3.75rem;
}

.u-overflow {
	overflow: hidden;
}

@media (any-hover: hover) {

.c-btn__more:hover .c-btn__text {
	border-bottom: 1px solid #242323;
	opacity: 0.7;
}

.c-button__black:hover {
	background-color: #fff;
}

.l-nav__list:hover {
	color: #fff;
}

.p-about__sns-link:hover {
	opacity: 0.8;
}

.p-contact__top-btn:hover img {
	opacity: 0.7;
}

.p-drawer__btn:hover {
	background-color: #fff;
	border: 1px solid #242323;
	color: #242323;
}

.p-header__top-contact:hover {
	opacity: 0.8;
}

.p-navigation-footer__list-item a:hover {
	opacity: 0.8;
}

.p-news__link:hover {
	opacity: 0.8;
}

.p-news__link:hover .p-news__thumbnail img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.p-note__top-link:hover {
	opacity: 0.8;
}

.p-note__top-link:hover .p-note__top-thumbnail img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.p-note__slide-link:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.p-project__top-thumbnail img:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.fv-row-01:hover img,
.fv-row-02:hover img,
.fv-row-03:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.p-slide__img01:hover .p-slide__info,
.p-slide__img02:hover .p-slide__info,
.p-slide__img03:hover .p-slide__info {
	cursor: pointer;
	opacity: 1;
	-webkit-transform: translateX(0rem);
	transform: translateX(0rem);
}

}

@media (min-width: 1921px) {

html {
	font-size: 0.8328vw;
}

}

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

.p-header__inner {
	max-width: 68.25rem;
	padding-left: 20px;
	padding-right: 20px;
}

.p-navigation-footer__list-item:not(:first-child) {
	margin-left: 1.25rem;
}

}

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

.p-header__title img {
	max-width: 27.5rem;
}

.p-slide__tag {
	font-size: 0.625rem;
}

}

@media (max-width: 900px) {

html {
	font-size: 1.7777777778vw;
}

}

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

body {
	font-size: 0.875rem;
}

.u-sp {
	display: block;
}

.u-sm {
	display: block;
}

.u-pc {
	display: none;
}

.u-lg {
	display: none;
}

html {
	font-size: 16px;
}

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

.c-breadcrumb {
	display: none;
}

.c-breadcrumb_sp {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.c-breadcrumb__current {
	margin-left: 0.375rem;
	padding-left: 1.25rem;
}

.c-button__black {
	max-width: 80%;
}

.c-title__xl {
	font-size: 2.5rem;
}

.c-title__lg {
	font-size: 1.5rem;
}

.c-title__treats {
	margin-top: 1.5rem;
}

.l-inner__lg {
	max-width: 45.125rem;
}

.l-inner__md {
	max-width: 45.125rem;
}

.l-inner__sm {
	max-width: 45.125rem;
}

.l-loading__container {
	max-width: 80%;
}

.l-loading__dot:nth-child(1) {
	-webkit-transform: translateY(0px) scale(0.8);
	transform: translateY(0px) scale(0.8);
}

.l-loading__dot:nth-child(2) {
	-webkit-transform: translateY(-0.5rem) scale(0.8);
	transform: translateY(-0.5rem) scale(0.8);
}

.l-loading__dot:nth-child(3) {
	-webkit-transform: translateY(-0.875rem) scale(0.8);
	transform: translateY(-0.875rem) scale(0.8);
}

.l-loading__dot:nth-child(4) {
	-webkit-transform: translateY(-1rem) scale(0.8);
	transform: translateY(-1rem) scale(0.8);
}

.l-loading__dot:nth-child(5) {
	-webkit-transform: translateY(-1.25rem) scale(0.8);
	transform: translateY(-1.25rem) scale(0.8);
}

.l-loading__dot:nth-child(6) {
	-webkit-transform: translateY(-1rem) scale(0.8);
	transform: translateY(-1rem) scale(0.8);
}

.l-loading__dot:nth-child(7) {
	-webkit-transform: translateY(-0.8125rem) scale(0.8);
	transform: translateY(-0.8125rem) scale(0.8);
}

.l-loading__dot:nth-child(8) {
	-webkit-transform: translateY(-0.5rem) scale(0.8);
	transform: translateY(-0.5rem) scale(0.8);
}

.l-loading__dot:nth-child(9) {
	-webkit-transform: translateY(0.0625rem) scale(0.8);
	transform: translateY(0.0625rem) scale(0.8);
}

.l-loading__dot:nth-child(10) {
	-webkit-transform: translateY(0.5rem) scale(0.8);
	transform: translateY(0.5rem) scale(0.8);
}

.l-loading__dot:nth-child(11) {
	-webkit-transform: translateY(0.75rem) scale(0.8);
	transform: translateY(0.75rem) scale(0.8);
}

.l-loading__dot:nth-child(12) {
	-webkit-transform: translateY(1rem) scale(0.8);
	transform: translateY(1rem) scale(0.8);
}

.l-loading__dot:nth-child(13) {
	-webkit-transform: translateY(1rem) scale(0.8);
	transform: translateY(1rem) scale(0.8);
}

.l-loading__dot:nth-child(14) {
	-webkit-transform: translateY(0.9375rem) scale(0.8);
	transform: translateY(0.9375rem) scale(0.8);
}

.l-loading__dot:nth-child(15) {
	-webkit-transform: translateY(0.75rem) scale(0.8);
	transform: translateY(0.75rem) scale(0.8);
}

.l-loading__dot:nth-child(16) {
	-webkit-transform: translateY(0.5rem) scale(0.8);
	transform: translateY(0.5rem) scale(0.8);
}

.l-loading__dot:nth-child(17) {
	-webkit-transform: translateY(0px) scale(0.8);
	transform: translateY(0px) scale(0.8);
}

.my-modal-content {
	width: 100%;
}

.l-nav__lists {
	max-width: 21.25rem;
	padding: 0.25rem 0.5rem;
}

.l-nav__list {
	margin-right: 0rem;
}

.l-nav__menu-link {
	font-size: 0.75rem;
	padding: 0.375rem 0.625rem;
}

#nav-bg {
	display: none;
}

.l-nav__menu-instagram {
	margin-left: -1.25rem;
}

.l-nav__menu-instagram img {
	max-width: 2.1875rem;
}

.p-about__fv {
	padding-top: 3.375rem;
}

.p-about__fv-img {
	margin-top: 6rem;
}

.p-about__fv-img img {
	aspect-ratio: 390/239;
}

.p-about__title {
	font-size: 2rem;
}

.p-about__philosophy-container {
	display: block;
}

.p-about__philosophy-img {
	margin-top: 2.5rem;
}

.p-about__philosophy-img img {
	aspect-ratio: 390/494;
	margin-inline: auto;
	max-width: 37.5rem;
}

.p-about__service-text {
	letter-spacing: 0px;
	margin-top: 0.75rem;
}

.p-about__service-content {
	padding: 1.25rem;
}

.p-about__service-title {
	line-height: 1.3;
}

.p-about__service-content-text {
	letter-spacing: 0.5px;
}

.p-about__team-up__text {
	letter-spacing: 0px;
	margin-top: 0.75rem;
}

.p-about__architect-container {
	display: block;
}

.p-about__architect-content {
	margin-left: 0;
	margin-top: 2.5rem;
}

.p-about__archive {
	text-align: left;
}

.p-about__company-term {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 5rem;
	flex: 0 0 5rem;
}

.p-about__contact.--single {
	margin-top: 0rem;
}

.p-about__contact-text {
	font-size: 1rem;
}

.p-contact__top-text {
	font-size: 1rem;
	margin-left: 0;
	margin-top: 3rem;
}

.p-contact__body {
	margin-top: 4.25rem;
}

.p-contact__message {
	font-size: 0.875rem;
	letter-spacing: -0.5px;
	line-height: 2;
}

.p-contact__list {
	display: block;
}

.p-contact__list:not(:first-child) {
	margin-top: 1.25rem;
}

.p-contact__list-mail {
	margin-left: 0;
	margin-top: 0.75rem;
}

.p-contact__note {
	margin-top: 0.75rem;
}

.p-contact__question-body {
	padding-bottom: 5rem;
}

.p-contact__recruit-body {
	padding-bottom: 5rem;
}

.p-contact__title {
	font-size: 2rem;
}

.p-drawer {
	display: block;
}

.p-footer {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.p-footer__address {
	letter-spacing: 0;
}

.p-footer__inner {
	max-width: 17.5rem;
}

.p-footer__container {
	display: block;
}

.p-footer__nav {
	margin-top: 0rem;
}

.p-footer__nav-lists {
	display: block;
	margin-top: 2.5rem;
}

.p-footer__nav-list:not(:first-child) {
	margin-left: 0;
	margin-top: 1.25rem;
}

.p-footer__lang-switch {
	display: none;
}

.p-footer__copyright {
	text-align: center;
}

.home .p-header__top {
	padding: 0.75rem;
	padding-left: 1.25rem;
}

.home .p-header__logo img {
	margin-top: 0.5rem;
	max-width: 11.25rem;
}

.p-header__top {
	padding: 0.75rem;
	pointer-events: auto;
}

.p-header__logo img {
	margin-top: 0.5rem;
	max-width: 11.25rem;
}

.p-header__top-icon {
	display: none;
}

.p-header__inner {
	padding-left: 40px;
	padding-right: 40px;
}

.p-header__container {
	display: block;
	margin-top: 1.25rem;
}

.p-header__container.is-margin {
	margin-top: 3.75rem;
}

.p-header__about {
	margin-top: 5.875rem;
}

.p-header__subTitle {
	font-size: 0.75rem;
	padding-left: 0rem;
}

.p-header__text {
	font-size: 0.75rem;
	padding-left: 0rem;
}

.p-header__btn {
	padding-left: 0rem;
}

.p-header__name {
	margin-top: 1.25rem;
	padding-right: 1.25rem;
}

.p-navigation-footer__list {
	display: block;
	padding-left: 1.25rem;
}

.p-navigation-footer__list-item {
	font-size: 1rem;
}

.p-navigation-footer__list-item:not(:first-child) {
	margin-left: 0;
}

.p-news__single p {
	font-size: 0.875rem;
	margin-top: 0rem;
}

.p-news__single-thumbnail img {
	aspect-ratio: 390/221;
}

.p-news__single-heading {
	font-size: 1.5rem;
}

.p-news__btn-more {
	margin-top: 3.4375rem;
}

.p-news {
	padding-top: 3.375rem;
}

.p-news__content {
	margin-top: 1rem;
}

.p-news__top {
	padding-top: 2.75rem;
}

.p-news__top-container {
	display: block;
}

.p-news__article {
	margin-left: 0;
	margin-top: 1.25rem;
}

.p-news__list:not(:first-child) {
	border: none;
}

.p-news__list {
	border: none;
	padding-bottom: 1.5625rem;
	padding-top: 1.5625rem;
}

.p-news__link {
	display: block;
	padding-right: 0;
}

.p-news__thumbnail {
	max-width: none;
}

.p-news__list-content {
	margin-left: 0;
	margin-top: 0.75rem;
}

.p-news__top-btn {
	text-align: center;
}

.p-note__top {
	padding-bottom: 6rem;
}

.p-note__top-head {
	display: block;
	margin-left: 0.875rem;
}

.p-note__top-text {
	margin-left: 0;
	margin-top: 3rem;
}

.p-project__single-thumbnail {
	margin-top: 0rem;
}

.p-project__single-thumbnail img {
	aspect-ratio: 390/221;
}

.p-project__single-heading {
	font-size: 1.5rem;
}

.p-project__top {
	padding-bottom: 3.75rem;
	padding-top: 0rem;
}

.p-project__top.is-margin {
	padding-top: 7.75rem;
}

.p-project__top-menu {
	gap: 0.5rem 0rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.p-project__top-tag-link {
	text-align: center;
}

.p-project__top-tags {
	margin-top: 0.375rem;
}

.p-project__top-link {
	margin-top: 2.5rem;
}

.p-project__top-thumbnail img {
	aspect-ratio: 390/231;
}

.p-project__top-heading {
	font-size: 1.125rem;
}

.p-project {
	padding-top: 3.375rem;
}

.p-project__tags {
	gap: 0.5rem 0rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 2.5rem;
}

.p-project__tags-many {
	gap: 0.625rem 0rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.p-project__tag-link {
	text-align: center;
}

.p-project__lists {
	grid-template-columns: repeat(1, 1fr);
}

.p-project__message {
	font-size: 1.125rem;
}

.p-project__btn-more {
	margin-top: 3rem;
}

.p-project__single__content p {
	font-size: 0.875rem;
}

.p-project__single__content .has-background {
	font-size: 0.875rem;
}

.p-project__single__content .wp-block-column img {
	aspect-ratio: 190/350;
}

.p-project__single__content .wp-block-columns {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.p-project__single__content .wp-block-columns.is-layout-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.p-news__single .has-background {
	font-size: 0.875rem;
}

.p-news__single .wp-block-columns {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.p-news__single .wp-block-columns.is-layout-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.p-fv__top {
	margin-top: 0.75rem;
}

.fv-row-01,
.fv-row-02,
.fv-row-03 {
	padding-bottom: 0.5rem;
}

.p-slide__img01 img,
.p-slide__img02 img,
.p-slide__img03 img {
	aspect-ratio: 400/265;
	-webkit-transform: scale(0.99);
	transform: scale(0.99);
}

.p-slide__img02 img {
	aspect-ratio: 267/178;
}

.p-slide__img03 img {
	aspect-ratio: 400/265;
}

.p-slide__info {
	display: none;
}

.note-slide .slick-list {
	margin-left: 2rem;
}

.note-slide .slick-slide {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.note-slide .js-even-up .slick-slide.even {
	-webkit-transform: translate3d(0, 2.5rem, 0);
	transform: translate3d(0, 2.5rem, 0);
}

.note-slide .slick-slide.odd {
	-webkit-transform: translate3d(0, 2.5rem, 0);
	transform: translate3d(0, 2.5rem, 0);
}

.p-news__top-time {
	margin-bottom: 5rem;
}

.u-inline-block__sm {
	display: inline-block;
}

}

@media (max-width: 768px) {

.my-modal-content img {
	width: 90vw;
}

}

@media screen and (any-hover: hover) and (max-width: 768px) {

.fv-row-01:hover img,
.fv-row-02:hover img,
.fv-row-03:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

}

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

.p-project__top-menu {
	margin-left: 2.125rem;
	max-width: 21.875rem;
}

.p-project__tags-many {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: 0.25rem;
}

.p-project__tags-many .p-project__top-tag-link:nth-child(3) {
	margin-left: 0rem;
}

.p-project__tags-many .p-project__top-tag-link:nth-child(5) {
	margin-left: 0rem;
}

.p-project__top-tag-link:nth-child(3) {
	margin-left: 3.75rem;
}

.p-project__tags {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: 0rem;
	max-width: 21.875rem;
}

.p-project__tags-many {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
}

.p-project__tags-many .p-project__tag-link:nth-child(3) {
	margin-left: 0rem;
}

.p-project__tags-many .p-project__tag-link:nth-child(5) {
	margin-left: 0rem;
}

.p-project__tag-link:nth-child(3) {
	margin-left: 5rem;
}

}

@media (max-width: 430px) {

html {
	font-size: 3.7209302326vw;
}

}

@-webkit-keyframes transformLeftRight {

0% {
	-webkit-transform: translateX(-250%) translateY(-50%);
	transform: translateX(-250%) translateY(-50%);
}

100% {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

}

@keyframes transformLeftRight {

0% {
	-webkit-transform: translateX(-250%) translateY(-50%);
	transform: translateX(-250%) translateY(-50%);
}

100% {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

}

@-webkit-keyframes transformRightLeft {

0% {
	-webkit-transform: translateX(0) translateY(-50%);
	transform: translateX(0) translateY(-50%);
}

100% {
	-webkit-transform: translateX(150%) translateY(-50%);
	transform: translateX(150%) translateY(-50%);
}

}

@keyframes transformRightLeft {

0% {
	-webkit-transform: translateX(0) translateY(-50%);
	transform: translateX(0) translateY(-50%);
}

100% {
	-webkit-transform: translateX(150%) translateY(-50%);
	transform: translateX(150%) translateY(-50%);
}

}

@-webkit-keyframes transformTopBottom {

0% {
	-webkit-transform: translateX(-50%) translateY(-250%);
	transform: translateX(-50%) translateY(-250%);
}

100% {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

}

@keyframes transformTopBottom {

0% {
	-webkit-transform: translateX(-50%) translateY(-250%);
	transform: translateX(-50%) translateY(-250%);
}

100% {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

}

@-webkit-keyframes transformBottomTop {

0% {
	-webkit-transform: translateX(-50%) translateY(0);
	transform: translateX(-50%) translateY(0);
}

100% {
	-webkit-transform: translateX(-50%) translateY(150%);
	transform: translateX(-50%) translateY(150%);
}

}

@keyframes transformBottomTop {

0% {
	-webkit-transform: translateX(-50%) translateY(0);
	transform: translateX(-50%) translateY(0);
}

100% {
	-webkit-transform: translateX(-50%) translateY(150%);
	transform: translateX(-50%) translateY(150%);
}

}

@-webkit-keyframes cursorTransformLeftRight {

0% {
	-webkit-transform: translateX(-250%) translateY(-50%);
	transform: translateX(-250%) translateY(-50%);
}

100% {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

}

@keyframes cursorTransformLeftRight {

0% {
	-webkit-transform: translateX(-250%) translateY(-50%);
	transform: translateX(-250%) translateY(-50%);
}

100% {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

}

@-webkit-keyframes cursorTransformRightLeft {

0% {
	-webkit-transform: translateX(0) translateY(-50%);
	transform: translateX(0) translateY(-50%);
}

100% {
	-webkit-transform: translateX(150%) translateY(-50%);
	transform: translateX(150%) translateY(-50%);
}

}

@keyframes cursorTransformRightLeft {

0% {
	-webkit-transform: translateX(0) translateY(-50%);
	transform: translateX(0) translateY(-50%);
}

100% {
	-webkit-transform: translateX(150%) translateY(-50%);
	transform: translateX(150%) translateY(-50%);
}

}

@-webkit-keyframes fadeInUp {

from {
	opacity: 0;
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

}

@keyframes fadeInUp {

from {
	opacity: 0;
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

}


/*# sourceMappingURL=style.css.map */
