@charset "UTF-8";

/* ===========================================
   Base（reset.css の後に読み込み）
   =========================================== */
/* 1rem = 10px（1.6rem = 16px, 1.4rem = 14px） */
html { font-size: 62.5%; }
body { font-family: "Roboto", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; color: #000000; font-size: 1.6rem; line-height: 1.6; background: #ffffff; }
body.is-nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.8; }

/* ===========================================
   Layout
   =========================================== */
#wrapper { margin: 0 auto; background: #ffffff; }
/* 固定ヘッダー分のスペース（ヘッダー高さに合わせて調整） */
#main { padding: 72px 40px 80px; min-height: 50vh; }
.front-page #main { padding-top: 0; }
.front-page { overflow-x: hidden; }

/* ページヘッダー共通（トップページ以外の全ページに適用・ページ追加時も対応） */
body:not(.front-page) #main {
	padding-top: 100px;
	padding-bottom: 0px;
}

.page-header {
	border-bottom: 1px solid #e5e5e5;
	padding: 24px 0 32px;
	margin-bottom: 0;
	line-height: 1;
}

.page-header__subtitle {
	margin: 0 0 4px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #000000;
	letter-spacing: 0.12em;
}

.page-header__title {
	margin: 0;
	font-size: 9.6rem;
	font-weight: 700;
	text-transform: uppercase;
}

.page-company .page-header__title {
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	body:not(.front-page) #main {
		padding-top: 90px;
	}
}

@media (max-width: 599px) {
	.page-header {
		padding: 20px 0 24px;
	}
	.page-header__title {
		font-size: 4.8rem;
	}
	.page-company .page-header__title {
		margin-bottom: 16px;
	}
}

/* リーダー文共通（全ページ共通で使用） */
.lead {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.9;
	color: #000000;
}
.lead--mb {
	margin-bottom: 40px;
}

.inner,
.front-section-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 767px) {
	#main { padding: 64px 20px 60px; }
	.inner,
	.front-section-inner {
		padding: 0 0px;
	}
}

/* ===========================================
   Header
   =========================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding: 20px 40px;
	transition: padding 0.3s ease, box-shadow 0.3s ease;
}
/* スクロール時の縮小ヘッダー */
.site-header.is-scrolled {
	padding: 12px 40px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.site-header.is-scrolled .site-title {
	font-size: 1.6rem;
}
.site-header.is-scrolled .gnav {
	font-size: 1.4rem;
}
.site-header.is-scrolled .gnav {
	gap: 0 4px;
	font-size: 1.3rem;
}
.site-header.is-scrolled .gnav > li:not(:last-child) a {
	padding: 10px 14px;
}
.site-header.is-scrolled .gnav li:last-child a {
	min-width: 120px;
	padding: 10px 20px;
}

.site-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-title {
	margin: 0;
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	transition: font-size 0.3s ease;
}
.site-title a {
	color: #000000;
	font-weight: 700;
}
.site-title__logo {
	display: block;
	height: auto;
	max-height: 48px;
	width: auto;
	object-fit: contain;
}
.site-header.is-scrolled .site-title__logo {
	max-height: 40px;
}

.site-header__nav {
	margin-left: auto;
}

.site-header__menu-toggle {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	border: none;
	background: rgba(0, 0, 0, 0.05);
	padding: 12px 10px;
	box-sizing: border-box;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: background 0.2s ease;
	z-index: 1001;
	position: relative;
}

.site-header__menu-toggle:hover {
	background: rgba(0, 0, 0, 0.08);
}

.site-header__menu-toggle-bar {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #000000;
	border-radius: 1px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.site-header__menu-toggle:focus-visible {
	outline: 2px solid #000000;
	outline-offset: 2px;
}

.site-header__menu-toggle.is-open {
	background: transparent;
}

.site-header__menu-toggle.is-open .site-header__menu-toggle-bar:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

.site-header__menu-toggle.is-open .site-header__menu-toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-header__menu-toggle.is-open .site-header__menu-toggle-bar:nth-child(3) {
	transform: translateY(-4px) rotate(-45deg);
}



.gnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-items: center;
	transition: font-size 0.3s ease, gap 0.3s ease;
	font-weight: 600;
}
.gnav > li:not(:last-child) {
	position: relative;
}
.gnav > li:not(:last-child) a {
	color: #000000;
	display: inline-flex;
	align-items: center;
	padding: 12px 16px;
	position: relative;
	transition: color 0.2s ease, background 0.2s ease;
	border-radius: 4px;
}
.gnav > li:not(:last-child) a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 8px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}
.gnav > li:not(:last-child) a:hover {
	color: #333333;
	background: rgba(0, 0, 0, 0.04);
}
.gnav > li:not(:last-child) a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* 現在ページのナビをアクティブ表示 */
.gnav li.is-active:not(:last-child) a::after {
	transform: scaleX(1);
	transform-origin: left;
}
.gnav li.is-active:not(:last-child) a {
	color: #000000;
	font-weight: 700;
}

