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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

body {
	background: #f6f4ed;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}

body.is-drawer-open {
	overflow: hidden;
}

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

a {
	color: inherit;
}

.animated__fadeIn {
	opacity: 0;
	transition: opacity 0.3s ease, translate 0.3s ease;
	translate: 0 40px;
}

.animated__fadeIn.js-show {
	opacity: 1;
	translate: 0 0;
}

.l-fv-inner {
	padding-bottom: 50px;
	padding-inline: 16px;
	padding-top: 30px;
}

.l-inner {
	padding-bottom: 50px;
	padding-inline: 16px;
}

.l-header-inner {
	padding-block: 8px;
	padding-inline: 16px;
}

.l-drawer-inner {
	padding: 16px;
}

.l-footer-inner {
	padding-inline: 32px;
	padding-top: 24px;
}

.l-checkered {
	background-color: #ffffff;
	background-image: linear-gradient(90deg, rgba(230, 225, 212, 0.5019607843) 1px, transparent 1px), linear-gradient(rgba(230, 225, 212, 0.5019607843) 1px, transparent 1px);
	background-position: 10px 10px;
	background-size: 39px 39px;
	border-radius: 48px;
	height: 100%;
	padding-block: 64px;
	padding-inline: 16px;
	width: 100%;
	z-index: -5;
}

.l-single-inner {
	padding-bottom: 50px;
	padding-inline: 16px;
}

.c-drawer-overlay {
	background: rgba(0, 0, 0, 0.8);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 0.3s;
	visibility: hidden;
}

.c-drawer-overlay.is-checked {
	opacity: 1;
	visibility: visible;
}

.c-button-drawer {
	height: 42px;
	position: fixed;
	position: relative;
	width: 42px;
	z-index: 50;
}

.c-button-drawer__btn.open .c-button-drawer__bar:nth-child(1) {
	top: calc(50% - 9px);
}

.c-button-drawer__btn.open .c-button-drawer__bar:nth-child(2) {
	top: 50%;
}

.c-button-drawer__btn.open .c-button-drawer__bar:nth-child(3) {
	top: calc(50% + 9px);
}

.c-button-drawer__btn.close .c-button-drawer__bar {
	background: #fff;
}

.c-button-drawer__btn.close .c-button-drawer__bar:nth-child(1),
.c-button-drawer__btn.close .c-button-drawer__bar:nth-child(3) {
	top: 50%;
}

.c-button-drawer__btn.close .c-button-drawer__bar:nth-child(1) {
	transform: rotate(45deg);
}

.c-button-drawer__btn.close .c-button-drawer__bar:nth-child(3) {
	transform: rotate(-45deg);
}

.c-button-drawer__btn.close .c-button-drawer__bar:nth-child(2) {
	display: none;
}

.c-button-drawer__bar {
	background: #222222;
	border-radius: 16px;
	height: 2px;
	left: 5px;
	position: absolute;
	width: 32px;
}

.c-contact-btn {
	background: #ec7b09; /* 36px */
	border: 2px solid #ec7b09;
	border-radius: 32px;
	color: #fff;
	display: inline-block;
	font-family: "Kanit", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 150%;
	padding: 8px 24px;
	text-align: center;
	transition: all 0.3s;
	width: 100%;
}

.c-contact-btn.header-btn {
	font-size: 16px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.c-breadcrumb {
	-webkit-overflow-scrolling: touch;
	margin-top: 40px;
	overflow-x: auto;
	white-space: nowrap;
	word-break: keep-all;
}

.c-breadcrumb__items {
	display: flex;
	gap: 10px;
}

.c-breadcrumb__item {
	align-items: center;
	color: #8c8c8c;
	display: flex;
	font-size: 14px;
	line-height: 1.5;
}

.c-breadcrumb__item:not(:last-child)::after {
	background-color: #8c8c8c;
	content: "";
	height: 1px;
	margin-left: 10px;
	width: 24px;
}

.c-breadcrumb__item:last-child {
	color: #000;
	padding-right: 20px;
}

.c-title {
	opacity: 0; /* 最初は透明 */
}

.c-title.fade-in {
	-webkit-animation: fade-in 1s forwards;
	animation: fade-in 1s forwards;
}

.c-title__en {
	color: rgba(222, 216, 197, 0.6);
	font-family: "Kanit", sans-serif;
	font-size: 96px;
	font-style: normal;
	font-weight: 700;
}

.c-title__ja {
	font-size: 20px;
	font-weight: 700;
	line-height: 180%; /* 36px */
	padding-left: 52px;
	position: relative;
}

.c-title__ja::before {
	background: #222222;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 40px;
}

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

.c-title.center .c-title__ja {
	padding: unset;
}

.c-title.center .c-title__ja::before {
	height: 0;
	width: 0;
}

.bgImg {
	opacity: 0; /* 最初は透明 */
}

.bgImg.fade-in {
	-webkit-animation: fade-in 1s forwards;
	animation: fade-in 1s forwards;
}

.c-tags {
	align-items: center;
	display: flex;
	gap: 16px;
}

.c-tags__tag { /* 26px */
	-webkit-text-decoration-line: underline;
	-webkit-text-decoration-style: solid;
	-webkit-text-decoration-skip: ink;
	color: #ec7b09;
	font-size: 13px;
	font-weight: 400;
	line-height: 200%;
	text-decoration-line: underline;
	text-decoration-skip-ink: auto;
	text-decoration-style: solid;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.c-page-title__en {
	font-family: "Kanit", sans-serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 120%; /* 76.8px */
}

.c-page-title__ja {
	font-size: 20px;
	font-weight: 700;
	line-height: 180%;
	margin-top: 8px; /* 36px */
}

.c-common-h1 {
	font-size: 24px;
	font-weight: 700;
	line-height: 160%; /* 38.4px */
}

.c-common-h2 {
	border-left: 3px solid #ec7b09;
	font-size: 20px;
	font-weight: 700;
	line-height: 180%;
	margin-top: 64px; /* 36px */
	padding-inline: 24px;
}

.c-common-text {
	font-size: 15px;
	font-weight: 400;
	line-height: 200%;
	margin-top: 8px; /* 30px */
}

.c-common-text ul li {
	padding-left: 1em; /* ← 2行目以降の開始位置 */
	text-indent: -1em; /* ← 1行目だけ戻す */
}

.c-common-text ul li::before {
	content: "・";
}

.c-common-text ol {
	counter-reset: num;
	list-style-position: inside;
}

.c-common-text ol li {
	counter-increment: num;
	padding-left: 1em; /* ← 2行目以降の開始位置 */
	text-indent: -1em; /* ← 1行目だけ戻す */
}

.c-common-text ol li::before {
	content: counter(num) ". ";
	font-weight: 400;
}

.c-common-tag {
	background: #222;
	border-radius: 4px;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 200%;
	padding-inline: 8px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content; /* 26px */
}

.c-common-category {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	white-space: nowrap;
	word-break: keep-all;
}

.c-common-category__items {
	display: flex;
	gap: 16px;
}

.c-common-category__item {
	background: #fff;
	border: 1px solid #222;
	border-radius: 24px;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 200%;
	padding: 4px 24px; /* 28px */
	transition: all 0.3s;
}

.c-common-category__item:hover {
	background: #222;
	color: #fff;
}

.c-common-category__item.current {
	background: #222;
	color: #fff;
}

.c-work-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.c-work-card__image {
	border-radius: 24px;
	height: 206px;
	overflow: hidden;
	position: relative;
}

.c-work-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	width: 100%;
}

.c-work-card__title {
	color: #222;
	font-size: 16px;
	transition: all 0.3s;
}

.c-work-card__text { /* 必須 */
	-webkit-box-orient: vertical; /* 行数を制限 */
	line-clamp: 2; /* 必須 */
	-webkit-line-clamp: 2;
	color: #8c8c8c; /* 26px */
	display: -webkit-box;
	font-size: 13px;
	font-weight: 400;
	line-height: 200%;
	margin-top: 8px;
	overflow: hidden; /* はみ出た部分を非表示 */
}

.c-pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 0;
}

.c-pagination li {
	transition: all 0.3s;
}

.c-pagination li:hover {
	background: #222;
	color: #fff;
}

.c-pagination__item,
.c-pagination__prev,
.c-pagination__next {
	align-items: center;
	background: #fff;
	border: solid 1px #222;
	border-radius: 8px;
	display: flex;
	font-size: 14px;
	justify-content: center;
	padding-block: 8px;
}

.c-pagination__item.current,
.c-pagination__prev.current,
.c-pagination__next.current {
	background: #222;
	color: #fff;
}

.c-pagination__item {
	width: 30px;
}

.c-pagination__prev,
.c-pagination__next {
	width: 56px;
}

.p-opening {
	background: #f6f4ed;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: opacity 1s ease;
	width: 100%;
	z-index: 300;
}

.p-opening.is-fade .p-opening__title {
	opacity: 0;
	transition: opacity 0.6s ease;
}

.p-opening.is-fade {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.p-opening__body {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
}

.p-opening__title {
	font-family: "Kanit", sans-serif;
	font-size: 77px;
	font-weight: 700;
	line-height: 100%;
	margin: auto auto;
	opacity: 0;
	position: relative;
	transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1); /* 157.158px */
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-opening__title .underMarker { /* 線の太さ */
	-webkit-text-decoration-color: #ec7b09;
	-webkit-text-decoration-skip-ink: none;
	text-decoration: underline;
	text-decoration-color: #ec7b09;
	text-decoration-skip-ink: none; /* 下線 */
	text-decoration-thickness: 0.2em; /* 線の色 */
	text-underline-offset: -0.1em;
}

.p-opening__title::after {
	aspect-ratio: 1/1;
	background-image: url(../img/fv-img-hand.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: calc(50% + 25px);
	position: absolute;
	top: 25px;
	transform: rotate(9deg);
	width: 42px;
	z-index: -1;
}

/* スクロール禁止 */

body.is-fixed {
	overflow: hidden;
}

.p-header {
	height: 72px;
	left: 0;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 20;
}

.p-header__content {
	-webkit-backdrop-filter: blur(15px);
	align-items: center;
	backdrop-filter: blur(15px);
	background: rgba(255, 255, 255, 0.8);
	border-radius: 48px;
	box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding-block: 8px;
	padding-inline: 24px;
}

.p-header__logo img {
	height: 28px;
	width: 100%;
}

.p-header__nav {
	display: none;
}

.p-header__link {
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	position: relative;
	transition: color 0.3s;
}

.p-header__link::after {
	background: #ec7b09;
	bottom: -3px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
	width: 100%;
}

.p-header__link:hover {
	color: #ec7b09;
}

.p-header__link:hover::after {
	transform: scale(1, 1);
}

.p-fv__image {
	flex-shrink: 0;
	text-align: center;
}

.p-fv__image img {
	aspect-ratio: 275/255;
	width: 275px;
}

.p-fv__bg-01 {
	position: relative;
}

.p-fv__bg-01::after {
	aspect-ratio: 146.5/67;
	background-image: url(../img/fv-img-02.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: calc(50% + 40px);
	position: absolute;
	top: -20px;
	width: 146.5px;
}

.p-fv__title {
	font-family: "Kanit", sans-serif;
	font-size: 77px;
	font-weight: 700;
	line-height: 100%;
	margin: 0 auto;
	margin-top: 20px;
	position: relative; /* 157.158px */
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-fv__title .underMarker { /* 線の太さ */
	-webkit-text-decoration-color: #ec7b09;
	-webkit-text-decoration-skip-ink: none;
	text-decoration: underline;
	text-decoration-color: #ec7b09;
	text-decoration-skip-ink: none; /* 下線 */
	text-decoration-thickness: 0.2em; /* 線の色 */
	text-underline-offset: -0.1em;
}

.p-fv__title::after {
	aspect-ratio: 1/1;
	background-image: url(../img/fv-img-hand.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: calc(50% + 25px);
	position: absolute;
	top: 25px;
	transform: rotate(9deg);
	width: 42px;
	z-index: -1;
}

.p-fv__text {
	font-size: 16px;
	line-height: 180%;
	margin-top: 20px; /* 28.8px */
}

.p-about {
	overflow: hidden;
}

.p-about__inner {
	padding-bottom: 150px;
}

.p-about__bg-01 {
	display: none;
}

.p-about__bg-02 {
	position: relative;
}

.p-about__bg-02::after {
	aspect-ratio: 1/1;
	background-image: url(../img/about-img-bg-02.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	position: absolute;
	right: -100px;
	top: -80px;
	transform: rotate(9deg);
	width: 313px;
	z-index: -1;
}

.p-about__head {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-about__lead {
	-ms-writing-mode: tb-rl;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 180%;
	padding: 30px 15px;
	position: relative;
	writing-mode: vertical-rl;
}

.p-about__lead::before,
.p-about__lead::after {
	content: "";
	height: 30px;
	position: absolute;
	width: 30px;
}

.p-about__lead::before {
	border-right: solid 8px rgba(222, 216, 197, 0.6);
	border-top: solid 8px rgba(222, 216, 197, 0.6);
	right: 0;
	top: 0;
}

.p-about__lead::after {
	border-bottom: solid 8px rgba(222, 216, 197, 0.6);
	border-left: solid 8px rgba(222, 216, 197, 0.6);
	bottom: 0;
	left: 0;
}

.p-about__image {
	aspect-ratio: 146/129;
	width: clamp(146px, 43vw, 220px);
}

.p-about__textWrap {
	display: flex;
	flex-direction: column;
	font-size: 15px;
	font-weight: 400;
	gap: 30px;
	line-height: 200%;
	margin-top: 40px; /* 30px */
}

.p-drawer-content {
	background: #222222;
	height: 100vh;
	position: fixed;
	right: -200%;
	top: 0;
	transition: all 0.5s;
	visibility: hidden;
	width: 95%;
	z-index: 40;
}

.p-drawer-content.is-checked {
	right: 0;
	visibility: visible;
}

.p-drawer-content__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-drawer-content__text {
	color: #fff;
	font-family: "Kanit", sans-serif;
	font-size: 26px;
	line-height: 150%; /* 38.293px */
}

.p-drawer-content__menu {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 32px;
	width: 100%;
}

.p-drawer-content__link {
	border-bottom: 1px solid #464646;
	color: #fff;
	font-family: "Kanit", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 140%;
	padding-block: 16px;
	text-indent: 1em;
	width: 100%;
}

.p-drawer-content__link:first-child {
	border-top: 1px solid #464646;
}

.p-drawer-content__btn {
	margin-top: 32px;
}

.p-profile__inner {
	margin-top: 200px;
}

.p-profile__bg {
	position: relative;
}

.p-profile__bg::after {
	aspect-ratio: 159/131;
	background-image: url(../img/profile-img-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	position: absolute;
	right: calc(50% - 170px);
	top: -120px;
	width: 159px;
	z-index: -1;
}

.p-profile__photo {
	flex-shrink: 0;
	height: 256px;
	margin: 0 auto;
	margin-top: 40px;
	width: 256px;
}

.p-profile__photo img {
	height: 100%;
	width: 100%;
}

.p-profile__name { /* 40px */
	border-bottom: 1px solid #222222;
	font-size: 20px;
	line-height: 200%;
	margin-top: 28px;
}

.p-profile__name span {
	color: #cac4b1;
	font-family: "Kanit", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 200%;
	padding-left: 10px; /* 32px */
}

.p-profile__line {
	border-bottom: 1px solid rgba(0, 0, 0, 0.11);
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-block: 12px;
}

.p-profile__label {
	background: #222;
	border-radius: 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 150%;
	padding: 2px 24px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content; /* 19.5px */
}

.p-profile__text {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%; /* 28px */
}

.p-works__swiper-container,
.p-works__swiper,
.p-works__swiper-wrapper,
.p-works__swiper-slide {
	position: relative;
}

.p-works__swiper-container {
	margin-inline: calc((100vw - 100%) / 2 * -1);
	margin-top: 30px;
}

.p-works__swiper {
	margin-bottom: 80px !important;
}

.p-works__swiper-slide {
	width: 309px !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: unset;
	left: unset;
	margin: 0;
	padding: 0;
	right: unset;
	top: unset;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
	top: calc(100% + 20px);
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
	background: #c8c3b6;
}

.p-works__inner {
	padding-bottom: 100px;
	padding-top: 100px;
}

.p-works__bg-01 {
	position: relative;
}

.p-works__bg-01::after {
	aspect-ratio: 134/117;
	background-image: url(../img/works-img-bg-01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	position: absolute;
	right: calc(50% - 170px);
	top: -220px;
	transform: rotate(9deg);
	width: 134px;
	z-index: -1;
}

.p-works__image {
	border-radius: 13px;
	height: 206px;
}

.p-works__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-works__title {
	color: #222;
	font-size: 16px;
	line-height: 200%;
	margin-top: 4px; /* 32px */
}

.p-works__text { /* 必須 */
	-webkit-box-orient: vertical; /* 必須 */
	-webkit-line-clamp: 2;
	color: #8c8c8c; /* 26px */
	display: -webkit-box;
	font-size: 13px;
	font-weight: 400;
	line-height: 200%;
	margin-bottom: 16px;
	margin-top: 4px; /* 行数を制限 */
	overflow: hidden; /* はみ出た部分を非表示 */
}

.p-works__btn {
	align-items: center;
	background: #222;
	border: 2px solid #222;
	border-radius: 40px;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 400;
	justify-content: center; /* 22.5px */
	letter-spacing: 4.5px;
	line-height: 150%;
	margin: 0 auto;
	padding-block: 16px;
	padding-left: 40px;
	padding-right: 64px;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-works__btn::after {
	background-image: url(../img/works-img-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 24px;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translate(0, -50%);
	transition: all 0.3s;
	width: 24px;
}

.p-service__background {
	padding-bottom: 24px;
	padding-top: 48px;
	position: relative;
}

.p-service__background::after {
	background-color: #ffffff;
	background-image: linear-gradient(90deg, rgba(230, 225, 212, 0.5019607843) 1px, transparent 1px), linear-gradient(rgba(230, 225, 212, 0.5019607843) 1px, transparent 1px);
	background-position: 10px 10px;
	background-size: 39px 39px;
	border-radius: 48px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -5;
}

.p-service__bg-01 {
	position: relative;
}

.p-service__bg-01::after {
	aspect-ratio: 110/94;
	background-image: url(../img/service-img-bg-01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: 50%;
	position: absolute;
	top: -120px;
	transform: translate(-50%, 0) rotate(-13.648deg);
	width: 150px;
	z-index: -1;
}

.p-service__bg-02 {
	position: relative;
}

.p-service__bg-02::after {
	aspect-ratio: 1/1;
	background-image: url(../img/service-img-bg-02.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: -100px;
	position: absolute;
	top: 0;
	transform: rotate(8.42deg);
	width: 382px;
	z-index: -1;
}

.p-service__cards {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 80px;
}

.p-service__card {
	align-items: center;
	background: #f1efe9;
	border: 1px solid #444;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	max-width: 456px;
	padding: 24px 32px;
	width: 100%;
}

.p-service__icon img {
	height: 114px;
	width: 134px;
}

.p-service__wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.p-service__num {
	color: #ec7b09;
	font-family: "Kanit", sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 180%; /* 50.4px */
}

.p-service__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 180%; /* 36px */
}

.p-service__text {
	color: #5a5a5a;
	font-size: 14px;
	font-weight: 400;
	line-height: 200%; /* 28px */
}

.p-service__contact {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	margin-top: 36px;
}

.p-service__contactText {
	font-size: 16px;
	line-height: 150%;
	position: relative; /* 24px */
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-service__contactText::before,
.p-service__contactText::after {
	background-color: #222222;
	content: "";
	height: 2px;
	position: absolute;
	top: 50%;
	width: 24px;
}

.p-service__contactText::before {
	left: -30px;
	transform: rotate(60deg);
}

.p-service__contactText::after {
	right: -30px;
	transform: rotate(-60deg);
}

.p-service__contact-btn {
	background: #ec7b09;
	border: 2px solid #ec7b09;
	border-radius: 72px;
	color: #fff;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-family: "Kanit", sans-serif;
	font-size: 20px;
	font-weight: 700; /* 30px */
	letter-spacing: 2px;
	line-height: 150%;
	padding: 20px 64px;
	transition: all 0.3s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-flow__inner {
	padding-top: 64px;
}

.p-flow__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 180%; /* 39.6px */
	text-align: center;
}

.p-flow__cards {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-top: 16px;
}

.p-flow__card {
	background: #fff;
	border: 1px solid #444;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	max-width: 456px;
	padding: 16px 16px 24px 16px;
	position: relative;
	width: 100%;
}

.p-flow__card:not(:last-child)::after {
	background-image: url(../img/service-img-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -21px;
	content: "";
	height: 13px;
	left: 50%;
	position: absolute;
	transform: translate(-50%, 0);
	width: 22px;
}

.p-flow__wrap {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.p-flow__num {
	color: #ec7b09;
	font-family: "Kanit", sans-serif;
	font-size: 24px;
	line-height: 180%; /* 43.2px */
}

.p-flow__mainText {
	font-size: 20px;
	line-height: 180%; /* 36px */
}

.p-flow__subText {
	color: #5a5a5a;
	font-size: 14px;
	font-weight: 400;
	line-height: 200%; /* 28px */
}

.p-footer {
	background: #333;
}

.p-footer__contents {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.p-footer__left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-footer__logo {
	color: #fff;
	font-family: "Kanit", sans-serif;
	font-size: 28px;
	line-height: 150%; /* 42px */
}

.p-footer__sns {
	align-items: center;
	display: flex;
	gap: 10px;
}

.p-footer__sns-link {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	display: flex;
	height: 39px;
	justify-content: center;
	transition: 0.3s;
	width: 39px;
}

.p-footer__sns-link img {
	height: 19px;
	width: 19px;
}

.p-footer__sns-link:hover {
	opacity: 0.7;
}

.p-footer__nav {
	display: flex;
	justify-content: center;
}

.p-footer__nav .p-footer__nav-link + .p-footer__nav-link {
	border-left: 1px solid #464646;
}

.p-footer__nav-link {
	color: #fff;
	font-family: "Kanit", sans-serif;
	font-size: 16px;
	font-weight: 500;
	padding-block: 4px;
	padding-inline: 16px;
	position: relative;
}

.p-footer__copyright {
	color: rgba(255, 255, 255, 0.5);
	font-family: "Kanit", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 200%;
	text-align: center;
}

.p-works-archive__body {
	margin-block: 40px;
}

.p-works-archive__background {
	margin-inline: calc((100vw - 100%) / 2 * -1);
	padding-inline: 16px;
	padding-top: 48px;
	position: relative;
}

.p-works-archive__background::after {
	background-color: #ffffff;
	background-image: linear-gradient(90deg, rgba(230, 225, 212, 0.5019607843) 1px, transparent 1px), linear-gradient(rgba(230, 225, 212, 0.5019607843) 1px, transparent 1px);
	background-position: 10px 10px;
	background-size: 39px 39px;
	border-radius: 48px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -5;
}

.p-works-archive__cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 40px;
	row-gap: 48px;
}

.p-works-archive__pagination {
	margin-top: 64px;
}

.p-works-single__head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 40px;
}

.p-works-single__image {
	margin-top: 24px;
}

.p-works-single__image img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.p-works-single__wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-works-single__link {
	text-align: center;
}

.p-works-single__btn {
	align-items: center;
	background: #ec7b09;
	border: 2px solid #ec7b09;
	border-radius: 40px;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 400;
	justify-content: center; /* 22.5px */
	letter-spacing: 4.5px;
	line-height: 150%;
	margin: 0 auto;
	padding-block: 8px;
	padding-left: 40px;
	padding-right: 64px;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-works-single__btn::after {
	background-image: url(../img/works-img-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 24px;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translate(0, -50%);
	transition: all 0.3s;
	width: 24px;
}

.p-works-single__text {
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	margin-top: 4px; /* 30px */
}

.p-works-single__body {
	margin-top: 64px;
}

.p-works-single__btn-back {
	align-items: center;
	background: #222;
	border: 2px solid #222;
	border-radius: 40px;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 400;
	justify-content: center; /* 22.5px */
	letter-spacing: 4.5px;
	line-height: 150%;
	margin-top: 64px;
	padding-block: 8px;
	padding-left: 64px;
	padding-right: 40px;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-works-single__btn-back::after {
	background-image: url(../img/works-img-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 24px;
	left: 24px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%) rotate(180deg);
	transition: all 0.3s;
	width: 24px;
}

.p-contact__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 200%;
	margin-top: 40px; /* 32px */
}

.p-contact__formWrap {
	margin-top: 40px;
}

.p-form__row {
	border-bottom: 1px solid #c2c2c2;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 24px;
	padding-top: 23px;
}

.p-form__row:first-child {
	border-top: 1px solid #c2c2c2;
}

.p-form__consent {
	align-items: center;
	display: flex;
	gap: 12px;
	padding-bottom: 24px;
	padding-top: 23px;
}

.p-form__head {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0 16px;
	width: 228px;
}

.p-form__text {
	font-size: 16px;
	line-height: 1.5;
}

.p-form__checkbox a {
	text-decoration: underline;
}

.p-form__required {
	background: #ec7b09;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	height: 24px;
	line-height: 1.5;
	padding: 3px 6px;
	width: 36px;
}

.p-form__data.textarea {
	height: 160px;
}

.p-form__data input[type=text],
.p-form__data input[type=email],
.p-form__data select {
	background: #f6f6f6;
	border: 1px solid #c2c2c2;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
	height: 48px;
	line-height: 1.5;
	padding: 12px 16px;
	width: 100%;
}

.p-form__data input[type=text]::-moz-placeholder,
.p-form__data input[type=email]::-moz-placeholder,
.p-form__data select::-moz-placeholder {
	color: #c2c2c2;
}

.p-form__data input[type=text]:-ms-input-placeholder,
.p-form__data input[type=email]:-ms-input-placeholder,
.p-form__data select:-ms-input-placeholder {
	color: #c2c2c2;
}

.p-form__data input[type=text]::placeholder,
.p-form__data input[type=email]::placeholder,
.p-form__data select::placeholder {
	color: #c2c2c2;
}

.p-form__data textarea {
	background: #f6f6f6;
	border: 1px solid #c2c2c2;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 24px;
	min-height: 160px;
	padding: 12px 16px;
	resize: vertical;
	width: 100%;
}

.p-form__data textarea::-moz-placeholder {
	color: #c2c2c2;
}

.p-form__data textarea:-ms-input-placeholder {
	color: #c2c2c2;
}

.p-form__data textarea::placeholder {
	color: #c2c2c2;
}

.p-form input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #f6f6f6;
	border: 1px solid #c2c2c2;
	height: 24px;
	position: relative;
	vertical-align: -5px;
	width: 24px;
}

.p-form input[type=checkbox]:checked:before {
	border-bottom: 3px solid #222;
	border-right: 3px solid #222;
	content: "";
	height: 16px;
	left: 50%;
	position: absolute;
	top: 2px;
	transform: translate(-50%, 0) rotate(50deg);
	width: 8px;
}

.p-form__submit {
	margin-top: 40px;
}

.p-form__btn {
	background: #ec7b09;
	border: 2px solid #ec7b09;
	border-radius: 32px;
	color: #fff;
	display: inline-block;
	font-family: "Kanit", sans-serif;
	font-size: 16px;
	font-weight: 400; /* 36px */
	letter-spacing: 4.8px;
	line-height: 150%;
	padding: 8px 24px;
	text-align: center;
	transition: all 0.3s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.p-policy__body {
	padding-block: 64px;
}

.u-hidden-pc {
	display: block;
}

.u-hidden-tab {
	display: none;
}

.u-hidden-sp {
	display: none;
}

.u-accent {
	color: #ec7b09;
}

.u-bold {
	font-weight: 700;
}

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

.l-fv-inner {
	padding-bottom: 100px;
	padding-inline: 32px;
}

.l-inner {
	padding-inline: 32px;
}

.l-checkered {
	padding-inline: 36px;
}

.l-single-inner {
	padding-inline: 32px;
}

.p-opening__title {
	font-size: 11.4732724902vw;
	margin: unset;
	margin-top: 0;
}

.p-opening__title::after {
	left: calc(50% + 20px);
	top: 10px;
	width: 8.3441981747vw;
}

.p-fv__contents {
	display: flex;
	flex-direction: row-reverse;
	gap: 10px;
}

.p-fv__image img {
	max-width: 400px;
	width: 36.5058670143vw;
}

.p-fv__bg-01::after {
	left: 70%;
	top: 20px;
	width: 22.1642764016vw;
}

.p-fv__title {
	font-size: 11.4732724902vw;
	margin: unset;
	margin-top: 0;
}

.p-fv__title::after {
	left: calc(50% + 20px);
	top: 10px;
	width: 8.3441981747vw;
}

.p-about__bg-01 {
	display: block;
	position: relative;
}

.p-about__bg-01::after {
	aspect-ratio: 200/174;
	background-image: url(../img/about-img-bg-01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: 300px;
	position: absolute;
	top: -100px;
	transform: rotate(9deg);
	width: 160px;
	z-index: -1;
}

.p-about__bg-02::after {
	right: calc(50% - 350px);
	top: 150px;
}

.p-about__contents {
	align-items: flex-start;
	display: flex;
	flex-direction: row-reverse;
	gap: 2.6041666667vw;
	justify-content: flex-end;
}

.p-about__head {
	display: block;
}

.p-about__lead {
	font-size: 32px;
	margin-right: 9.1264667536vw;
	margin-top: -50px;
}

.p-about__image {
	display: none;
}

.p-profile__bg::after {
	right: 150px;
	top: 0;
	width: 180px;
}

.p-profile__contents {
	display: flex;
	gap: 6.9444444444vw;
}

.p-works__inner {
	padding-bottom: 200px;
}

.p-works__bg-01::after {
	right: calc(50% - 100px);
	top: -130px;
}

.p-flow__card {
	max-width: 500px;
}

.p-works-archive__cards {
	-moz-column-gap: 24px;
	column-gap: 24px;
	grid-template-columns: repeat(2, 1fr);
}

.p-form__row {
	align-items: center;
	align-self: stretch;
	display: flex;
	flex-direction: row;
	padding-bottom: 28px;
	padding-top: 29px;
}

.p-form__data.textarea {
	height: 200px;
}

.p-form__data {
	flex: 1 0 0;
}

.p-form__submit {
	margin-top: 70px;
}

.u-hidden-sp {
	display: block;
}

}

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

.p-about__bg-01::after {
	left: unset;
	right: calc(50% - 170px);
	top: -145px;
	width: 243px;
}

}

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

.l-fv-inner {
	margin: 0 auto;
	max-width: 1260px;
	padding-inline: unset;
	padding-top: 50px;
}

.l-inner {
	margin: 0 auto;
	max-width: 1240px;
	padding-block: 100px;
	padding-inline: unset;
}

.l-header-inner {
	padding-inline: 40px;
}

.l-footer-inner {
	margin: 0 auto;
	max-width: 86.1111111111vw;
	padding: unset;
}

.l-checkered {
	margin: 0 auto;
	max-width: 1240px;
	padding-block: 100px;
	padding-inline: unset;
}

.l-single-inner {
	margin: 0 auto;
	max-width: 1080px;
	padding-inline: unset;
}

.c-button-drawer {
	display: none;
}

.c-contact-btn:hover {
	background: #fff;
	color: #ec7b09;
}

.c-title__en {
	font-size: 144px;
}

.c-title__ja {
	font-size: 32px;
	padding-left: 56px;
}

.c-title__ja::before {
	width: 44px;
}

.c-page-title__en {
	font-size: 112px;
}

.c-page-title__ja {
	font-size: 32px;
}

.c-common-h1 {
	font-size: 36px;
}

.c-common-h2 {
	font-size: 24px;
}

.c-common-text {
	font-size: 16px;
	margin-top: 24px;
}

.c-work-card:hover .c-work-card__image img {
	transform: scale(1.1);
}

.c-work-card:hover .c-work-card__image::before,
.c-work-card:hover .c-work-card__image::after {
	opacity: 1;
}

.c-work-card:hover .c-work-card__title {
	color: #ec7b09;
}

.c-work-card__image {
	height: 300px;
}

.c-work-card__image::before,
.c-work-card__image::after {
	opacity: 0;
	position: absolute; /* 最初は透明（非表示） */
	transition: opacity 0.3s ease; /* ゆっくりopacityのみへ変化させる */
}

.c-work-card__image::before {
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	content: "詳細を見る";
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	letter-spacing: 0.3rem;
	top: 0;
	width: 100%; /* マスクの色(黒の50%) */
	z-index: 1;
}

.c-work-card__image::after {
	border: 2px solid #fff;
	border-radius: 12px;
	content: "";
	height: 30%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	z-index: 2;
}

.c-pagination__item,
.c-pagination__prev,
.c-pagination__next {
	font-size: 16px;
}

.c-pagination__item {
	width: 36px;
}

.c-pagination__prev,
.c-pagination__next {
	width: 64px;
}

.p-opening__title {
	font-size: 150px;
}

.p-opening__title::after {
	left: calc(50% + 40px);
	top: 20px;
	width: 115px;
}

.p-header {
	height: 83px;
}

.p-header__content {
	padding-block: 16px;
	padding-inline: 32px;
}

.p-header__logo img {
	height: 40px;
}

.p-header__nav {
	align-items: center;
	display: flex;
	gap: 56px;
}

.p-fv__contents {
	display: flex;
	flex-direction: row-reverse;
	gap: 20px;
}

.p-fv__image img {
	max-width: 500px;
	width: 500px;
}

.p-fv__bg-01::after {
	left: calc(50% + 140px);
	top: 45px;
	width: 294px;
}

.p-fv__title {
	font-size: 150px;
}

.p-fv__title::after {
	left: calc(50% + 40px);
	top: 20px;
	width: 115px;
}

.p-fv__text {
	font-size: 20px;
	margin-top: 48px;
}

.p-about__bg-02::after {
	right: calc(50% - 550px);
	top: 130px;
	width: 398px;
}

.p-about__contents {
	gap: 80px;
}

.p-about__lead {
	font-size: 44px;
	margin-right: 0;
	margin-top: -75px;
}

.p-about__textWrap {
	font-size: 18px;
}

.p-drawer-content {
	display: none;
}

.p-profile__inner {
	margin-top: 0;
}

.p-profile__bg::after {
	right: calc(50% - 525px);
	width: 243px;
}

.p-profile__line {
	align-items: center;
	flex-direction: row;
}

.p-profile__title {
	flex-shrink: 0;
	width: 110px;
}

.p-profile__label {
	font-size: 15px;
}

.p-profile__text {
	font-size: 16px;
	padding-right: 32px;
}

.p-works__swiper-slide {
	width: 450px !important;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	height: 12px !important;
	margin: 0 8px !important;
	width: 12px !important;
}

.p-works__inner {
	padding-bottom: 250px;
}

.p-works__bg-01::after {
	right: calc(50% - 150px);
	top: -190px;
	width: 209px;
}

.p-works__image {
	height: 300px;
}

.p-works__btn {
	font-size: 16px;
	letter-spacing: 4.8px;
}

.p-works__btn:hover::after {
	right: 10px;
}

.p-service__background::after {
	padding-block: 0;
}

.p-service__bg-01::after {
	left: 1000px;
	top: -200px;
	width: 250px;
}

.p-service__bg-02::after {
	left: -180px;
	top: -100px;
}

.p-service__cards {
	flex-direction: row;
	gap: 56px;
}

.p-service__contact {
	margin-top: 56px;
}

.p-service__contact-btn:hover {
	background: #fff;
	color: #ec7b09;
}

.p-flow__title {
	font-size: 28px;
}

.p-flow__cards {
	flex-direction: row;
	margin-top: 32px;
}

.p-flow__card {
	height: 216px;
	padding: 24px 16px;
}

.p-flow__card:not(:last-child)::after {
	bottom: 50%;
	left: calc(100% + 15px);
	transform: translate(-50%, 0) rotate(-90deg);
}

.p-flow__wrap {
	flex-direction: column;
	gap: 0;
}

.p-flow__num {
	font-size: 20px;
}

.p-flow__mainText {
	font-size: 18px;
}

.p-flow__subText {
	margin-top: 16px;
}

.p-footer__inner {
	padding-top: 64px;
}

.p-footer__contents {
	align-items: center;
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.p-footer__left {
	align-items: center;
	flex-direction: row;
	gap: 32px;
}

.p-footer__sns-link {
	height: 45px;
	width: 45px;
}

.p-footer__sns-link img {
	height: 24px;
	width: 24px;
}

.p-footer__copyright {
	margin-top: 64px;
}

.p-works-archive__body {
	margin-block: 64px;
}

.p-works-archive__background {
	padding-block: 0;
}

.p-works-archive__cards {
	-moz-column-gap: 36px;
	column-gap: 36px;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 64px;
}

.p-works-single__wrap {
	align-items: flex-start;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding-inline: 24px;
}

.p-works-single__link {
	margin-top: 16px;
}

.p-works-single__btn {
	font-size: 16px;
	letter-spacing: 4.8px;
}

.p-works-single__btn:hover::after {
	right: 10px;
}

.p-works-single__text {
	font-size: 16px;
}

.p-works-single__btn-back {
	font-size: 16px;
	letter-spacing: 4.8px;
}

.p-works-single__btn-back:hover::after {
	left: 10px;
}

.p-contact__formWrap {
	margin-top: 64px;
}

.p-form__data textarea {
	min-height: 200px;
}

.p-form__btn:hover {
	background: #fff;
	color: #ec7b09;
}

.u-hidden-pc {
	display: none;
}

.u-hidden-tab {
	display: block;
}

}

@-webkit-keyframes fade-in {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fade-in {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fade-in {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

