:root {
	--navy: #001d49;
	--gold: #d99a2b;
	--pale: #f7f9fc;
}

/* ===== 基本設定 ===== */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--navy);
	font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: .025em;
	background: #fff;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
	overflow-wrap: break-word;
}

h1,
h2,
h3 {
	letter-spacing: .035em;
}

/* ===== 固定ヘッダー・ナビゲーション ===== */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	height: 72px;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(0, 29, 73, .1);
	box-shadow: 0 3px 15px rgba(0, 29, 73, .06);
	backdrop-filter: blur(8px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1100px, calc(100% - 100px));
	height: 100%;
	margin: 0 auto;
}

.site-logo {
	color: var(--navy);
	text-decoration: none;
}

.site-logo__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-logo__text strong {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em;
}

.site-logo__text small {
	color: #7d8ba0;
	font-family: Arial, sans-serif;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: .16em;
}

.global-nav {
	display: flex;
	align-items: center;
	height: 100%;
}

.global-nav a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .045em;
	text-decoration: none;
}

.global-nav a::after {
	position: absolute;
	right: 20px;
	bottom: 14px;
	left: 20px;
	height: 2px;
	content: "";
	transform: scaleX(0);
	background: var(--gold);
	transition: transform .25s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
	transform: scaleX(1);
}

.menu-button {
	display: none;
}

#top,
#results,
#reasons,
#services,
#pricing,
#process,
#contact {
	scroll-margin-top: 72px;
}

img {
	display: block;
	max-width: 100%;
}

/* ===== ヒーロー ===== */
.hero {
	position: relative;
	height: 875px;
	overflow: hidden;
	background: #fff;
}

.hero__inner {
	position: relative;
	width: min(1100px, calc(100% - 100px));
	height: 100%;
	margin: 0 auto;
}

.hero__copy {
	position: relative;
	z-index: 2;
	padding-top: 154px;
}

.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 68px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: .035em;
}

.hero .hero__eyebrow > img {
	flex: 0 0 21px;
	width: 21px;
	min-width: 21px;
	max-width: 21px;
	height: 17px;
	object-fit: contain;
}

.hero h1 {
	margin: 0;
	font-size: clamp(48px, 4.05vw, 66px);
	line-height: 1.72;
	font-weight: 600;
	letter-spacing: .025em;
}

em {
	color: var(--gold);
	font-style: normal;
}

.hero__lead {
	margin: 52px 0 62px;
	font-size: 18px;
	line-height: 2;
	letter-spacing: .04em;
}

.button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 333px;
	padding: 22px 36px 23px 54px;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	background: var(--navy);
	box-shadow: 0 8px 18px rgba(0, 29, 73, .13);
	transition: transform .25s, background .25s;
}

.button span {
	color: var(--gold);
	font-size: 31px;
	line-height: 1;
}

.button:hover {
	transform: translateY(-3px);
	background: #073264;
}

.hero__visual {
	position: absolute;
	top: 0;
	right: -38px;
	width: min(1000px, 52vw);
	height: 100%;
	background: url("img/hero_back.png") center right / contain no-repeat;
}

.hero__line {
	position: absolute;
	bottom: 67px;
	left: 0;
	width: 153px;
	height: 1px;
	background: var(--gold);
}