.site-header .gnav li:last-child {
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.site-header .gnav li:last-child a {
	min-width: 130px;
	padding: 12px 24px;
	background: #070b14;
	color: #ffffff;
	border: 2px solid #070b14;
	border-radius: 4px;
	font-weight: 700;
	letter-spacing: 0.12em;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.site-header .gnav li:last-child a::after {
	display: none;
}
.site-header .gnav li:last-child a:hover {
	background: transparent;
	color: #070b14;
	border-color: #070b14;
	transform: translateY(-1px);
}
.site-header .gnav li.is-active:last-child a {
	background: #0d1520;
	border-color: #0d1520;
}
.site-header .gnav li.is-active:last-child a:hover {
	background: transparent;
	color: #0d1520;
	border-color: #0d1520;
}

@media (max-width: 959px) {
	.site-header {
		padding: 16px 20px;
	}
	.site-header.is-scrolled {
		padding: 10px 20px;
	}
	.site-header.is-scrolled .site-title {
		font-size: 1.5rem;
	}
	.site-header .inner {
		flex-direction: row;
		align-items: center;
	}

	.site-header__menu-toggle {
		display: inline-flex;
	}

	.site-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255, 255, 255, 0.98);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		display: flex;
		align-items: flex-start;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		z-index: 999;
		padding: 80px 24px 40px;
		box-sizing: border-box;
	}

	.site-header__nav.is-open {
		opacity: 1;
		visibility: visible;
	}

	.site-header__nav .gnav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		max-width: 360px;
	}
	.site-header__nav .gnav > li {
		border-left: none !important;
		margin-left: 0 !important;
		padding-left: 0 !important;
		opacity: 0;
		transform: translateY(12px);
	}
	.site-header__nav.is-open .gnav > li {
		opacity: 1;
		transform: translateY(0);
	}
	.site-header__nav .gnav > li:nth-child(1) { transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s; }
	.site-header__nav .gnav > li:nth-child(2) { transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s; }
	.site-header__nav .gnav > li:nth-child(3) { transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s; }
	.site-header__nav .gnav > li:nth-child(4) { transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s; }
	.site-header__nav .gnav > li:nth-child(5) { transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s; }

	.site-header__nav .gnav a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 18px 24px;
		font-size: 1.6rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		border-radius: 0;
	}
	.site-header__nav .gnav a::after {
		display: none;
	}
	.site-header__nav .gnav a:hover {
		background: rgba(0, 0, 0, 0.04);
	}
	.site-header .gnav li:last-child {
		margin-top: 16px;
	}
	.site-header .gnav li:last-child a {
		width: 100%;
		min-width: unset;
		text-align: center;
		padding: 16px 24px;
		border: 2px solid #070b14;
		border-radius: 4px;
	}
	.site-header .gnav li:last-child a:hover {
		background: #070b14;
		color: #ffffff;
		transform: none;
	}
}

/* ===========================================
   Footer
   =========================================== */
