@charset "utf-8";

/* ========================================
   CSS変数の定義（SASSライクな管理）
   ======================================== */



/* 共有 */

html {
	font-size: 100%;
}

body {
	font-family: "Noto Serif JP", serif;
	background: #efefef;
}

a {
	\ttext-decoration: none;
	\ttransition: 0.3s ease;
}

a:hover {
	\topacity: 0.9;
	\tbackground-color: #f3f4f6;
}

img {
	width: 100%;
	vertical-align: top;
}

p {
	color: black;
}

#pc_only {
	display: block;
}

#sp_only {
	display: none;
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
	position: fixed;
    z-index: 100;
    width: 100%;
}

.header-inner {
	max-width: 1240px;
	height: 78px;
	margin: 0 auto;
	padding: 0 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-branding-link {
    color: #ffffff;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
}

.header-nav-list {
	display: flex;
	align-items: center;
	gap: 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav-list a {
	display: inline-block;
	color: #ffffff;
	font-size: 11px;
	letter-spacing: 0.14em;
	line-height: 1;
}


.header-nav-list li:not(.header-contact-item) a:hover,
.header-nav-list li:not(.header-contact-item) a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.header-contact-item a {
	font-size: 10px;
	letter-spacing: 0.16em;
}

.header-menu-toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	#pc_only {
		display: none;
	}

	#sp_only {
		display: block;
	}

	.hero {
		min-height: 520px;
	}

	.hero-caption {
		right: 12px;
		bottom: 12px;
		padding: 8px 10px;
	}

	.hero-caption-category {
		font-size: 10px;
	}

	.hero-caption-title {
		margin-top: 4px;
		font-size: 12px;
	}

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

	.header-inner {
		height: 66px;
		padding: 0 14px 0 16px;
	}

	.site-branding-link {
		font-size: 16px;
		letter-spacing: 0.02em;
	}

	.header-nav {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1100;
		width: min(78vw, 320px);
		height: 100vh;
		padding: 84px 22px 28px;
		background: #bbbbbb;
		border-left: 1px solid #d9d9d9;
		transform: translateX(100%);
		transition: transform 0.28s ease;
	}

	.header-nav.is-open {
		transform: translateX(0);
	}

	.header-nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	.header-nav-list a {
		font-size: 14px;
		letter-spacing: 0.1em;
	}

	.header-contact-item a {
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 14px;
		letter-spacing: 0.1em;
	}

	.header-menu-toggle {
		appearance: none;
		border: 0;
		background: transparent;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-width: 64px;
		padding: 4px 0;
		color: #ffffff;
		position: relative;
		z-index: 1200;
	}

	.header-menu-toggle-line {
		display: block;
		width: 25px;
		height: 2px;
		background: #ffffff;
		transform-origin: center;
		transition: transform 0.22s ease, opacity 0.22s ease;
	}

	.header-menu-toggle.is-open .header-menu-toggle-line:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.header-menu-toggle.is-open .header-menu-toggle-line:nth-child(2) {
		transform: translateY(-4px) rotate(-45deg);
	}

	.header-menu-toggle-label {
		display: block;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.12em;
		line-height: 1;
		transition: opacity 0.2s ease;
	}

	.header-menu-toggle.is-open .header-menu-toggle-label {
		opacity: 0;
	}

	.header-nav-list a {
		color: #000000;
	}
}

/* ========================================
   トップヒーロー
   ======================================== */
   .hero {
	position: relative;
	overflow: hidden;
	min-height: 85vh;
}

.hero-slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.08);
	animation: hero-fade-zoomout 30s linear infinite;
}

.hero-slides.is-single .hero-bg,
.hero-bg.is-static {
	opacity: 1;
	transform: scale(1);
	animation: none;
}

.hero-bg-1 {
	animation-delay: 0s;
}

.hero-bg-2 {
	animation-delay: 6s;
}

.hero-bg-3 {
	animation-delay: 12s;
}

.hero-bg-4 {
	animation-delay: 18s;
}

.hero-bg-5 {
	animation-delay: 24s;
}

