/*
Theme Name: Moriyama Painting Theme
Theme URI:
Author: Moriyama Painting
Description: 森山塗装のWordPressテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: moriyama-painting-theme
*/

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	color: #1b2836;
	background: #f4f6f8;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
	scroll-behavior: smooth;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
}

.page-loader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at center, rgba(9, 48, 82, 0.92) 0%, rgba(3, 16, 30, 0.98) 68%, rgba(1, 8, 16, 1) 100%);
	opacity: 1;
	visibility: visible;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.page-loader__content {
	position: relative;
	text-align: center;
	color: #fff;
	padding: 48px 56px;
}

.page-loader__content::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.035);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.page-loader__label,
.page-loader__logo,
.page-loader__line,
.page-loader__copy,
.page-loader__spinner {
	position: relative;
	z-index: 1;
}

.page-loader__label {
	margin: 0 0 14px;
	color: #f28b45;
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.32em;
}

.page-loader__logo {
	margin: 0;
	font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(38px, 5.5vw, 62px);
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.page-loader__line {
	display: block;
	width: 120px;
	height: 1px;
	margin: 24px auto 18px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.page-loader__copy {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.88);
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.page-loader__spinner {
	position: relative;
	width: 48px;
	height: 48px;
	margin: 0 auto;
	border: 4px solid rgba(255, 255, 255, 0.28);
	border-top-color: #f28b45;
	border-radius: 50%;
	animation: moriyamaLoaderSpin 0.85s linear infinite;
	will-change: transform;
}

@keyframes moriyamaLoaderSpin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 600px) {
	.page-loader__content {
		width: calc(100% - 40px);
		padding: 40px 24px;
	}

	.page-loader__label {
		font-size: 10px;
		letter-spacing: 0.24em;
	}

	.page-loader__logo {
		font-size: 36px;
		letter-spacing: 0.14em;
	}

	.page-loader__copy {
		font-size: 13px;
		letter-spacing: 0.08em;
	}
}

.front-page {
	width: 100%;
	margin: 0;
}

.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: #0d2238;
}

.hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(5, 18, 32, 0.82) 0%, rgba(5, 18, 32, 0.54) 44%, rgba(5, 18, 32, 0.2) 100%);
}

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	background: transparent;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	box-sizing: border-box;
	width: 100%;
	padding: 24px 48px;
}