.site-footer {
	background: #070b14;
	padding: 32px 0 24px;
	margin-top: 80px;
	color: #ffffff;
}
.site-footer a {
	color: #ffffff;
}
.site-footer .footer-gnav {
	justify-content: center;
	margin-bottom: 16px;
	gap: 0 32px;
	font-size: 1.2rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.site-footer .footer-gnav a {
	color: #ffffff;
}
/* ヘッダー用 .gnav の黒指定を上書き（詳細度を上げる） */
.site-footer .gnav > li:not(:last-child) a {
	color: #ffffff;
}
.site-footer .footer-gnav li:last-child a {
	min-width: 120px;
	padding: 8px 16px;
	background: #ffffff;
	color: #000000;
	border: 1px solid #ffffff;
	border-radius: 4px;
	transition: opacity 0.2s ease;
}
.site-footer .footer-gnav li:last-child a:hover {
	opacity: 0.9;
}
.site-footer .copy {
	text-align: center;
	font-size: 1.1rem;
	color: #ffffff;
	margin: 0 0 8px;
	letter-spacing: 0.12em;
}

.site-footer__brand {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	margin: 0;
	color: #ffffff;
}

/* ===========================================
   Content (共通)
   =========================================== */
.entry-header { margin: 40px 0 16px; }
.entry-title { margin: 0 0 8px; font-size: 3.2rem; font-weight: 700; letter-spacing: 0.12em; }
.breadcrumbs { font-size: 1.2rem; color: #000000; margin-bottom: 24px; }
.breadcrumbs a { color: inherit; }
.entry-content { font-size: 1.6rem; line-height: 1.6; }
.entry-content p { margin: 0 0 16px; }
/* .entry-content img → 共通 .img-content でスタイル適用 */
.entry-content ul,
.entry-content ol {
	margin: 0 0 16px;
	padding-left: 1.5rem;
	list-style: disc;
}

/* お知らせ個別ページ（single post） */
.page-single-news .single-news__article {
	margin: 0;
	padding: 40px 0 80px;
}
.page-single-news .single-news__title {
	margin: 0 0 12px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}
.page-single-news .single-news__date {
	display: block;
	margin: 0 0 24px;
	font-size: 1.4rem;
	color: #666;
}
.page-single-news .single-news__body {
	margin: 0;
}
.page-single-news .single-news__back {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #e5e5e5;
}
.page-single-news .single-news__back-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 28px;
	border: 1px solid #000000;
	border-radius: 2px;
	font-size: 1.3rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #000000;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.page-single-news .single-news__back-link:hover {
	background-color: #000000;
	color: #ffffff;
}

/* ===========================================
   Utility
   =========================================== */
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	clip: rect(0, 0, 0, 0);
}

/* ===========================================
   Common: 画像（サイト全体で共通利用）
   =========================================== */
/* 画像ラッパー（アスペクト比固定・カバー表示用） */
.img-wrap {
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.img-wrap--ratio-3x2 {
	aspect-ratio: 3 / 2;
}

.img-wrap--ratio-3x4 {
	aspect-ratio: 3 / 4;
}

/* ラッパー内の画像（領域をカバー） */
.img-fit-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* レスポンシブ画像（幅100%、高さ自動） */
.img-responsive {
	width: 100%;
	height: auto;
	display: block;
}

/* コンテンツ内画像（max-width制限・投稿・モーダル等で共通利用） */
.img-content,
.entry-content img,
.result-modal__body img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* プレースホルダー状態 */
.img-wrap--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8e8e8;
}

.img-placeholder-text {
	font-size: 1.2rem;
	color: #000000;
	letter-spacing: 0.1em;
}

/* ===========================================
   Front: Hero（全幅・画像拡大）
   =========================================== */

/* キービジュアル用キーフレーム */
@keyframes hero-bg-zoom {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.1);
	}
}

@keyframes hero-overlay-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes hero-text-in {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.front-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	height: 640px;
	min-height: 520px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.front-hero__bg {
	position: absolute;
	inset: -10%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1);
	animation: hero-bg-zoom 10s ease-out forwards;
}

.front-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.6),
		rgba(0, 0, 0, 0.3)
	);
	opacity: 0;
	animation: hero-overlay-fade 1s ease-out 0.2s forwards;
}

.front-hero__inner {
	position: relative;
	z-index: 1;
	width: 1120px;
	margin-left: 40px;
	margin-right: auto;
	padding: 40px 40px 40px;
	color: #000000;
    margin: 0 auto;
}

.front-hero__title {
	color: #fff;
	leading-trim: both;
	text-edge: cap;
	font-family: Roboto, sans-serif;
	font-size: 64.238px;
	font-style: normal;
	font-weight: 800;
	line-height: 94%;
	text-shadow: 0 4px 4.8px #000;
	margin: 0 0 12px;
	opacity: 0;
	animation: hero-text-in 0.9s ease-out 0.5s forwards;
}