.hero-caption {
	position: absolute;
	right: 42px;
	bottom: 34px;
	z-index: 1;
	padding: 12px 14px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	opacity: 0;
	animation: hero-caption-fade 30s linear infinite;
}

.hero-caption-1 {
	animation-delay: 0s;
}

.hero-caption-2 {
	animation-delay: 6s;
}

.hero-caption-3 {
	animation-delay: 12s;
}

.hero-caption-4 {
	animation-delay: 18s;
}

.hero-caption-5 {
	animation-delay: 24s;
}

.hero-caption-category {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.hero-caption-title {
	margin: 6px 0 0;
	font-size: 16px;
	line-height: 1.4;
}

.hero-inner,
.hero-blue-left,
.hero-blue-right,
.hero-info-bar {
	position: relative;
	z-index: 1;
}

@keyframes hero-fade-zoomout {
	0% {
		opacity: 0;
		transform: scale(1.08);
	}
	3% {
		opacity: 1;
	}
	17% {
		opacity: 1;
		transform: scale(1);
	}
	20% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.08);
	}
}

@keyframes hero-caption-fade {
	0% {
		opacity: 0;
	}
	3% {
		opacity: 1;
	}
	17% {
		opacity: 1;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* ========================================
   コンセプトメッセージ
   ======================================== */
.concept-message {
	padding: 130px 0 130px;
}

.concept-message-inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.concept-message-title {
	margin: 0;
	color: #3f3f3f;
	font-size: 35px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.03em;
}

.concept-message-body {
	margin-top: 78px;
}

.concept-message-body p {
	margin: 0;
	color: #4d4d4d;
	font-size: 20px;
	line-height: 2.3;
	letter-spacing: 0.025em;
}

@media screen and (max-width: 768px) {
	.concept-message {
		padding: 64px 20px 76px;
	}

	.concept-message-title {
		font-size: 19px;
		line-height: 1.7;
	}

	.concept-message-body {
		margin-top: 42px;
	}

	.concept-message-body p {
		font-size: 14px;
		line-height: 2;
		text-align: left;
	}
}

/* ========================================
   WORKS プレビュー
   ======================================== */
.works-preview {
	padding: 0px 0px 130px;
}

.works-preview-last {
	padding: 0px 0px 250px;
}

.works-preview-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.works-preview-title {
	margin: 0;
	text-align: center;
	color: #343434;
	font-size: 35px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.works-preview-grid {
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 46px 36px;
}

.works-preview-item {
	margin: 0;
}

.works-preview-thumb {
	width: 100%;
	aspect-ratio: 334 / 188;
	background: #000;
}

.works-preview-thumb-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-preview-name {
	margin: 14px 0 0;
	color: #4b4b4b;
	font-size: 17px;
	letter-spacing: 0.02em;
	line-height: 1.5;
}

.works-preview-more {
	margin-top: 52px;
	display: flex;
	justify-content: center;
}

.works-preview-more-sp-only {
	display: none;
}

.works-preview-more-link {
	min-width: 200px;
	padding: 12px 18px;
	border: 1px solid #7e7e7e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	color: #393939;
	font-size: 15px;
	letter-spacing: 0.04em;
	line-height: 1;
	background: transparent;
	cursor: pointer;
}

.works-preview-more-arrow {
	font-size: 20px;
	line-height: 1;
	transition: transform 0.25s ease;
}

.works-preview-grid-extra {
	margin-top: 28px;
}

.js-works-more-toggle[aria-expanded="true"] .works-preview-more-arrow {
	transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
	.works-preview-title {
		font-size: 28px;
	}

	.works-preview-grid {
		width: 90%;
        margin: 35px auto 0;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.works-preview-name {
		font-size: 18px;
		margin-top: 10px;
	}

	.works-preview-more {
		margin-top: 0px;
	}

	.works-preview-more-sp-only {
		display: flex;
	}

	.works-preview-more-link {
		min-width: 220px;
		font-size: 15px;
		padding: 11px 14px;
	}

	.works-preview .works-preview-grid > .works-preview-item:nth-child(n + 3) {
		display: none;
	}

	.works-preview.is-expanded .works-preview-grid > .works-preview-item:nth-child(n + 3) {
		display: block;
	}
	.works-preview {
		padding: 0px 0px 50px;
	}
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
	background: #2d2f33;
	position: relative;
	margin-top: 200px;
}

.footer-contact-wrap {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	left: 50%;
	transform: translate(-50%, 56px);
	position: relative;
	z-index: 2;
	position: absolute;
	top: -50%;

}

.footer-contact-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 56px 74px 54px 72px;
	min-height: 246px;
	color: #fff;
	overflow: hidden;
}

.footer-contact-bg {
	position: absolute;
	inset: 0;
	background-image:
		
		url("../images/img_footer_contact.png");
	background-size: cover;
	background-position: center;
	background-color: #1f2124;
	z-index: 0;
}

.footer-contact-content {
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

.footer-contact-title {
	margin: 0;
	font-size: 48px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.1;
}

.footer-contact-text {
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 2;
	letter-spacing: 0.02em;
	color: #fff;
}

.footer-contact-arrow {
	position: relative;
	z-index: 1;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #fff;
	color: #222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	line-height: 1;
}

.footer-main {
	padding: 250px 20px 58px;
}

.footer-main-inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	padding: 20px 0 40px;
}

.footer-company-name {
	margin: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.footer-company-address {
	margin: 20px 0 0;
	color: #d2d3d5;
    font-size: 15px;
    line-height: 1.5;
	letter-spacing: 0.02em;
}

.footer-nav-wrap {
	text-align: right;
}

.footer-nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 26px;
}

.footer-nav-list a {
	color: #f0f0f0;
	font-size: 12px;
	letter-spacing: 0.12em;
}

.footer-copy {
	margin: 24px 0 0;
	color: #bcbfc4;
	font-size: 12px;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
	.footer-contact-wrap {
		padding: 0;
		transform: translate(-50%, 34px);
	}

	.footer-contact-cta {
		min-height: 172px;
		padding: 24px 10px 20px;
		align-items: center;
	}

	.footer-contact-title {
		font-size: 40px;
		line-height: 1;
		letter-spacing: 0.05em;
	}

	.footer-contact-text {
		margin-top: 14px;
		font-size: 11px;
		line-height: 1.9;
	}

	.footer-contact-arrow {
        position: absolute;
        top: 65px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 22px;
	}

	.footer-main {
		padding: 78px 16px 38px;
	}

	.footer-main-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 50px 0 30px;
	}

	.footer-company-name {
		font-size: 22px;
	}

	.footer-company-address {
		font-size: 14px;
		margin-top: 12px;
	}

	.footer-nav-wrap {
		width: 100%;
		text-align: left;
	}

	.footer-nav-list {
		flex-wrap: wrap;
		gap: 10px 16px;
		margin-top: 8px;
	}

	.footer-copy {
		margin-top: 16px;
		font-size: 11px;
	}
}

/* ========================================
   PROFILEページ
   ======================================== */
.profile-hero {
	position: relative;
	height: 300px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.profile-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.28);
}

.profile-hero-inner {
	position: relative;
	z-index: 1;
}

.profile-hero-title {
	margin: 0;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #fff;
	line-height: 1;
}

.profile-hero-subtitle {
    margin: 14px 0 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1;
}

.profile-breadcrumb-wrap {
	background: #efefef;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}

.profile-breadcrumb {
	max-width: 1080px;
	margin: 0 auto;
	padding: 14px 20px;
	color: #666;
	font-size: 13px;
}

.profile-breadcrumb a {
	color: #666;
}

.profile-breadcrumb-sep {
	margin: 0 8px;
}

.profile-message {
	padding: 94px 20px 90px;
	text-align: center;
}

.profile-message-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.profile-message-title {
	margin: 0;
	color: #3e3e3e;
	font-size: 35px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.profile-message-body {
	margin-top: 56px;
}

.profile-message-body p {
	margin: 0;
	color: #4b4b4b;
	font-size: 20px;
	line-height: 2.1;
	letter-spacing: 0.02em;
}

.profile-section {
	padding: 72px 20px 110px;
}

.profile-member {
	padding: 24px 20px 110px;
}

.profile-member-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.profile-member-layout {
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: start;
	gap: 34px;
}

.profile-member-title {
	margin: 0;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	color: #2f2f2f;
}

.profile-member-box {
	background: #e5e4e2;
	padding: 54px 70px 56px;
	position: relative;
}

.profile-member-summary {
	margin: 0;
	color: #4a4a4a;
	font-size: 18px;
	line-height: 1.9;
	letter-spacing: 0.02em;
	text-align: center;
}

.profile-member-info {
	width: 50%;
    margin: 50px auto 0;
}

#pc_only.profile-member-image {
	position: absolute;
	width: 250px;
	height: 300px;
	bottom: 50px;
	left: -125px;
}

.profile-member-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-member-role {
	margin: 0;
	font-size: 13px;
	color: #4d4d4d;
}

.profile-member-name {
	margin: 8px 0 0;
	font-size: 30px;
	line-height: 1.3;
	color: #2f2f2f;
}

.profile-member-name span {
	font-size: 16px;
	margin-left: 10px;
	color: #666;
}

.profile-member-career {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.profile-member-career li {
	display: grid;
	grid-template-columns: 128px 1fr;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid #c8c8c8;
	font-size: 14px;
	color: #4a4a4a;
}

.profile-section-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.profile-section-header {
	text-align: center;
}

.profile-section-title {
	margin: 0;
	font-size: 36px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #2f2f2f;
}

.profile-section-lead {
	margin: 12px 0 0;
	font-size: 18px;
	color: #555;
}

.profile-card {
	margin-top: 52px;
	background: #fff;
	border: 1px solid #d8d8d8;
	padding: 26px 34px;
}

.profile-table {
	margin: 0;
}

.profile-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid #ececec;
}

.profile-row:last-child {
	border-bottom: 0;
}

.profile-row dt {
	margin: 0;
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

.profile-row dd {
	margin: 0;
	font-size: 16px;
	color: #4a4a4a;
	line-height: 1.8;
}

.profile-company {
	padding: 28px 20px 120px;
}

.profile-company-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.profile-company-layout {
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: start;
	gap: 34px;
}

.profile-company-title {
	margin: 0;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	color: #2f2f2f;
}

.profile-company-table {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 0 42px;
	width: 80%;
	margin: auto;
}

.profile-company-labels,
.profile-company-values {
	display: flex;
	flex-direction: column;
}

.profile-company-label {
	border-top: 1px solid #b8b8b8;
	padding: 18px 0 16px;
	min-height: 68px;
	display: flex;
	align-items: center;
	color: #7a7a7a;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.profile-company-label:last-child {
	border-bottom: 1px solid #b8b8b8;
}

.profile-company-value {
	border-top: 1px solid #b8b8b8;
	padding: 18px 0 16px;
	min-height: 68px;
	display: flex;
	align-items: center;
	color: #3f3f3f;
	font-size: 16px;
	line-height: 1.7;
}

.profile-company-value:last-child {
	border-bottom: 1px solid #b8b8b8;
}

@media screen and (max-width: 768px) {
	.profile-hero {
		height: 250px;
	}

	.profile-hero-title {
		font-size: 25px;
	}

	.profile-hero-subtitle {
		margin-top: 10px;
		font-size: 15px;
	}

	.profile-breadcrumb {
		padding: 12px 16px;
		font-size: 12px;
	}

	.profile-section {
		padding: 48px 16px 72px;
	}

	.profile-member {
		padding: 10px 16px 72px;
	}

	.profile-member-layout {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.profile-member-title {
		font-size: 20px;
	}

	.profile-member-box {
		padding: 0;
		background: transparent;
	}

	.profile-member-summary {
		position: relative;
		z-index: 1;
		width: calc(100% - 24px);
		margin: -30px auto 0;
		padding: 12px 14px;
		background: #f3f3f3;
		font-size: 17px;
		line-height: 1.7;
		text-align: left;
	}

	.profile-member-info {
		width: 90%;
		margin-top: 26px;
		padding-left: 0;
	}

	#sp_only.profile-member-image {
		position: static;
		width: 100%;
		height: auto;
	}

	#sp_only.profile-member-image img {
		aspect-ratio: 2 / 1;
	}

	#pc_only.profile-member-image {
		display: none;
	}

	.profile-member-name {
		font-size: 18px;
	}

	.profile-member-name span {
		display: block;
		margin: 6px 0 0;
		font-size: 13px;
	}

	.profile-member-career li {
		grid-template-columns: 92px 1fr;
		font-size: 12px;
	}

	.profile-message {
		padding: 56px 20px 54px;
	}

	.profile-message-title {
		font-size: 20px;
		line-height: 1.7;
	}

	.profile-message-body {
		margin-top: 30px;
	}

	.profile-message-body p {
        font-size: 14px;
        line-height: 1.9;
        text-align: left;
	}

	.profile-section-title {
		font-size: 28px;
	}

	.profile-section-lead {
		font-size: 14px;
	}

	.profile-card {
		margin-top: 30px;
		padding: 16px;
	}

	.profile-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px 0;
	}

	.profile-row dt,
	.profile-row dd {
		font-size: 14px;
	}

	.profile-company {
		padding: 8px 16px 72px;
	}

	.profile-company-layout {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.profile-company-title {
		font-size: 20px;
		line-height: 1.2;
	}

	.profile-company-table {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 6px;
	}

	.profile-company-labels,
	.profile-company-values {
		display: contents;
	}

	.profile-company-label {
		border-top: 1px solid #cfcfcf;
		border-bottom: 0;
		padding: 20px 0 8px;
		min-height: 0;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.35;
		color: #444;
		width: 95%;
        margin: auto;
	}

	.profile-company-label:last-child {
		border-bottom: 0;
	}

	.profile-company-value {
		border-top: 0;
		border-bottom: 1px solid #cfcfcf;
		padding: 0 0 20px;
		min-height: 0;
		font-size: 15px;
		line-height: 1.8;
		color: #3f3f3f;
		justify-content: flex-start;
		width: 95%;
        margin: auto;

	}

	.profile-company-label:nth-child(1) {
		grid-row: 1;
	}
	.profile-company-value:nth-child(1) {
		grid-row: 2;
	}
	.profile-company-label:nth-child(2) {
		grid-row: 3;
	}
	.profile-company-value:nth-child(2) {
		grid-row: 4;
	}
	.profile-company-label:nth-child(3) {
		grid-row: 5;
	}
	.profile-company-value:nth-child(3) {
		grid-row: 6;
	}
	.profile-company-label:nth-child(4) {
		grid-row: 7;
	}
	.profile-company-value:nth-child(4) {
		grid-row: 8;
	}
	.profile-company-label:nth-child(5) {
		grid-row: 9;
	}
	.profile-company-value:nth-child(5) {
		grid-row: 10;
	}
}
/* ========================================
   FLOWページ
   ======================================== */
.flow-intro {
	padding: 70px 0;
}

.flow-intro-inner {
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
}

.flow-intro-title {
	margin: 0;
	color: #2f2f2f;
	font-size: 35px;
	font-weight: 500;
	letter-spacing: 0.06em;
}

.flow-steps {
	padding: 24px 0 120px;
}

.flow-steps-inner {
	max-width: 900px;
	margin: 0 auto;
}

.flow-steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.flow-step {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 40px;
	position: relative;
	padding-bottom: 34px;
	align-items: start;
}

.flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 49px;
    top: 98px;
    bottom: 0px;
    border-left: 3px dashed #bfbfbf;
	z-index: -1;
}