.site-logo {
	margin: 0;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
	white-space: nowrap;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.site-nav a {
	text-decoration: none;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	background: rgba(4, 22, 39, 0.28);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav {
	display: none;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	width: min(1120px, calc(100% - 48px));
	min-height: 100vh;
	margin: 0 auto;
	padding: 156px 0 198px;
	color: #fff;
}

.hero__label {
	margin: 0 0 18px;
	color: #ffb15c;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hero h1 {
	margin: 0;
	font-size: clamp(42px, 6vw, 78px);
	line-height: 1.14;
	letter-spacing: 0;
	text-shadow: 0 5px 22px rgba(0, 0, 0, 0.42);
}

.hero__lead {
	max-width: 620px;
	margin: 24px 0 0;
	font-size: 18px;
	line-height: 1.9;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	max-width: 620px;
	margin-top: 34px;
}

body.is-hero-static .hero__label,
body.is-hero-static .hero__title,
body.is-hero-static .hero__lead,
body.is-hero-static .hero__buttons {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	animation: none !important;
}

.scroll-reveal,
.scroll-reveal-card {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 0.9s ease,
		transform 0.9s ease,
		filter 0.9s ease;
	filter: blur(4px);
}

.scroll-reveal.is-visible,
.scroll-reveal-card.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.scroll-reveal-card:nth-child(2) {
	transition-delay: 0.12s;
}

.scroll-reveal-card:nth-child(3) {
	transition-delay: 0.24s;
}

.scroll-reveal-card:nth-child(4) {
	transition-delay: 0.36s;
}

.scroll-reveal-card:nth-child(5) {
	transition-delay: 0.48s;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 50px;
	padding: 0 26px;
	border-radius: 4px;
	font-weight: 800;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease,
		background 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(10, 39, 70, 0.18);
}

.btn--primary,
.btn--accent {
	color: #fff;
	background: #f28c28;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.btn--outline {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-info {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 4;
	width: 100%;
	color: #fff;
	background: rgba(7, 42, 76, 0.22);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.hero-info__inner {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr auto;
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.hero-info__item {
	display: flex;
	align-items: center;
	padding: 18px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

.hero-info__item:last-child {
	border-right: 0;
}

.hero-info__icon {
	flex: 0 0 auto;
	width: 34px;
	color: #ffb15c;
	font-size: 22px;
	line-height: 1;
}

.hero-info__text {
	min-width: 0;
}

.hero-info p {
	margin: 0 0 4px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
}

.hero-info small {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
}

.hero-info__tel,
.hero-info strong {
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	text-decoration: none;
}

.hero-info__item--cta {
	justify-content: center;
}

.hero-info__item--cta .btn {
	min-width: 190px;
	font-size: 15px;
}

.section {
	padding: 86px 0;
	background: #fff;
}

.section:nth-of-type(odd) {
	background: #f4f6f8;
}

.section__inner {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.section__label {
	margin: 0 0 10px;
	color: #f28c28;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section h2,
.contact-cta h2 {
	margin: 0;
	color: #10263d;
	font-size: 34px;
	line-height: 1.4;
	letter-spacing: 0;
}

.section__lead {
	max-width: 760px;
	margin: 18px 0 0;
	line-height: 1.9;
}

.service-grid,
.strength-grid,
.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 34px;
}

.service-card,
.strength-card,
.work-card,
.flow-card {
	overflow: hidden;
	background: #fff;
	box-shadow: 0 14px 36px rgba(10, 34, 56, 0.09);
}

.service-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.service-card {
	cursor: default;
	transition:
		opacity 0.9s ease,
		transform 0.9s ease,
		filter 0.9s ease,
		box-shadow 0.2s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(10, 39, 70, 0.16);
}

.service-card:focus-visible {
	outline: 3px solid rgba(242, 139, 69, 0.7);
	outline-offset: 4px;
}

.service-card__body,
.work-card__body {
	padding: 24px 24px 28px;
	text-align: center;
}

.service-card h3,
.strength-card h3,
.work-card h3,
.work-card h2,
.flow-card h3 {
	margin: 0 0 10px;
	color: #10263d;
	font-size: 21px;
}

.service-card p,
.strength-card p,
.flow-card p,
.work-card p {
	margin: 0;
	line-height: 1.8;
}

.service-card__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 180px;
	min-height: 48px;
	margin-top: 20px;
	padding: 12px 26px;
	color: #fff;
	background: linear-gradient(135deg, #0b4f8a 0%, #073f75 100%);
	border: none;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(10, 39, 70, 0.18);
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.06em;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease,
		opacity 0.25s ease;
}

.service-card__button::after {
	content: "→";
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	transition: transform 0.25s ease;
}

.service-card__button::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.service-card__button:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(10, 39, 70, 0.24);
}

.service-card__button:hover::before {
	opacity: 1;
}

.service-card__button:hover::after {
	transform: translateX(4px);
}

.service-card__button:active {
	transform: translateY(-1px);
}

.service-card__button:focus-visible {
	outline: 3px solid rgba(242, 139, 69, 0.7);
	outline-offset: 4px;
}

@media (max-width: 600px) {
	.service-card__button {
		min-width: 160px;
		min-height: 44px;
		padding: 11px 22px;
		font-size: 13px;
	}
}

.works-archive .section h1 {
	margin: 0;
	color: #10263d;
	font-size: 38px;
	line-height: 1.4;
	letter-spacing: 0;
}

.works-archive {
	padding: 120px 20px 80px;
	background: #f6f9fc;
}

.works-archive h1 {
	margin: 0;
	color: #073f75;
	font-size: 38px;
	text-align: center;
	letter-spacing: 0.12em;
}

.works-section--featured {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
	overflow: hidden;
}

.works-section--featured::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 50%;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(11, 79, 138, 0.12) 0%, rgba(11, 79, 138, 0) 68%);
	transform: translateX(-50%);
	pointer-events: none;
}

.works-section--featured .section__inner {
	position: relative;
	z-index: 1;
}

.works-section--featured h2 {
	position: relative;
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.works-section--featured h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin: 16px auto 0;
	background: #f28b45;
}

.work-card--featured {
	transition:
		opacity 0.9s ease,
		transform 0.9s ease,
		filter 0.9s ease,
		box-shadow 0.25s ease;
}

.work-card--featured.is-visible {
	box-shadow: 0 18px 45px rgba(10, 39, 70, 0.14);
}

.work-card--featured:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 55px rgba(10, 39, 70, 0.2);
}

.work-card--featured .work-compare img {
	transition: transform 0.45s ease;
}

.work-card--featured:hover .work-compare img {
	transform: scale(1.04);
}

.works-back {
	margin: 28px 0 0;
	text-align: center;
}

.works-back__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 46px;
	padding: 12px 24px;
	color: #073f75;
	border: 1px solid #073f75;
	background: #fff;
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.works-back__link:hover {
	color: #fff;
	background: #073f75;
}

.works-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	max-width: 1180px;
	margin: 48px auto 0;
}

.works-archive-grid .work-card__body {
	padding: 24px 24px 28px;
}

.works-grid--archive {
	grid-template-columns: repeat(4, 1fr);
}

.works-more {
	margin-top: 34px;
	text-align: center;
}

.nav-links {
	margin-top: 34px;
	text-align: center;
}

.nav-links a,
.nav-links span {
	display: inline-block;
	margin: 0 4px;
	color: #10263d;
	font-weight: 700;
	text-decoration: none;
}

.work-card__body h2,
.work-card__body h3 {
	margin: 0 0 12px;
	color: #073f75;
	font-size: 20px;
	line-height: 1.5;
	text-align: center;
}

.btn--outline-dark {
	color: #073f75;
	border: 1px solid #073f75;
	background: transparent;
}

.btn--outline-dark:hover {
	color: #fff;
	background: #073f75;
}

.strength-card {
	padding: 28px;
	border-top: 4px solid #f28c28;
}

.strengths-section {
	padding: 90px 20px;
	background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.section__label--center {
	text-align: center;
}

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

.strengths-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	max-width: 1100px;
	margin: 44px auto 0;
	align-items: center;
}

.strength-item {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 140px;
	padding: 10px 30px;
	background: transparent;
}

.strength-item:not(:last-child) {
	border-right: 1px solid #cfd9e6;
}

.strength-item__icon {
	flex: 0 0 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #f7f4ee;
}

.strength-item__icon svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: #1c56a3;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.strength-item__body {
	flex: 1;
}