/* ===== 代表挨拶 ===== */
.message {
	padding: 72px 0 62px;
	background: linear-gradient(115deg, #f8faff, #fff 61%, #f8faff);
}

.message__inner {
	display: grid;
	grid-template-columns: 510px 1fr;
	gap: 82px;
	width: min(1100px, calc(100% - 120px));
	margin: 0 auto;
}

.message__profile {
	position: relative;
	padding-top: 56px;
}

.section-en {
	position: absolute;
	top: -29px;
	left: -24px;
	margin: 0;
	color: #edf1f8;
	font-size: 58px;
	letter-spacing: .17em;
}

.message__profile h2 {
	position: relative;
	margin: 0 0 56px 16px;
	font-size: 38px;
	font-weight: 500;
}

.message__profile h2::after {
	position: absolute;
	bottom: -18px;
	left: 0;
	width: 34px;
	height: 1px;
	content: "";
	background: var(--gold);
}

.profile-photo {
	width: 452px;
}

.profile-photo img {
	width: 452px;
	height: 429px;
	object-fit: cover;
}

.profile-name {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 452px;
	min-height: 82px;
	margin: 13px 0 0;
	padding: 0 29px;
	color: #fff;
	background: var(--navy);
}

.profile-name small {
	margin-right: 24px;
	color: var(--gold);
	font-size: 13px;
}

.profile-name strong {
	font-size: 26px;
	font-weight: 500;
}

.message__body {
	padding-top: 10px;
	font-size: 14px;
	line-height: 2.05;
	letter-spacing: .025em;
}

.bio {
	margin: 0 0 49px;
	padding-left: 27px;
	border-left: 1px solid #e5b356;
}

.bio div {
	display: grid;
	grid-template-columns: 103px 1fr;
}

.bio dt {
	color: var(--gold);
}

.bio dd {
	margin: 0 0 14px;
}

.message__body h3 {
	margin: 0 0 20px;
	font-size: 30px;
	line-height: 1.55;
	font-weight: 500;
}

.message__text p {
	margin: 0 0 19px;
}

.signature {
	margin: 40px 0 0;
	text-align: right;
}

.signature span {
	font-size: 13px;
}

.signature strong {
	margin-left: 14px;
	font-size: 22px;
	font-weight: 500;
}

/* ===== 経理の課題 ===== */
.issues {
	padding: 54px 0 64px;
	background: #fff;
}

.issues__inner {
	width: min(1100px, calc(100% - 120px));
	margin: 0 auto;
}

.issues h2 {
	margin: 0 0 27px;
	font-size: 32px;
	font-weight: 500;
}

.issues__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px 38px;
}

.issue-card {
	display: grid;
	grid-template-columns: 112px 1fr;
	align-items: center;
	min-height: 160px;
	padding: 21px 25px;
	background: #fff;
	box-shadow: 0 5px 19px rgba(16, 39, 75, .08);
}

.issue-card img {
	width: 91px;
}

.issue-card h3 {
	position: relative;
	margin: 0 0 20px;
	font-size: 19px;
	line-height: 1.55;
	font-weight: 600;
}

.issue-card h3::after {
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 31px;
	height: 2px;
	content: "";
	background: var(--gold);
}

.issue-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.9;
	letter-spacing: .02em;
}

/* ===== 共通セクション・見出し装飾 ===== */
.content-inner {
	position: relative;
	width: min(1100px, calc(100% - 104px));
	margin: 0 auto;
}

.decorated-section {
	position: relative;
	overflow: hidden;
	border-top: 1px solid #e9edf3;
}

.decorated-section::after {
	position: absolute;
	top: 42px;
	left: max(52px, calc((100% - 1100px) / 2));
	color: rgba(0, 29, 73, .035);
	font-family: Georgia, serif;
	font-size: 72px;
	line-height: 1;
	letter-spacing: .12em;
	content: attr(data-section-en);
	pointer-events: none;
}

.decorated-section > .content-inner {
	z-index: 1;
}

.bar-title {
	position: relative;
	margin: 0;
	padding-left: 34px;
	font-size: 38px;
	line-height: 1.45;
	font-weight: 600;
	letter-spacing: .035em;
}

.bar-title::before {
	position: absolute;
	top: 4px;
	bottom: 1px;
	left: 0;
	width: 4px;
	content: "";
	background: var(--gold);
}

/* ===== 実績 ===== */
.trust {
	padding: 93px 0 115px;
	border-bottom: 1px solid #e5e8ed;
	background: #fff;
}

.trust__content {
	display: grid;
	grid-template-columns: 620px 1fr;
	align-items: center;
	gap: 60px;
	margin-top: 102px;
}