.flow-step-marker {
	width: 98px;
	height: 98px;
	border: 1px solid #989898;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #efefef;
	z-index: 1;
}

.flow-step-label {
	font-size: 20px;
	color: #4f4f4f;
	line-height: 1;
	margin-bottom: 6px;
}

.flow-step-num {
	font-size: 40px;
	color: #4f4f4f;
	line-height: 1;
	font-weight: 500;
}

.flow-step-content {
	padding-top: 8px;
}

.flow-step-title {
	margin: 0;
	font-size: 22px;
	color: #2f2f2f;
	font-weight: 600;
}

.flow-step-text {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.9;
	color: #4b4b4b;
}

@media screen and (max-width: 768px) {
	.flow-intro {
		padding: 46px 16px 12px;
	}

	.flow-intro-title {
		font-size: 20px;
	}

	.flow-steps {
		padding: 20px 16px 40px;
	}

	.flow-step {
		grid-template-columns: 74px 1fr;
		gap: 14px;
		padding-bottom: 20px;
	}

	.flow-step:not(:last-child)::after {
		left: 36px;
		top: 72px;
		bottom: 0;
	}

	.flow-step-marker {
		width: 72px;
		height: 72px;
	}

	.flow-step-label {
		font-size: 12px;
		margin-bottom: 4px;
	}

	.flow-step-num {
		font-size: 26px;
	}

	.flow-step-content {
		padding-top: 4px;
	}

	.flow-step-title {
		font-size: 18px;
	}

	.flow-step-text {
		font-size: 14px;
		line-height: 1.8;
	}
}