.strength-item__body h3 {
	margin: 0 0 10px;
	color: #0d3d78;
	font-size: clamp(22px, 2vw, 32px);
	font-weight: 700;
	line-height: 1.4;
}

.strength-item__body p {
	margin: 0;
	color: #4c5b6b;
	font-size: 14px;
	line-height: 1.9;
}

@media (max-width: 900px) {
	.strengths-list {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.strength-item {
		min-height: auto;
		padding: 0;
	}

	.strength-item:not(:last-child) {
		padding-bottom: 24px;
		border-right: none;
		border-bottom: 1px solid #cfd9e6;
	}

	.strength-item:not(:first-child) {
		padding-top: 24px;
	}
}

@media (max-width: 600px) {
	.strengths-section {
		padding: 70px 20px;
	}

	.strength-item {
		align-items: flex-start;
		gap: 18px;
	}

	.strength-item__icon {
		flex: 0 0 68px;
		width: 68px;
		height: 68px;
	}

	.strength-item__icon svg {
		width: 36px;
		height: 36px;
	}

	.strength-item__body h3 {
		font-size: 22px;
	}

	.strength-item__body p {
		font-size: 13px;
		line-height: 1.8;
	}
}

.service-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.service-modal.is-open {
	display: flex;
}

.service-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(4, 20, 36, 0.72);
}

.service-modal__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	width: min(960px, 100%);
	max-height: 88vh;
	overflow: hidden;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.service-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	color: #fff;
	background: rgba(7, 42, 76, 0.9);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.service-modal__close:hover {
	background: #f28b45;
}

.service-modal__image {
	min-height: 420px;
	background: #eaf1f7;
}

.service-modal__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-modal__body {
	padding: 48px 42px;
	overflow-y: auto;
}

.service-modal__label {
	margin: 0 0 8px;
	color: #0b4f8a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.service-modal__body h3 {
	margin: 0 0 28px;
	color: #073f75;
	font-size: 32px;
	letter-spacing: 0.08em;
}

.service-modal__body h4 {
	margin: 26px 0 10px;
	color: #10233b;
	font-size: 18px;
	font-weight: 700;
}

.service-modal__body p {
	margin: 0;
	color: #405166;
	font-size: 15px;
	line-height: 2;
}

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

.work-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: #dfe5ea;
}

.work-compare__item,
.work-compare figure {
	position: relative;
	margin: 0;
	min-height: 160px;
	background: #0d2238;
	overflow: hidden;
}

.work-compare__item:first-child,
.work-compare figure:first-child {
	border-right: 1px solid #fff;
}

.work-compare__item span,
.work-compare span {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	padding: 4px 9px;
	color: #fff;
	background: rgba(10, 32, 52, 0.82);
	font-size: 12px;
	font-weight: 800;
}

.work-compare__item img,
.work-compare img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.work-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
	color: #5f6f82;
	background: #e9eef4;
	font-size: 13px;
}

.work-card__area {
	margin: 0 0 12px;
	color: #10233b;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.works-card__content-detail {
	margin: 0 0 12px;
	color: #0b3f73;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
}

.works-card__content-detail span {
	color: #0f2742;
}

.work-card__excerpt {
	color: #4d5b6b;
	font-size: 14px;
	line-height: 1.8;
	text-align: center;
}

.work-card__body p {
	text-align: center;
}

.works-pagination {
	margin-top: 48px;
	text-align: center;
}

.flow-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin-top: 34px;
}

.flow-card {
	padding: 24px 18px;
}

.flow-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 14px;
	color: #fff;
	background: #f28c28;
	border-radius: 50%;
	font-weight: 800;
}

.company-box {
	margin-top: 34px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(10, 34, 56, 0.09);
}

.company-list {
	margin: 0;
}