.trust__number {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 408px;
	color: #fff;
	background: radial-gradient(circle at 53% 45%, #173a6b, #001c48 72%);
	border-radius: 10px;
	box-shadow: 0 9px 25px rgba(0, 29, 73, .13);
	overflow: hidden;
}

.trust__number::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 315px;
	height: 315px;
	content: "";
	transform: translate(-50%, -50%);
	border: 1px solid rgba(217, 154, 43, .16);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(255, 255, 255, .018), 0 0 0 90px rgba(255, 255, 255, .012);
}

.trust__number::after {
	position: absolute;
	top: 24px;
	right: 24px;
	bottom: 24px;
	left: 24px;
	content: "";
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 5px;
}

.trust__number p {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	margin: -20px 0 5px;
	line-height: 1;
}

.trust__number strong {
	color: var(--gold);
	font-size: 158px;
	font-weight: 400;
	letter-spacing: -.07em;
}

.trust__number span {
	color: var(--gold);
	font-size: 73px;
}

.trust__number b {
	font-size: 64px;
	font-weight: 500;
}

.trust__number small {
	position: relative;
	z-index: 1;
	font-size: 21px;
	font-weight: 600;
}

.trust__text h3 {
	margin: 0 0 37px;
	font-size: 32px;
	line-height: 1.55;
	font-weight: 600;
}

.trust__text p {
	margin: 0 0 34px;
	font-size: 14px;
	line-height: 2;
}

/* ===== 選ばれる理由 ===== */
.reasons {
	padding: 62px 0 63px;
	background: #f7f9fc;
}

.section-lead {
	margin: 26px 0 53px;
	font-size: 14px;
	line-height: 1.9;
}

.reason-grid,
.support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 18px;
}

.reason-card {
	display: grid;
	grid-template-columns: 105px 1fr;
	min-height: 289px;
	padding: 40px 33px 28px;
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 8px;
	box-shadow: 0 7px 20px rgba(10, 38, 75, .07);
}

.reason-card__side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 39px;
}

.reason-card__side strong {
	color: var(--gold);
	font-size: 43px;
	font-weight: 400;
}

.reason-card__side img {
	width: 55px;
}

.reason-card h3,
.support-card h3 {
	margin: 7px 0 30px;
	font-size: 21px;
	line-height: 1.55;
	font-weight: 600;
}

.reason-card p,
.support-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.95;
	letter-spacing: .02em;
}

/* ===== サポート業務 ===== */
.support {
	padding: 62px 0 58px;
	background: #fff;
}

.support-grid {
	margin-top: 39px;
	gap: 20px;
}

.support-card {
	display: grid;
	grid-template-columns: 159px 1fr;
	align-items: center;
	min-height: 221px;
	padding: 28px 28px;
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 8px;
	box-shadow: 0 7px 20px rgba(10, 38, 75, .07);
}

.support-card img {
	width: 121px;
}

.support-card h3 {
	position: relative;
	margin: 0 0 28px;
	font-size: 22px;
}

.support-card h3::after {
	position: absolute;
	bottom: -13px;
	left: 0;
	width: 43px;
	height: 2px;
	content: "";
	background: var(--gold);
}

/* ===== 料金プラン ===== */
.plans {
	padding: 71px 0 34px;
	background: #f7f9fc;
}

.plan-table {
	margin-top: 40px;
	overflow: hidden;
	border: 1px solid #e9edf2;
	border-radius: 10px;
	box-shadow: 0 7px 22px rgba(10, 38, 75, .08);
}

.plan-table__head,
.plan-row {
	display: grid;
	grid-template-columns: 30% 49% 21%;
}