/* ========================================
   お問い合わせフォーム
   ======================================== */
.inquiry-form-section {
	padding: 20px 20px 120px;
}

.inquiry-form-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.inquiry-form-title {
	margin: 0;
	text-align: center;
	font-size: 35px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #2f2f2f;
}

.inquiry-form-wrap {
	max-width: 760px;
	margin: 45px auto 0;
	background: #e7e6e4;
	padding: 42px 68px 46px;
}

.inquiry-form-wrap .wpcf7-form > p {
	margin: 0 0 22px;
}

.inquiry-form-wrap .wpcf7-form > p:last-of-type {
	margin-bottom: 0;
}

.inquiry-form-wrap label {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	color: #555;
	line-height: 1.6;
}

.inquiry-form-wrap .is-required {
	display: inline-block;
	margin-left: 6px;
	padding: 0 6px;
	background: #64605f;
	color: #fff;
	font-size: 11px;
	line-height: 1.6;
	border-radius: 2px;
	vertical-align: text-top;
}

.inquiry-form-wrap .wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.inquiry-form-wrap .wpcf7-text,
.inquiry-form-wrap .wpcf7-email,
.inquiry-form-wrap .wpcf7-tel,
.inquiry-form-wrap .wpcf7-textarea {
	width: 100%;
	border: 1px solid #d4d3d1;
	background: #fff;
	padding: 10px 12px;
	font-size: 14px;
	color: #333;
	box-sizing: border-box;
}