.front-hero__lead {
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-size: 27px;
	font-style:bold;
	font-weight: 800;
	line-height: 116%; /* 31.32px */
	text-shadow: 0 4px 4.8px #000;
	opacity: 0;
	animation: hero-text-in 0.9s ease-out 0.75s forwards;
}

/* アニメーション軽減を希望するユーザー向け */
@media (prefers-reduced-motion: reduce) {
	.front-hero__bg,
	.front-hero__overlay,
	.front-hero__title,
	.front-hero__lead {
		animation: none;
		opacity: 1;
		transform: none;
	}
	.front-hero__bg {
		transform: scale(1.1);
	}
}

@media (max-width: 959px) {
	.front-hero {
		height: 520px;
		min-height: 420px;
	}
	.front-hero__inner {
		margin-left: 20px;
		padding: 20px 20px 20px 0;
	}
	.front-hero__title {
		font-size: 3rem;
	}
}

@media (max-width: 599px) {
	.front-hero {
		height: 460px;
		min-height: 360px;
	}
	.front-hero__inner {
		margin-left: 20px;
		padding: 16px 20px 16px 0;
	}
	.front-hero__title {
		font-size: 2.4rem;
	}
}

/* ===========================================
   Front: NEWS
   =========================================== */
.front-news {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 60px 0;
	align-self: stretch;
	border-bottom: 1px solid #f0f0f0;
}

.front-news .front-section-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1120px;
    padding: 0;
	max-width: 1120px;
	width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.front-section-head {
	margin-bottom: 0;
}

.front-section-title {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-transform: uppercase;    right: 10px;
    margin-right: 36px;
}

.front-news__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-top: 1px solid #e5e5e5;
	width: 100%;
}

.front-news__item {
	display: flex;
	align-items: center;
	gap: 32px;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0;
}

.front-news__date {
	min-width: 90px;
	color: #000000;
	font-weight: bold;
}

.front-news__link {
	flex: 1;
}

.front-news__empty {
	font-size: 1.3rem;
	color: #000000;
	padding: 10px 0;
}

@media (max-width: 1199px) {
	.front-news {
		padding: 60px 40px;
	}
}

@media (max-width: 767px) {
	.front-news {
		padding: 48px 20px;
	}
	.front-section-title {
		font-size: 28px;
	}
}

@media (max-width: 599px) {
	.front-news__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

/* ===========================================
   Front: Intro Section
   =========================================== */
.front-intro {
	padding: 72px 0 40px;
}

.front-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	align-items: center;
	column-gap: 80px;
	row-gap: 40px;
}

.front-intro__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 1.6rem;
	line-height: 1.6;
}

.front-intro__title {
	font-size: 2.2rem;
	line-height: 1.7;
	margin: 0 0 16px;
}

.front-intro__lead {
	margin-bottom: 24px;
}

.front-intro__button {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    position: relative;
    background: #000000;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    overflow: visible;
    transition: opacity 0.2s ease;
    padding: 5px 20px;
    padding-right: 48px;
    width: 190px;
    justify-content: center;
}

.front-intro__button::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #ffffff;
}

.front-intro__button:hover {
	opacity: 0.85;
}

.front-intro__button-text {
    display: flex;
    align-items: center;
    padding: 8px 20px 8px 0;
    border-right: 1px solid #ffffff;
}

.front-intro__button-icon {
	width: 0;
	padding: 0;
	overflow: hidden;
	flex-shrink: 0;
}

.front-intro__button-icon::after {
	content: none; /* 三角は .front-intro__button::after で表示 */
}

.front-intro__visual {
	position: relative;
	min-height: 220px;
}

.front-intro__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 2px;
}

.front-intro__card {
	position: absolute;
	border-radius: 2px;
}

.front-intro__card--main {
	top: 0;
	right: 0;
	width: 330px;
	height: 410px;
	background: #e5e5e5 url("../images/top/top-01.png") no-repeat center / cover;
}

.front-intro__card--sub {
	bottom: -32px;
	left: 10%;
	width: 330px;
	height: 410px;
	background: #ffffff url("../images/top/top-02.png") no-repeat center / cover;
	box-shadow: 0 0 0 1px #f0f0f0;
}

@media (max-width: 959px) {
	.front-intro__inner {
		grid-template-columns: 1fr;
	}
	.front-intro__visual {
		order: -1;
	}
}