.plan-table__head {
	padding: 18px 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .04em;
	text-align: center;
	background: linear-gradient(100deg, #09244c, #001630);
}

.plan-row {
	min-height: 149px;
	background: #fff;
	border-bottom: 1px solid #e5e8ed;
}

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

.plan-row > * {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 25px 42px;
}

.plan-name {
	gap: 39px;
}

.plan-name img {
	width: 69px;
}

.plan-name strong {
	font-size: 22px;
	letter-spacing: .035em;
	white-space: nowrap;
}

.plan-row > p {
	font-size: 14px;
	line-height: 1.8;
	border-left: 1px solid #e9edf2;
}

.plan-price {
	flex-direction: column;
	justify-content: center;
	color: var(--gold);
	font-size: 33px;
	white-space: nowrap;
	border-left: 1px solid #e9edf2;
}

.plan-price strong {
	font-size: 31px;
	font-weight: 500;
}

.plan-price small {
	margin-top: 5px;
	color: var(--navy);
	font-size: 16px;
}

.plan-note {
	margin: 28px 0 0;
	font-size: 13px;
	line-height: 1.8;
}

.plan-note span {
	color: var(--gold);
	font-size: 21px;
}

/* ===== ご利用の流れ・お問い合わせ ===== */
.flow {
	padding: 57px 0 41px;
	background: #fff;
}

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

.flow-card {
	position: relative;
	min-height: 391px;
	padding: 91px 12px 25px;
	text-align: center;
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(10, 38, 75, .08);
}

.flow-card:not(:last-child)::after {
	position: absolute;
	top: 129px;
	right: -17px;
	z-index: 3;
	color: var(--gold);
	font-size: 42px;
	content: "›";
}

.step {
	position: absolute;
	top: -81px;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 127px;
	height: 127px;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid #e4e8ed;
	border-radius: 50%;
	box-shadow: 0 5px 14px rgba(10, 38, 75, .07);
}

.step small {
	color: var(--gold);
	font-size: 13px;
}

.step strong {
	font-size: 40px;
	font-weight: 500;
}

.flow-card > img {
	width: 87px;
	height: 72px;
	margin: 0 auto 25px;
	object-fit: contain;
}

.flow-card h3 {
	margin: 0 0 21px;
	font-size: 19px;
	line-height: 1.55;
}

.flow-card p {
	margin: 0;
	font-size: 12px;
	line-height: 1.95;
	letter-spacing: .015em;
}

.contact-box {
	padding: 24px 58px 25px;
	color: #fff;
	text-align: center;
	background: radial-gradient(circle at 50% 32%, #173a68, #001630 70%);
	border-radius: 12px;
}

.contact-box > h2 {
	margin: 0 0 10px;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: .04em;
}

.contact-box > p {
	margin: 0;
	font-size: 12px;
	line-height: 1.8;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 22px 0 19px;
}

.contact-grid > * {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 106px;
	padding: 18px 28px;
	color: #fff;
	text-align: left;
	text-decoration: none;
	background: rgba(255, 255, 255, .045);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 10px;
}

.contact-grid img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.contact-grid span {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-grid small {
	font-size: 13px;
}

.contact-grid strong {
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	white-space: nowrap;
}

.contact-free {
	color: var(--gold);
	font-size: 19px !important;
	font-weight: 600;
}

/* ===== フッター ===== */
.footer {
	padding: 34px 0 20px;
	color: #fff;
	background: #001630;
}

.footer__inner {
	display: grid;
	grid-template-columns: 1.1fr 1.5fr 1fr;
	align-items: start;
	gap: 42px;
	width: min(1100px, calc(100% - 104px));
	margin: 0 auto;
}

.footer__inner > * {
	padding-left: 30px;
	border-left: 1px solid rgba(255, 255, 255, .14);
}

.footer__inner > :first-child {
	padding-left: 0;
	border-left: 0;
}

.footer h2 {
	margin: 11px 0 6px;
	font-size: 16px;
	font-weight: 600;
}

.footer__label {
	display: block;
	color: var(--gold);
	font-family: Arial, sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .14em;
}

.footer__brand small {
	color: #93a4ba;
	font-family: Arial, sans-serif;
	font-size: 9px;
	letter-spacing: .12em;
}

.footer__business p,
.footer address span {
	display: block;
	margin: 0;
	margin-top: 11px;
	font-size: 12px;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: .02em;
}

.footer address {
	font-style: normal;
}

.footer__copyright {
	width: min(1100px, calc(100% - 104px));
	margin: 27px auto 0;
	padding-top: 16px;
	color: #8092aa;
	font-family: Arial, sans-serif;
	font-size: 9px;
	letter-spacing: .08em;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

/* ===== 固定ボタン（問い合わせ・ページ上部） ===== */
.fixed-contact {
	display: none;
}

.page-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	left: auto;
	z-index: 110;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 17px;
	text-decoration: none;
	visibility: hidden;
	opacity: 0;
	transform: translateY(8px);
	background: var(--navy);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 29, 73, .18);
	transition: opacity .25s, transform .25s, visibility .25s;
}

.page-top.is-visible {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.page-top:hover {
	background: #123965;
}

/* ===== スクロール表示アニメーション ===== */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ===== スマートフォン・タブレット共通（980px以下） ===== */
@media (max-width: 980px) {
	.decorated-section::after {
		left: 22px;
		font-size: 54px;
	}

	body {
		padding-bottom: 58px;
	}

	.fixed-contact {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 120;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		height: 58px;
		padding: 5px max(12px, env(safe-area-inset-right)) 5px max(12px, env(safe-area-inset-left));
		background: rgba(255, 255, 255, .97);
		border-top: 1px solid #dce3ec;
		box-shadow: 0 -4px 16px rgba(0, 29, 73, .1);
	}

	.fixed-contact a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		color: #fff;
		font-size: 13px;
		font-weight: 600;
		text-decoration: none;
		background: var(--navy);
	}

	.fixed-contact a:first-child {
		border-radius: 4px 0 0 4px;
	}

	.fixed-contact a:last-child {
		background: #123965;
		border-left: 1px solid rgba(255, 255, 255, .22);
		border-radius: 0 4px 4px 0;
	}

	.fixed-contact img {
		width: 22px;
		height: 22px;
		object-fit: contain;
	}

	.page-top {
		right: 12px;
		bottom: 70px;
		left: auto;
		width: 32px;
		height: 32px;
		font-size: 15px;
	}

	.site-header__inner {
		width: calc(100% - 44px);
	}

	.menu-button {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 46px;
		height: 46px;
		padding: 0;
		background: transparent;
		border: 0;
		cursor: pointer;
	}

	.menu-button span {
		width: 27px;
		height: 2px;
		background: var(--navy);
		transition: transform .25s, opacity .25s;
	}

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

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

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

	.global-nav {
		position: fixed;
		top: 72px;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: calc(100dvh - 72px);
		padding: 20px 22px 72px;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-10px);
		background: #fff;
		overflow-y: auto;
		transition: opacity .25s, transform .25s, visibility .25s;
	}

	.global-nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.global-nav a {
		justify-content: center;
		width: 100%;
		height: 64px;
		font-size: 16px;
		letter-spacing: .06em;
		border-bottom: 1px solid #e9edf2;
	}

	.global-nav a::after {
		display: none;
	}

	.global-nav a[href="#contact"] {
		height: 54px;
		margin-top: 14px;
		color: #fff;
		background: var(--navy);
		border: 0;
		border-radius: 4px;
	}

	body.menu-open {
		overflow: hidden;
	}

	.hero {
		height: auto;
		min-height: 760px;
	}

	.hero__inner {
		width: calc(100% - 44px);
	}

	.hero__copy {
		padding-top: 104px;
	}

	.hero__eyebrow {
		margin-bottom: 38px;
		font-size: 14px;
	}

	.hero h1 {
		font-size: clamp(34px, 7vw, 52px);
		line-height: 1.62;
	}

	.hero__visual {
		top: 260px;
		right: -140px;
		width: 630px;
		opacity: .78;
	}

	.message__inner {
		grid-template-columns: 1fr;
		gap: 60px;
		width: min(650px, calc(100% - 44px));
	}

	.message__profile {
		width: min(478px, 100%);
	}

	.issues__inner {
		width: calc(100% - 44px);
	}

	.issues__grid {
		grid-template-columns: 1fr;
	}

	.content-inner {
		width: calc(100% - 44px);
	}

	.trust__content {
		grid-template-columns: 1fr;
		margin-top: 58px;
	}

	.trust__number {
		width: min(620px, 100%);
	}

	.reason-grid,
	.support-grid {
		grid-template-columns: 1fr;
	}

	.plan-table__head {
		display: none;
	}

	.plan-row {
		grid-template-columns: 1fr;
	}

	.plan-row > * {
		padding: 18px 28px;
	}

	.plan-row > p,
	.plan-price {
		border-top: 1px solid #e9edf2;
		border-left: 0;
	}

	.flow-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 105px 25px;
	}

	.flow-card:not(:last-child)::after {
		display: none;
	}

	.contact-grid,
	.footer__inner {
		grid-template-columns: 1fr;
		gap: 18px;
		width: calc(100% - 44px);
	}

	.footer__inner > * {
		padding-left: 0;
		border-left: 0;
	}

	.footer__business {
		padding-top: 17px;
		border-top: 1px solid rgba(255, 255, 255, .12);
	}

	.footer__copyright {
		width: calc(100% - 44px);
	}
}