.inquiry-form-wrap .wpcf7-text,
.inquiry-form-wrap .wpcf7-email,
.inquiry-form-wrap .wpcf7-tel {
	height: 44px;
}

.inquiry-form-wrap .wpcf7-textarea {
	min-height: 138px;
	resize: vertical;
}

.inquiry-form-wrap .wpcf7-acceptance {
	display: inline-flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 12px;
	color: #5b5b5b;
	line-height: 1.7;
}

.inquiry-form-wrap .wpcf7-acceptance a {
	color: #4c566a;
	text-decoration: underline;
}

.inquiry-form-wrap .wpcf7-submit {
	display: block;
	width: 180px;
	height: 44px;
	margin: 30px auto 0;
	border: 0;
	background: #5b5554;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.08em;
	cursor: pointer;
}

.inquiry-form-wrap .wpcf7-spinner {
	display: block;
	margin: 10px auto 0;
}

@media screen and (max-width: 768px) {
	.inquiry-form-section {
		padding: 12px 16px 72px;
	}

	.inquiry-form-title {
		font-size: 28px;
	}

	.inquiry-form-wrap {
		margin-top: 22px;
		padding: 20px 16px 24px;
	}

	.inquiry-form-wrap .wpcf7-submit {
		width: 100%;
		max-width: 220px;
	}
}