.company-list div {
	display: grid;
	grid-template-columns: 180px 1fr;
	border-bottom: 1px solid #dfe5ea;
}

.company-list div:last-child {
	border-bottom: 0;
}

.company-list dt,
.company-list dd {
	margin: 0;
	padding: 18px 22px;
	line-height: 1.8;
}

.company-list dt {
	color: #10263d;
	font-weight: 800;
	background: #f4f6f8;
}

.company-list a {
	color: inherit;
	text-decoration: none;
}

.contact-cta {
	padding: 76px 0;
	color: #fff;
	background: #10263d;
}

.contact-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.contact-cta h2,
.contact-cta .section__label {
	color: #fff;
}

.contact-cta p {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.84);
	line-height: 1.8;
}

.contact-cta__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex: 0 0 auto;
	text-align: center;
}

.contact-cta__action > span {
	display: block;
	width: 100%;
	text-align: center;
}

.contact-cta__action .btn {
	margin: 0 auto;
}

.contact-phone {
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	text-decoration: none;
}

.page-top-button {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9998;
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	color: #fff;
	background: rgba(7, 63, 117, 0.92);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

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

.page-top-button:hover {
	background: #f28b45;
}

@media (max-width: 1000px) {
	.site-header__inner {
		position: relative;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 8px);
		right: 48px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		min-width: 220px;
		padding: 10px;
		border: 1px solid rgba(255, 255, 255, 0.18);
		background: rgba(4, 22, 39, 0.94);
		box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	}

	.site-header.is-menu-open .site-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav a {
		padding: 13px 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-nav a:last-child {
		border-bottom: 0;
	}

	.hero-info {
		width: 100%;
	}

	.hero-info__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-info__item:nth-child(2) {
		border-right: 0;
	}

	.hero-info__item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.hero-info__item:nth-child(3),
	.hero-info__item:nth-child(4) {
		border-bottom: 0;
	}

	.service-grid,
	.strength-grid,
	.works-grid,
	.works-grid--archive,
	.flow-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1100px) {
	.works-archive-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.works-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.site-header__inner {
		padding: 18px 20px;
	}

	.site-logo {
		font-size: 22px;
	}

	.site-nav {
		right: 20px;
		left: 20px;
		min-width: 0;
	}

	.hero {
		min-height: 100svh;
	}

	.hero__overlay {
		background: linear-gradient(180deg, rgba(5, 18, 32, 0.74) 0%, rgba(5, 18, 32, 0.58) 48%, rgba(5, 18, 32, 0.82) 100%);
	}

	.hero__content {
		width: calc(100% - 40px);
		min-height: 100svh;
		padding: 104px 0 338px;
	}

	.hero__label {
		font-size: 13px;
		line-height: 1.7;
	}

	.hero h1 {
		font-size: 40px;
	}

	.hero__lead {
		font-size: 15px;
		line-height: 1.8;
	}

	.hero__buttons {
		width: 100%;
	}

	.hero-info {
		bottom: 0;
		width: 100%;
	}

	.hero-info__inner {
		grid-template-columns: 1fr;
	}

	.hero-info__item,
	.hero-info__item:nth-child(2),
	.hero-info__item:nth-child(3) {
		padding: 12px 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.hero-info__item:last-child {
		border-bottom: 0;
	}

	.hero-info__tel,
	.hero-info strong {
		font-size: 18px;
	}

	.hero-info__item--cta .btn {
		width: 100%;
	}

	.section {
		padding: 56px 0;
	}

	.section__inner,
	.contact-cta__inner {
		width: calc(100% - 40px);
	}

	.section h2,
	.contact-cta h2 {
		font-size: 26px;
	}

	.service-grid,
	.strength-grid,
	.works-grid,
	.works-grid--archive,
	.flow-grid {
		grid-template-columns: 1fr;
	}

	.works-archive {
		padding: 90px 20px 60px;
	}

	.works-archive-grid {
		grid-template-columns: 1fr;
	}

	.work-compare__item img,
	.work-compare figure img,
	.work-placeholder {
		height: 170px;
	}

	.service-modal {
		padding: 16px;
	}

	.service-modal__content {
		grid-template-columns: 1fr;
		max-height: 90vh;
		overflow-y: auto;
	}

	.service-modal__image {
		min-height: 220px;
	}

	.service-modal__body {
		padding: 30px 22px;
	}

	.service-modal__body h3 {
		font-size: 26px;
	}

	.service-modal__close {
		top: 10px;
		right: 10px;
	}

	.company-list div {
		grid-template-columns: 1fr;
	}

	.contact-cta__inner {
		display: block;
	}

	.contact-cta__action {
		align-items: center;
		margin-top: 26px;
	}

	.contact-phone {
		font-size: 26px;
	}

	.page-top-button {
		right: 16px;
		bottom: 16px;
		width: 48px;
		height: 48px;
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.site-header {
		pointer-events: auto;
	}

	.site-header__inner {
		position: relative;
		z-index: 10002;
	}

	.site-nav {
		display: none;
	}

	.menu-toggle {
		position: relative;
		z-index: 10003;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 5px;
		width: 44px;
		height: 44px;
		padding: 0;
		border: none;
		background: transparent;
		cursor: pointer;
		pointer-events: auto;
	}

	.menu-toggle span {
		display: block;
		width: 24px;
		height: 2px;
		background: #fff;
		border-radius: 999px;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.menu-toggle.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle.is-open span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.mobile-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10001;
		display: flex;
		flex-direction: column;
		width: min(78vw, 320px);
		height: 100vh;
		padding: 96px 28px 32px;
		background: rgba(5, 25, 45, 0.97);
		box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		pointer-events: auto;
	}

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

	.mobile-nav a {
		display: block;
		padding: 16px 0;
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
		font-size: 16px;
		font-weight: 700;
		text-decoration: none;
		letter-spacing: 0.06em;
		pointer-events: auto;
	}

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.scroll-reveal,
	.scroll-reveal-card {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}

	.page-loader__spinner {
		animation: moriyamaLoaderSpin 1.2s linear infinite !important;
	}
}

@media (max-width: 767px) {
	.hero {
		height: auto;
		min-height: auto;
		overflow: hidden;
	}

	.hero__image {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.hero__overlay {
		position: absolute;
		inset: 0;
	}

	.hero__content {
		position: relative;
		z-index: 3;
		width: 100%;
		min-height: auto;
		padding: 140px 28px 36px;
	}

	.hero__buttons {
		margin-top: 32px;
		margin-bottom: 0;
	}

	.hero__buttons .btn {
		position: relative;
		z-index: 5;
	}

	.hero-info {
		position: relative;
		left: auto;
		bottom: auto;
		z-index: 4;
		width: calc(100% - 32px);
		margin: 24px auto 0;
		padding: 0;
		background: rgba(7, 42, 76, 0.56);
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
	}

	.hero-info__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
		padding: 24px 28px;
		box-sizing: border-box;
	}

	.hero-info__item {
		display: flex;
		align-items: center;
		gap: 16px;
		width: 100%;
		padding: 22px 0;
		margin: 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
		background: transparent;
	}

	.hero-info__item:first-child {
		padding-top: 0;
	}

	.hero-info__item:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}

	.hero-info__item--cta {
		justify-content: stretch;
	}

	.hero-info__item--cta .btn {
		width: 100%;
		min-width: 0;
	}
}

/* ==============================
   Loader spinner final override
============================== */

.page-loader .page-loader__spinner {
	width: 48px !important;
	height: 48px !important;
	margin: 0 auto !important;
	border: 4px solid rgba(255, 255, 255, 0.28) !important;
	border-top-color: #f28b45 !important;
	border-radius: 50% !important;
	animation-name: moriyamaLoaderSpinFinal !important;
	animation-duration: 0.85s !important;
	animation-timing-function: linear !important;
	animation-iteration-count: infinite !important;
	transform-origin: center center !important;
	will-change: transform !important;
}

@keyframes moriyamaLoaderSpinFinal {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
  .page-loader .page-loader__spinner {
    animation-name: moriyamaLoaderSpinFinal !important;
    animation-duration: 1.2s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

/* ==============================
   Service section design
============================== */
.service-section {
	padding: 96px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.service-section .section__inner {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.service-section .section__label {
	color: #0b4f8a;
	text-align: center;
	letter-spacing: 0.18em;
}

.service-section h2 {
	color: #073f75;
	text-align: center;
}

.service-section .section__lead {
	max-width: 720px;
	margin: 16px auto 0;
	color: #4c5b6b;
	text-align: center;
}

.service-section .service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 46px;
}

.service-section .service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5edf5;
	border-radius: 12px;
	box-shadow: 0 16px 34px rgba(11, 63, 117, 0.1);
	cursor: default;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-section .service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(11, 63, 117, 0.16);
}

.service-card__media {
	position: relative;
}

.service-section .service-card__media img,
.service-section .service-card > img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-card__icon {
	position: absolute;
	left: 28px;
	bottom: -30px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #073f75;
	box-shadow: 0 10px 22px rgba(7, 63, 117, 0.25);
}

.service-card__icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-section .service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 48px 28px 30px;
	text-align: left;
}

.service-section .service-card h3 {
	margin: 0 0 12px;
	color: #073f75;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
}

.service-section .service-card p {
	margin: 0 0 24px;
	color: #526170;
	font-size: 14px;
	line-height: 1.9;
}

.service-section .service-card__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 148px;
	min-height: 42px;
	margin-top: auto;
	padding: 10px 22px;
	color: #073f75;
	background: #fff;
	border: 1px solid #073f75;
	border-radius: 999px;
	box-shadow: none;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-section .service-card__button::before {
	display: none;
}

.service-section .service-card__button::after {
	content: ">";
	display: inline-block;
	font-size: 13px;
	transition: transform 0.2s ease;
}

.service-section .service-card__button:hover {
	color: #fff;
	background: #073f75;
	transform: translateY(-2px);
	box-shadow: 0 12px 22px rgba(7, 63, 117, 0.18);
}

.service-section .service-card__button:hover::after {
	transform: translateX(4px);
}

.service-section .service-card__button:focus-visible {
	outline: 3px solid rgba(242, 139, 69, 0.7);
	outline-offset: 4px;
}

@media (max-width: 768px) {
	.service-section {
		padding: 76px 0;
	}

	.service-section .section__inner {
		width: min(100% - 32px, 1180px);
	}

	.service-section .service-grid {
		grid-template-columns: 1fr;
		gap: 26px;
		margin-top: 36px;
	}

	.service-section .service-card__media img,
	.service-section .service-card > img {
		height: 180px;
	}

	.service-section .service-card__body {
		padding: 46px 24px 28px;
	}

	.service-card__icon {
		left: 24px;
		bottom: -28px;
		width: 56px;
		height: 56px;
	}

	.service-card__icon svg {
		width: 30px;
		height: 30px;
	}
}

/* ==============================
   Contact form page
============================== */
.contact-page {
	min-height: 100vh;
	background: linear-gradient(180deg, #f6f9fc 0%, #eef4f9 100%);
}

.contact-form-section {
	padding: 96px 20px;
}

.contact-form-section__inner {
	max-width: 720px;
	margin: 0 auto;
}

.contact-form-section .section__label,
.contact-form-section h1,
.contact-form-section__lead {
	text-align: center;
}

.contact-form-section .section__label {
	color: #0b4f8a;
}

.contact-form-section h1 {
	margin: 8px 0 0;
	color: #073f75;
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.4;
}

.contact-form-section__lead {
	margin: 16px auto 34px;
	color: #4c5b6b;
	line-height: 1.9;
}

.contact-form {
	padding: 38px;
	background: #fff;
	border: 1px solid #e5edf5;
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(11, 63, 117, 0.12);
}

.contact-form__field {
	margin-bottom: 22px;
}

.contact-form__field label {
	display: block;
	margin-bottom: 9px;
	color: #10233b;
	font-size: 14px;
	font-weight: 700;
}

.contact-form__field label span,
.contact-form__field label small {
	margin-left: 8px;
	font-size: 12px;
	font-weight: 700;
}

.contact-form__field label span {
	color: #f28b45;
}

.contact-form__field label small {
	color: #6d7b8a;
}

.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	padding: 13px 14px;
	box-sizing: border-box;
	color: #10233b;
	background: #fbfdff;
	border: 1px solid #cfd9e6;
	border-radius: 8px;
	font: inherit;
	line-height: 1.6;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field textarea {
	resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	border-color: #073f75;
	box-shadow: 0 0 0 3px rgba(7, 63, 117, 0.12);
	outline: none;
}

.contact-form__submit {
	margin-top: 30px;
	text-align: center;
}

.contact-form__submit .btn {
	border: none;
	cursor: pointer;
}

.contact-back-home-wrap {
	margin-top: 32px;
	text-align: center;
}

.contact-back-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 14px 28px;
	color: #fff;
	background: #0b4f8a;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(11, 79, 138, 0.18);
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-back-home:hover {
	background: #083b68;
	box-shadow: 0 12px 24px rgba(11, 79, 138, 0.24);
	transform: translateY(-2px);
}

.contact-form-message {
	margin: 0 0 22px;
	padding: 14px 18px;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
}

.contact-form-message--success {
	color: #0c5d35;
	background: #e9f8ef;
	border: 1px solid #bfe8cf;
}

.contact-form-message--error {
	color: #8a2b1a;
	background: #fff0ec;
	border: 1px solid #f4c7bc;
}

.contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 600px) {
	.contact-form-section {
		padding: 72px 16px;
	}

	.contact-form {
		padding: 28px 20px;
	}

	.contact-back-home {
		width: 100%;
		max-width: 280px;
		box-sizing: border-box;
	}
}

/* ==============================
   Back to home button
============================== */
.moriyama-back-home-wrap {
	margin: 40px auto 0;
	text-align: center;
}

.moriyama-back-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	padding: 15px 30px;
	color: #fff;
	background: linear-gradient(135deg, #0b4f8a, #083b68);
	border: none;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(11, 79, 138, 0.22);
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.moriyama-back-home-btn::before {
	content: "←";
	margin-right: 8px;
	font-weight: 700;
}

.moriyama-back-home-btn:hover {
	color: #fff;
	background: linear-gradient(135deg, #0b4f8a, #083b68);
	box-shadow: 0 14px 28px rgba(11, 79, 138, 0.28);
	opacity: 0.95;
	transform: translateY(-2px);
}

.mobile-fixed-cta {
	display: none;
}

@media (max-width: 768px) {
	.moriyama-back-home-btn {
		width: 100%;
		max-width: 300px;
		padding: 14px 24px;
		box-sizing: border-box;
	}

	.mobile-fixed-cta {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom));
		z-index: 9999;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.mobile-fixed-cta__btn {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 52px;
		color: #fff;
		border-radius: 999px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4;
		text-decoration: none;
	}

	.mobile-fixed-cta__btn--tel {
		background: #0b4f8a;
	}

	.mobile-fixed-cta__btn--estimate {
		background: #f28c28;
	}

	body {
		padding-bottom: calc(84px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 768px) {
	.hero-info__item:not(.hero-info__item--cta) {
		display: grid;
		grid-template-columns: 40px 1fr;
		column-gap: 14px;
		align-items: center;
		text-align: left;
	}

	.hero-info__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		min-width: 32px;
		font-size: 18px;
		line-height: 1;
		border-radius: 50%;
	}

	.hero-info__text {
		min-width: 0;
	}

	.hero-info__text p {
		margin: 0 0 6px;
		font-size: 13px;
		line-height: 1.5;
		letter-spacing: 0.04em;
	}

	.hero-info__tel,
	.hero-info__text strong {
		display: block;
		margin: 0;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.4;
	}

	.hero-info__text small {
		display: block;
		margin: 6px 0 0;
		font-size: 12px;
		line-height: 1.6;
	}
}

/* ==============================
   PC/mobile fade animation final
============================== */

.scroll-reveal,
.scroll-reveal-card {
	opacity: 0;
	transform: translateY(36px);
	filter: blur(4px);
	transition:
		opacity 0.9s ease,
		transform 0.9s ease,
		filter 0.9s ease;
}

.scroll-reveal.is-visible,
.scroll-reveal-card.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.hero__content .hero-fade-item {
	opacity: 0;
	filter: blur(7px);
	transform: none !important;
	animation: none !important;
	transition:
		opacity 1.6s ease,
		filter 1.6s ease;
	will-change: opacity, filter;
}

body.is-hero-ready:not(.is-hero-static) .hero__content .hero-fade-item--1 {
	animation: none !important;
}

body.is-hero-ready:not(.is-hero-static) .hero__content .hero-fade-item--2 {
	animation: none !important;
}

body.is-hero-ready:not(.is-hero-static) .hero__content .hero-fade-item--3 {
	animation: none !important;
}

body.is-hero-ready:not(.is-hero-static) .hero__content .hero-fade-item--4 {
	animation: none !important;
}

body.is-hero-ready:not(.is-hero-static) .hero__content .hero-fade-item.is-visible {
	opacity: 1;
	filter: blur(0);
}

body.is-hero-static .hero__content .hero-fade-item {
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
	animation: none !important;
	transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.hero__content .hero-fade-item {
		transition:
			opacity 1.6s ease,
			filter 1.6s ease !important;
	}

	body.is-hero-static .hero__content .hero-fade-item {
		transition: none !important;
	}
}

/* ==============================
   Strengths section final design
============================== */

.strengths-section {
	padding: 90px 20px !important;
	background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%) !important;
}

.strengths-section .section__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.strengths-section .section__label,
.strengths-section .section__label--center {
	margin: 0 0 10px;
	color: #0b4f8a;
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-align: center !important;
}

.strengths-section .section-title,
.strengths-section .section-title--center,
.strengths-section h2 {
	margin: 0;
	color: #073f75;
	font-size: 34px;
	line-height: 1.5;
	letter-spacing: 0.12em;
	text-align: center !important;
}

.strengths-section .strengths-list {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 0 !important;
	max-width: 1100px;
	margin: 44px auto 0 !important;
	align-items: center;
}

.strengths-section .strength-item {
	display: flex !important;
	align-items: center;
	gap: 24px;
	min-height: 140px;
	padding: 10px 30px;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.strengths-section .strength-item:not(:last-child) {
	border-right: 1px solid #cfd9e6;
}

.strengths-section .strength-item__icon {
	flex: 0 0 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #f7f4ee;
}

.strengths-section .strength-item__icon svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: #1c56a3;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.strengths-section .strength-item__body {
	flex: 1;
}

.strengths-section .strength-item__body h3 {
	margin: 0 0 10px;
	color: #0d3d78;
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 700;
	line-height: 1.4;
}

.strengths-section .strength-item__body p {
	margin: 0;
	color: #4c5b6b;
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 14px;
	line-height: 1.9;
}

@media (max-width: 900px) {
	.strengths-section .strengths-list {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	.strengths-section .strength-item {
		min-height: auto;
		padding: 0;
	}

	.strengths-section .strength-item:not(:last-child) {
		padding-bottom: 24px;
		border-right: none;
		border-bottom: 1px solid #cfd9e6;
	}

	.strengths-section .strength-item:not(:first-child) {
		padding-top: 24px;
	}
}

@media (max-width: 600px) {
	.strengths-section {
		padding: 70px 20px !important;
	}

	.strengths-section .strength-item {
		align-items: flex-start;
		gap: 18px;
	}

	.strengths-section .strength-item__icon {
		flex: 0 0 68px;
		width: 68px;
		height: 68px;
	}

	.strengths-section .strength-item__icon svg {
		width: 36px;
		height: 36px;
	}

	.strengths-section .strength-item__body h3 {
		font-size: 22px;
	}

	.strengths-section .strength-item__body p {
		font-size: 13px;
		line-height: 1.8;
	}
}

/* ==============================
   Strength section final override
============================== */

.strength-section {
	padding: 90px 20px !important;
	background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%) !important;
}

.strength-section .section__inner {
	max-width: 1180px !important;
	margin: 0 auto !important;
}

.strength-section .section__label {
	margin: 0 0 10px !important;
	color: #0b4f8a !important;
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	text-align: center !important;
}

.strength-section h2 {
	margin: 0 !important;
	color: #073f75 !important;
	font-size: 34px !important;
	line-height: 1.5 !important;
	letter-spacing: 0.12em !important;
	text-align: center !important;
}

.strength-section .strength-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 0 !important;
	max-width: 1100px !important;
	margin: 44px auto 0 !important;
	align-items: center !important;
}

.strength-section .strength-card {
	display: flex !important;
	align-items: center !important;
	gap: 24px !important;
	min-height: 140px !important;
	padding: 10px 30px !important;
	overflow: visible !important;
	background: transparent !important;
	border-top: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.strength-section .strength-card:not(:last-child) {
	border-right: 1px solid #cfd9e6 !important;
}

.strength-card__icon {
	flex: 0 0 82px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 82px !important;
	height: 82px !important;
	border-radius: 50% !important;
	background: #f7f4ee !important;
}

.strength-card__icon svg {
	width: 42px !important;
	height: 42px !important;
	fill: none !important;
	stroke: #1c56a3 !important;
	stroke-width: 2.4 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.strength-card__body {
	flex: 1 !important;
}

.strength-section .strength-card h3 {
	margin: 0 0 10px !important;
	color: #0d3d78 !important;
	font-size: clamp(22px, 2vw, 30px) !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
}

.strength-section .strength-card p {
	margin: 0 !important;
	color: #4c5b6b !important;
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif !important;
	font-size: 14px !important;
	line-height: 1.9 !important;
}

@media (max-width: 900px) {
	.strength-section .strength-grid {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	.strength-section .strength-card {
		min-height: auto !important;
		padding: 0 !important;
	}

	.strength-section .strength-card:not(:last-child) {
		padding-bottom: 24px !important;
		border-right: none !important;
		border-bottom: 1px solid #cfd9e6 !important;
	}

	.strength-section .strength-card:not(:first-child) {
		padding-top: 24px !important;
	}
}

@media (max-width: 600px) {
	.strength-section {
		padding: 70px 20px !important;
	}

	.strength-section .strength-card {
		align-items: flex-start !important;
		gap: 18px !important;
	}

	.strength-card__icon {
		flex: 0 0 68px !important;
		width: 68px !important;
		height: 68px !important;
	}

	.strength-card__icon svg {
		width: 36px !important;
		height: 36px !important;
	}

	.strength-section .strength-card h3 {
		font-size: 22px !important;
	}

	.strength-section .strength-card p {
		font-size: 13px !important;
		line-height: 1.8 !important;
	}
}

/* moriyama-mobile-contact-align-v1 */
@media (max-width: 768px) {
	.hero-info .contact-cta__info-item {
		display: grid !important;
		grid-template-columns: 36px 1fr !important;
		column-gap: 14px !important;
		align-items: center !important;
		text-align: left !important;
		padding: 18px 0 !important;
	}

	.hero-info .contact-cta__info-icon {
		width: 32px !important;
		height: 32px !important;
		min-width: 32px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 18px !important;
		line-height: 1 !important;
		border-radius: 50% !important;
	}

	.hero-info .contact-cta__info-body {
		min-width: 0 !important;
	}

	.hero-info .contact-cta__info-label {
		margin: 0 0 6px !important;
		font-size: 13px !important;
		line-height: 1.5 !important;
		letter-spacing: 0.04em !important;
		text-align: left !important;
	}

	.hero-info .contact-cta__info-main {
		display: block !important;
		margin: 0 !important;
		font-size: 20px !important;
		line-height: 1.4 !important;
		font-weight: 700 !important;
		text-align: left !important;
	}

	.hero-info .contact-cta__info-note {
		display: block !important;
		margin: 6px 0 0 !important;
		font-size: 12px !important;
		line-height: 1.6 !important;
		text-align: left !important;
	}
}