/* ===== スマートフォン（560px以下） ===== */
@media (max-width: 560px) {
	.decorated-section::after {
		top: 31px;
		font-size: 36px;
		letter-spacing: .08em;
	}

	.site-logo__text strong {
		font-size: 13px;
	}

	.site-logo__text small {
		font-size: 7px;
	}

	.hero {
		min-height: 500px;
	}

	.hero__visual {
		top: 65px;
		right: -20px;
		width: 415px;
		height: 365px;
		opacity: .78;
	}

	.hero__line {
		bottom: 15px;
		width: 112px;
	}

	.hero__copy {
		padding-top: 96px;
	}

	.hero__eyebrow {
		align-items: flex-start;
		gap: 8px;
		font-size: 11px;
		line-height: 1.5;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.hero .hero__eyebrow > img {
		flex-basis: 14px;
		width: 14px;
		min-width: 14px;
		max-width: 14px;
		height: 11px;
		margin-top: 1px;
	}

	.hero h1 {
		font-size: 27px;
		line-height: 1.65;
	}

	.hero__lead {
		margin: 35px 0 43px;
		font-size: 14px;
		line-height: 1.9;
	}

	.button {
		width: 235px;
		padding: 14px 20px 15px 28px;
		font-size: 15px;
	}

	.button span {
		font-size: 25px;
	}

	.message {
		padding-top: 30px;
	}

	.message__profile {
		padding-top: 30px;
	}

	.message__inner {
		gap: 36px;
	}

	.section-en {
		font-size: 30px;
	}

	.message__profile h2 {
		margin-bottom: 40px;
		font-size: 26px;
	}

	.profile-photo,
	.profile-name {
		width: min(300px, 100%);
		margin-right: auto;
		margin-left: auto;
	}

	.profile-photo img {
		width: 100%;
		height: auto;
		aspect-ratio: 1.05;
	}

	.profile-name {
		min-height: 68px;
		margin-top: 10px;
		padding: 12px 14px;
		flex-wrap: wrap;
	}

	.profile-name small {
		margin-right: 16px;
		font-size: 11px;
	}

	.profile-name strong {
		font-size: 20px;
	}

	.message__body {
		font-size: 14px;
		line-height: 1.9;
	}

	.bio {
		padding-left: 17px;
	}

	.bio div {
		grid-template-columns: 70px 1fr;
	}

	.message__body h3,
	.issues h2 {
		font-size: 24px;
		line-height: 1.5;
	}

	.issue-card {
		grid-template-columns: 74px 1fr;
		padding: 18px 14px;
	}

	.issue-card img {
		width: 62px;
	}

	.issue-card h3 {
		font-size: 17px;
	}

	.issue-card p,
	.reason-card p,
	.support-card p,
	.trust__text p {
		line-height: 1.8;
	}

	.bar-title {
		padding-left: 22px;
		font-size: 24px;
		line-height: 1.45;
	}

	.issues,
	.reasons,
	.flow {
		padding-top: 48px;
	}

	.issues,
	.reasons,
	.support {
		padding-bottom: 48px;
	}

	.section-lead {
		margin: 18px 0 30px;
	}

	.reason-grid,
	.support-grid {
		gap: 14px;
	}

	.trust {
		padding: 50px 0 58px;
	}

	.trust__number {
		height: 260px;
	}

	.trust__number strong {
		font-size: 92px;
	}

	.trust__number span {
		font-size: 44px;
	}

	.trust__number b {
		font-size: 39px;
	}

	.trust__number small {
		font-size: 14px;
	}

	.trust__text h3 {
		font-size: 25px;
	}

	.reason-card {
		grid-template-columns: 70px 1fr;
		min-height: 0;
		padding: 20px 14px;
	}

	.reason-card__side {
		gap: 27px;
	}

	.reason-card__side strong {
		font-size: 34px;
	}

	.reason-card__side img {
		width: 44px;
	}

	.reason-card h3,
	.support-card h3 {
		font-size: 17px;
		line-height: 1.6;
	}

	.support-card {
		grid-template-columns: 90px 1fr;
		padding: 22px 16px;
	}

	.support-card img {
		width: 76px;
	}

	.plans {
		padding-top: 48px;
	}

	.plan-table {
		display: grid;
		gap: 14px;
		overflow: visible;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.plan-row {
		display: grid;
		grid-template-columns: 1fr auto;
		min-height: 0;
		overflow: hidden;
		background: #fff;
		border: 1px solid #e7ebf1;
		border-radius: 9px;
		box-shadow: 0 5px 16px rgba(10, 38, 75, .07);
	}

	.plan-row:last-child {
		border-bottom: 1px solid #e7ebf1;
	}

	.plan-row > * {
		padding: 16px 18px;
	}

	.plan-name {
		gap: 12px;
		min-width: 0;
	}

	.plan-name img {
		width: 48px;
	}

	.plan-name strong {
		font-size: 16px;
		white-space: normal;
	}

	.plan-price {
		align-self: stretch;
		padding-left: 10px;
		color: var(--gold);
		font-size: 20px;
		border-top: 0;
		border-left: 1px solid #e9edf2;
	}

	.plan-price strong {
		font-size: 20px;
	}

	.plan-price small {
		font-size: 11px;
	}

	.plan-row > p {
		grid-column: 1 / -1;
		grid-row: 2;
		padding-top: 13px;
		padding-bottom: 14px;
		font-size: 12px;
		line-height: 1.8;
		background: #fbfcfe;
		border-top: 1px solid #e9edf2;
	}

	.flow-grid {
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
		margin: 35px 0 32px;
	}

	.flow-card {
		min-height: 164px;
		padding: 20px 16px 18px 82px;
		text-align: left;
	}

	.flow-card::before {
		position: absolute;
		top: 0;
		bottom: -15px;
		left: 40px;
		width: 1px;
		content: "";
		background: #d9e0eb;
	}

	.flow-card:last-child::before {
		bottom: 50%;
	}

	.step {
		top: 18px;
		left: 16px;
		z-index: 2;
		width: 50px;
		height: 50px;
		transform: none;
	}

	.step small {
		font-size: 8px;
		line-height: 1;
	}

	.step strong {
		font-size: 21px;
		line-height: 1.15;
	}

	.flow-card > img {
		position: absolute;
		top: 84px;
		left: 23px;
		z-index: 2;
		width: 36px;
		height: 36px;
		margin: 0;
		background: #fff;
	}

	.flow-card h3 {
		margin: 0 0 10px;
		font-size: 17px;
	}

	.flow-card p {
		font-size: 12px;
		line-height: 1.75;
	}

	.contact-box {
		padding: 24px 14px;
	}

	.contact-box > h2 {
		font-size: 22px;
		line-height: 1.45;
	}

	.contact-grid {
		width: min(280px, 100%);
		gap: 8px;
		margin: 20px auto;
	}

	.contact-free {
		font-size: 14px !important;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.contact-grid > * {
		justify-content: flex-start;
		width: 100%;
		min-height: 78px;
		gap: 12px;
		padding: 11px 14px;
		text-align: left;
	}

	.contact-grid img {
		width: 44px;
		height: 44px;
	}

	.contact-grid span {
		align-items: flex-start;
		gap: 4px;
	}

	.contact-grid small {
		font-size: 11px;
	}

	.contact-grid strong {
		font-size: 16px;
	}
}

/* ===== タブレット専用（561px〜980px） ===== */
@media (min-width: 561px) and (max-width: 980px) {
	.hero {
		min-height: 650px;
	}

	.hero__visual {
		top: 170px;
		right: -15px;
		width: 460px;
		height: 470px;
		opacity: .78;
	}

	.message__inner {
		gap: 42px;
	}

	.message__profile {
		width: min(380px, 100%);
		margin: 0 auto;
	}

	.profile-photo,
	.profile-name {
		width: 100%;
	}

	.profile-photo img {
		width: 100%;
		height: auto;
		aspect-ratio: 1.05;
	}

	.bar-title {
		font-size: 30px;
	}

	.reason-card {
		min-height: 0;
		padding: 24px 22px;
	}

	.plan-table {
		display: grid;
		gap: 16px;
		overflow: visible;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.plan-row {
		display: grid;
		grid-template-columns: 1fr auto;
		min-height: 0;
		overflow: hidden;
		background: #fff;
		border: 1px solid #e7ebf1;
		border-radius: 9px;
		box-shadow: 0 5px 16px rgba(10, 38, 75, .07);
	}

	.plan-row:last-child {
		border-bottom: 1px solid #e7ebf1;
	}

	.plan-row > * {
		padding: 18px 22px;
	}

	.plan-name {
		gap: 16px;
	}

	.plan-name img {
		width: 54px;
	}

	.plan-name strong {
		font-size: 18px;
	}

	.plan-price {
		border-top: 0;
		border-left: 1px solid #e9edf2;
	}

	.plan-row > p {
		grid-column: 1 / -1;
		grid-row: 2;
		font-size: 13px;
		background: #fbfcfe;
		border-top: 1px solid #e9edf2;
	}

	.flow-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		width: min(560px, 100%);
		margin: 50px auto 38px;
	}

	.flow-card {
		min-height: 170px;
		padding: 24px 24px 20px 105px;
		text-align: left;
	}

	.flow-card::before {
		position: absolute;
		top: 0;
		bottom: -17px;
		left: 49px;
		width: 1px;
		content: "";
		background: #d9e0eb;
	}

	.flow-card:last-child::before {
		bottom: 50%;
	}

	.step {
		top: 20px;
		left: 20px;
		z-index: 2;
		width: 58px;
		height: 58px;
		transform: none;
	}

	.step small {
		font-size: 9px;
	}

	.step strong {
		font-size: 25px;
	}

	.flow-card > img {
		position: absolute;
		top: 96px;
		left: 29px;
		z-index: 2;
		width: 42px;
		height: 42px;
		margin: 0;
		background: #fff;
	}

	.flow-card h3 {
		margin: 0 0 12px;
	}

	.flow-card p {
		line-height: 1.8;
	}

	.contact-grid {
		width: min(440px, 100%);
		margin-right: auto;
		margin-left: auto;
	}

	.contact-grid > * {
		width: 100%;
	}
}

/* ===== 動きを減らす端末設定 ===== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