/* ========================================
   WORKSページ
   ======================================== */

.works-category-nav {
	padding: 100px 0 150px;
}

.works-category-nav-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.works-category-nav-title {
	margin: 0;
	text-align: center;
	color: #313131;
	font-size: 35px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.works-category-nav-list {
	margin: 65px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.works-category-nav-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 64px;
	background: #3a3a3d;
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.02em;
}

.works-category-nav-list a span {
	font-size: 10px;
	line-height: 1;
}

.works-page-section {
	padding-top: 62px;
	padding-bottom: 0;
}

@media screen and (max-width: 768px) {
	.works-page {
		padding-bottom: 48px;
	}

	.works-category-nav {
		padding: 40px 16px 70px;
	}

	.works-category-nav-title {
		font-size: 28px;
		line-height: 1.5;
	}

	.works-category-nav-list {
		margin-top: 22px;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.works-category-nav-list a {
		height: 48px;
		font-size: 20px;
	}

	.works-page-section {
		padding-top: 42px;
	}
}

/* ========================================
   WORKS詳細（single.php）
   ======================================== */
.works-single-page {
	padding: 74px 20px 90px;
}

.works-single-inner {
	max-width: 1240px;
	margin: 0 auto;
}

.works-single-category {
	margin: 0;
	text-align: center;
	color: #444;
	font-size: 25px;
	line-height: 1.3;
}

.works-single-title {
	margin: 14px 0 0;
	text-align: center;
	color: #2f2f2f;
	font-size: 35px;
}

.works-single-slider {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 58px 1fr 58px;
	gap: 30px;
	align-items: center;
}

.works-single-main {
	position: relative;
	overflow: hidden;
	height: 700px;
}

.works-single-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
	height: 100%;
}

.works-single-main-image {
	flex: 0 0 100%;
	height: 100%;
}

.works-single-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-single-nav {
	width: 58px;
	height: 58px;
	border: 0;
	border-radius: 50%;
	background: #676767;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
}

.works-single-thumbs {
	margin: 22px auto 0;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.works-single-thumb {
	border: 2px solid transparent;
	padding: 0;
	background: transparent;
	cursor: pointer;
	width: 150px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.works-single-thumb.is-active {
	border-color: #4f4f4f;
}

.works-single-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.works-single-points {
	padding: 20px 0 0;
}

.works-single-point-item {
	padding: 80px 0 0;
    width: 80%;
    margin: auto;
}

.works-single-point-title {
	margin: 0;
	padding-bottom: 12px;
	font-size: 30px;
	color: #3b3b3b;
	border-bottom: 1px dashed #9f9f9f;
}

.works-single-point-text {
	margin: 20px 0 0;
	font-size: 16px;
	line-height: 2;
	color: #4d4d4d;
}

.works-single-more {
	padding: 64px 0 0;
}

.works-single-more-wrap {
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.works-single-page {
		padding: 38px 12px 54px;
	}

	.works-single-category {
		font-size: 15px;
	}
	.works-single-main {
		height: 180px;
	}
	.works-single-title {
		font-size: 20px;
		margin: 5px 0 0;
	}

	.works-single-slider {
		grid-template-columns: 30px 1fr 30px;
		gap: 8px;
		margin-top: 20px;
		align-items: center;
	}

	.works-single-nav {
		width: 30px;
		height: 30px;
		font-size: 20px;
		padding: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.works-single-thumbs {
		margin-top: 14px;
		gap: 8px;
		overflow-x: auto;
		justify-content: flex-start;
		padding: 0 4px 4px;
		padding-bottom: 4px;
	}

	.works-single-thumb {
		width: 96px;
		flex: 0 0 auto;
	}

	.works-single-point-item {
		padding-top: 20px;
	}

	.works-single-point-title {
		font-size: 22px;
		padding-bottom: 10px;
	}

	.works-single-point-text {
		font-size: 14px;
		line-height: 1.9;
		margin-top: 14px;
	}

	.works-single-more {
		padding-top: 28px;
	}
}