@media (max-width: 599px) {
	.front-intro {
		padding-top: 56px;
	}
	.front-intro__card--main {
		width: 190px;
		height: 190px;
	}
	.front-intro__card--sub {
		width: 150px;
		height: 150px;
	}
}

/* ===========================================
   Page: 事業内容（Business）
   =========================================== */
/* 総合プロデュース */
.page-business__produce {
	padding: 56px 0 64px;
	border-bottom: 1px solid #f0f0f0;
}

.page-business__produce-title {
    margin: 0 0 20px;
    font-size: 47px;
    line-height: 1.7;
    letter-spacing: -0.06em;
    text-align: center;
    font-weight: 800;
}

.page-business__produce .lead {
	margin-bottom: 40px;
}

.page-business__services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-business__service {
	padding: 28px 20px;
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 2px;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-business__service:hover {
	border-color: #e0e0e0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-business__service-icon {
	width: 128px;
	height: 128px;
	margin: 0 auto 16px;
	color: #000000;
}

.page-business__service-icon img,
.page-business__service-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.page-business__service-title {
    margin: 0 0 16px;
    min-height: 3em;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-business__service-desc {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.7;
	color: #000000;
}

/* 主な実績 */
.page-business__results {
	padding: 56px 0 64px;
}

.page-business__results .inner {
	background: #fafafa;
	border-radius: 23px;
	padding: 40px 51px;
}

.page-business__results-title {
	margin: 0 0 16px;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-align: center;
	color: #000000;
}

.page-business__results .lead {
	margin-bottom: 40px;
	text-align: left;
	color: #333333;
}

.page-business__results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-business__result {
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-radius: 9px;
	background: #FFF;
	border: none;
	overflow: visible;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	/* ロールオーバーアニメーションを無効化 */
	transition: none;
}

.page-business__result:hover {
	transform: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-business__result-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	/* ロールオーバーしてもカーソル形状を変えない */
	cursor: default;
}

.page-business__result-link:hover {
	color: inherit;
}

.page-business__result-link:focus {
	outline-offset: 2px;
}

.page-business__results-empty {
	grid-column: 1 / -1;
	padding: 40px 20px;
	text-align: center;
	color: #000000;
	font-size: 1.6rem;
}

/* 実績カード：本文（タイトル・説明）→ 画像の順 */
.page-business__result-body {
	padding: 0 0 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.page-business__result-title {
	margin: 0 0 12px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #000000;
}

.page-business__result-desc {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.7;
	color: #333333;
	flex: 1;
}

/* 実績カード画像（カード下部・角丸） */
.page-business__result-image {
	border-radius: 12px;
	overflow: hidden;
}

.page-business__result-image.img-wrap--placeholder {
	background: #e8e8e8;
}

/* 事業内容ページ：レスポンシブ */
@media (max-width: 959px) {
	.page-business__services {
		grid-template-columns: repeat(2, 1fr);
	}
	.page-business__results-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 20px;
	}
}

@media (max-width: 599px) {
	.page-business__produce {
		padding: 40px 0 48px;
	}
	.page-business__produce-title {
		font-size: 1.8rem;
	}
	.page-business__produce-lead {
		margin-bottom: 32px;
	}
	.page-business__services {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.page-business__service {
		padding: 24px 20px;
	}
	.page-business__results .inner {
		padding: 20px 20px;
	}
	.page-business__results {
		padding-top: 40px;
	}
	.page-business__results .lead {
		margin-bottom: 32px;
	}
	.page-business__results-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.page-business__result {
		padding: 24px 20px;
	}
	.page-business__result-body {
		padding: 0 0 16px;
	}
}

/* ===========================================
   Page: お問い合わせ（Contact）
   =========================================== */
.page-contact__form {
	padding: 56px 0 0px;
}

.page-contact__form .inner {
	max-width: 640px;
}

.page-contact__notice {
	margin: 0;
	padding: 24px;
	background: #f9f9f9;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #000000;
}

/* Contact Form 7 base style */
.page-contact__form .wpcf7 {
	font-size: 1.6rem;
	line-height: 1.6;
}

.page-contact__form .wpcf7-form {
	margin: 0;
}

.page-contact__form .wpcf7-form p {
	margin: 0 0 0px;
}

.page-contact__form .wpcf7-form dt {
	margin: 0 0 0px;font-size: 1.4rem;
	font-weight: 700;
}

.page-contact__form .wpcf7-form dd {
	margin: 10px 0 20px;
}

/* CF7 フォームレイアウト（contact-form7.md のHTML構造に対応） */
.page-contact__form .cf7-form__body {
	display: block;
}

/* セクション（グループ化・見出し） */
.page-contact__form .cf7-form__section {
	margin-bottom: 32px;
	padding: 24px 20px 20px;
	background: #fafafa;
	border: 1px solid #f0f0f0;
	border-radius: 4px;
}

.page-contact__form .cf7-form__section:last-of-type {
	margin-bottom: 0;
}

.page-contact__form .cf7-form__section-title {
	margin: 0 0 16px;
	padding-bottom: 8px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #000000;
	border-bottom: 1px solid #e5e5e5;
}

.page-contact__form .cf7-form__required {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 8px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #d23b3b;
	border-radius: 2px;
	vertical-align: middle;
}

.page-contact__form .cf7-form__row {
	margin-bottom: 24px;
}

.page-contact__form .cf7-form__section .cf7-form__row:last-child {
	margin-bottom: 0;
}

.page-contact__form .cf7-form__row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}

.page-contact__form .cf7-form__row--half p {
	margin: 0 0 20px;
}

.page-contact__form .cf7-form__row--half p:last-child {
	margin-bottom: 0;
}

.page-contact__form .cf7-form__row--submit {
	margin-top: 40px;
	margin-bottom: 0;
	text-align: center;
}

.page-contact__form .cf7-form__row--submit p {
	margin: 0;
}

@media (max-width: 599px) {
	.page-contact__form .cf7-form__section {
		padding: 20px 16px 16px;
		margin-bottom: 24px;
	}
	.page-contact__form .cf7-form__section-title {
		font-size: 1.3rem;
		margin-bottom: 12px;
		padding-bottom: 6px;
	}
	.page-contact__form .cf7-form__row--half {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.page-contact__form .cf7-form__row--half p {
		margin: 0 0 20px;
	}
	.page-contact__form .cf7-form__row--half p:last-child {
		margin-bottom: 0;
	}
	.page-contact__form .cf7-form__row--submit {
		margin-top: 32px;
	}
}

.page-contact__form .wpcf7-form label {
	display: block;
	margin: 0 0 6px;
	font-size: 1.3rem;
	letter-spacing: 0.04em;
}

/* 必須項目の表示（赤い「必須」バッジ） */
.page-contact__form .wpcf7-form p.wpcf7-validates-as-required label::after {
	content: "必須";
	display: inline-block;
	margin-left: 8px;
	padding: 2px 6px;
	font-size: 1rem;
	font-weight: normal;
	color: #d23b3b;
	background: rgba(210, 59, 59, 0.08);
	border-radius: 2px;
	vertical-align: middle;
}

.page-contact__form .wpcf7-form input[type="text"],
.page-contact__form .wpcf7-form input[type="email"],
.page-contact__form .wpcf7-form input[type="tel"],
.page-contact__form .wpcf7-form input[type="url"],
.page-contact__form .wpcf7-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #dddddd;
	border-radius: 2px;
	font-size: 1.4rem;
	box-sizing: border-box;
	background-color: #ffffff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.page-contact__form .wpcf7-form textarea {
	min-height: 160px;
	resize: vertical;
}

/* プレースホルダー（スタイルガイド: テキスト最淡 #999999） */
.page-contact__form .wpcf7-form input::placeholder,
.page-contact__form .wpcf7-form textarea::placeholder {
	color: #999999;
	opacity: 1;
}

.page-contact__form .wpcf7-form input[type="text"]:focus,
.page-contact__form .wpcf7-form input[type="email"]:focus,
.page-contact__form .wpcf7-form input[type="tel"]:focus,
.page-contact__form .wpcf7-form input[type="url"]:focus,
.page-contact__form .wpcf7-form textarea:focus {
	border-color: #000000;
	box-shadow: 0 0 0 1px #000000 inset;
	outline: none;
}

.page-contact__form .wpcf7-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 10px 28px;
	border: 1px solid #000000;
	border-radius: 2px;
	background-color: #000000;
	color: #ffffff;
	font-size: 1.3rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s ease;
}

.page-contact__form .wpcf7-form input[type="submit"]:hover {
	background-color: #ffffff;
	color: #000000;
}

.page-contact__form .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 1.2rem;
	color: #d23b3b;
}

.page-contact__form .wpcf7-form input[type="submit"]:focus-visible {
	outline: 2px solid #333;
	outline-offset: 2px;
}

.page-contact__form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 12px 16px;
	border-radius: 2px;
	font-size: 1.3rem;
}

/* ===========================================
   Page: 会社概要（Company）
   =========================================== */

/* 代表メッセージ・ビジョン */
.page-company__message {
	padding: 56px 0 64px;
	border-bottom: 1px solid #f0f0f0;
}

.page-company__message-title {
	margin: 0 0 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.page-company__message-inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	align-items: start;
	gap: 48px;
}

.page-company__message-visual {
	margin: 0;
}

/* 代表写真（共通 .img-responsive を使用） */

/* プレースホルダー（共通クラス＋フォント指定） */
.page-company__message-placeholder {
	font-size: 1.3rem;
	letter-spacing: 0.08em;
}

.page-company__message-caption {
	margin: 12px 0 0;
	font-size: 1.3rem;
	color: #000000;
	letter-spacing: 0.04em;
}

.page-company__message-body {
	min-width: 0;
}

.page-company__message-heading {
	margin: 0 0 20px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.page-company__message-text {
	font-size: 1.6rem;
	line-height: 1.6;
	color: #000000;
}

.page-company__message-text p {
	margin: 0 0 16px;
}

.page-company__message-text p:last-child {
	margin-bottom: 0;
}

/* 略歴セクション */
.page-company__career {
	margin-top: 24px;
	padding: 24px;
	background-color: #f5f5f5;
}

.page-company__career .page-company__message-subheading,
.page-company__career p {
	font-size: 1.4rem;
}

.page-company__career p {
	margin: 0 0 16px;
}

.page-company__career p:last-child {
	margin-bottom: 0;
}

/* 会社概要リスト */
.page-company__info {
	padding: 56px 0 64px;
	border-bottom: 1px solid #f0f0f0;
}

.page-company__info-title {
	margin: 0 0 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.page-company__info-list {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	margin: 0;
	border-top: 1px solid #e5e5e5;
}

.page-company__info-term {
	margin: 0;
	padding: 16px 24px 16px 0;
	border-bottom: 1px solid #e5e5e5;
	font-size: 1.4rem;
	font-weight: 700;
	color: #000000;
	letter-spacing: 0.04em;
}

.page-company__info-desc {
	margin: 0;
	padding: 16px 0;
	border-bottom: 1px solid #e5e5e5;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #000000;
}

.page-company__info-bullets {
	margin: 0;
	padding-left: 1.25rem;
	list-style: disc;
}

.page-company__info-bullets li {
	margin-bottom: 8px;
}

.page-company__info-bullets li:last-child {
	margin-bottom: 0;
}

/* アクセスマップ */
.page-company__map {
	padding: 56px 0 80px;
}

.page-company__map-frame {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	border-radius: 2px;
	background: #f0f0f0;
}

.page-company__map-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-company__map-address {
	margin: 16px 0 8px;
	font-size: 1.4rem;
	color: #000000;
}

.page-company__map-link-wrap {
	margin: 0;
}

.page-company__map-link {
	display: inline-block;
	font-size: 1.4rem;
	text-decoration: underline;
	color: #000000;
}

.page-company__map-link:hover {
	opacity: 0.8;
}

/* 会社概要ページ：レスポンシブ */
@media (max-width: 959px) {
	.page-company__message-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.page-company__message-visual {
		max-width: 280px;
	}
	.page-company__info-list {
		grid-template-columns: 1fr;
	}
	.page-company__info-term {
		padding: 12px 0 4px;
		border-bottom: none;
	}
	.page-company__info-desc {
		padding: 0 0 20px;
		border-bottom: 1px solid #e5e5e5;
	}
}

@media (max-width: 599px) {
	.page-company__message {
		padding: 40px 0 48px;
	}
	.page-company__message-title {
		margin-bottom: 24px;
		font-size: 1.8rem;
	}
	.page-company__message-heading {
		font-size: 1.6rem;
	}
	.page-company__info {
		padding: 40px 0 48px;
	}
	.page-company__info-title {
		margin-bottom: 24px;
		font-size: 1.8rem;
	}
	.page-company__map {
		padding: 40px 0 60px;
	}
}

/* ===========================================
   Page: よくある質問（FAQ）
   =========================================== */
.page-faq__section {
	padding: 56px 0 0;
}

.page-faq__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.page-faq__item {
	border-bottom: 1px solid #f0f0f0;
	padding: 28px 0 32px;
}

.page-faq__item:first-child {
	padding-top: 0;
}

.page-faq__q,
.page-faq__a {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.8;
}

.page-faq__q {
	margin-bottom: 16px;
	font-weight: 700;
	color: #000000;
}

.page-faq__a {
	font-size: 1.6rem;
	color: #000000;
	padding-left: 0;
	line-height: 1.9;
}

.page-faq__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.page-faq__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.page-faq__icon--q {
	color: #000000;
}

.page-faq__icon--a {
	color: #000000;
}

.page-faq__q-text,
.page-faq__a-text {
	flex: 1;
	min-width: 0;
}

@media (max-width: 767px) {
	.page-faq__section {
		padding-top: 40px;
	}
	.page-faq__item {
		padding: 24px 0 28px;
	}
	.page-faq__q,
	.page-faq__a {
		gap: 12px;
		font-size: 1.4rem;
	}
	.page-faq__icon {
		width: 36px;
		height: 36px;
	}
	.page-faq__icon svg {
		transform: scale(0.9);
		transform-origin: center;
	}
}

/* ===========================================
   Result Modal（主な実績詳細）
   =========================================== */
.result-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transition:
		visibility 0s linear 0.3s,
		opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-modal[aria-hidden="false"],
.result-modal.result-modal--open {
	visibility: visible;
	pointer-events: auto;
	opacity: 1;
	transition:
		visibility 0s linear 0s,
		opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	opacity: 0;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity;
}

.result-modal.result-modal--open .result-modal__overlay {
	opacity: 1;
}

.result-modal__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	opacity: 0;
	transform: translateY(24px) scale(0.98);
	transition:
		opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
}

.result-modal.result-modal--open .result-modal__inner {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition:
		opacity 0.35s cubic-bezier(0, 0, 0.2, 1) 0.05s,
		transform 0.35s cubic-bezier(0, 0, 0.2, 1) 0.05s;
}

.result-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 2.8rem;
	line-height: 1;
	color: #000000;
	cursor: pointer;
	transition: color 0.2s ease;
}

.result-modal__close:hover,
.result-modal__close:focus {
	color: #000000;
}

.result-modal__close:focus {
	outline: 2px solid #333;
	outline-offset: 2px;
}

.result-modal__content {
	padding: 32px 40px 40px;
	overflow-y: auto;
	flex: 1;
}

.result-modal__title {
	margin: 0 0 20px;
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding-right: 40px;
}

.result-modal__body {
	font-size: 1.6rem;
	line-height: 1.6;
}

.result-modal__body p {
	margin: 0 0 16px;
}

.result-modal__body p:last-child {
	margin-bottom: 0;
}

.result-modal__body ul,
.result-modal__body ol {
	margin: 0 0 16px;
	padding-left: 1.5rem;
}

/* .result-modal__body img → 共通 .img-content でスタイル適用 */

/* ===========================================
   On-scroll animation（オンスクロールアニメーション）
   =========================================== */
.js-scroll-animate {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-scroll-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* フェードインのみ */
.js-scroll-animate--fade-in {
	transform: none;
}

.js-scroll-animate--fade-in.is-visible {
	transform: none;
}

/* 左から */
.js-scroll-animate--fade-left {
	transform: translateX(-24px);
}

.js-scroll-animate--fade-left.is-visible {
	transform: translateX(0);
}

/* 右から */
.js-scroll-animate--fade-right {
	transform: translateX(24px);
}

.js-scroll-animate--fade-right.is-visible {
	transform: translateX(0);
}

/* ===========================================
   Page Top（ページの先頭へボタン）
   =========================================== */
.pagetop {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	background: #070b14;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 4px;
	font-size: 1.3rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.pagetop.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pagetop:hover {
	opacity: 0.9;
}

.pagetop:focus {
	outline: 2px solid #333;
	outline-offset: 2px;
}

.pagetop__text::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 8px;
	vertical-align: middle;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 6px solid currentColor;
}

@media (max-width: 599px) {
	.pagetop {
		right: 16px;
		bottom: 16px;
		padding: 10px 16px;
		font-size: 1.2rem;
	}
}