/* ==== buttons ==== */
.btn {
	display: inline-block;
	padding: 15px 34px;
	background: var(--green);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	transition: background .2s;
	cursor: pointer;
}

.btn:hover {
	background: var(--green-deep);
}

.btn-outline {
	background: transparent;
	color: var(--navy);
	border: 1px solid var(--navy);
	font-weight: 500;
}

.btn-outline:hover {
	background: var(--navy);
	color: #fff;
}

.cta-btn {
	padding: 11px 22px;
	font-size: 13px;
}

.center-btn {
	text-align: center;
	margin-top: 36px;
}

/* ==== section headings ==== */
.section-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
	color: var(--navy);
}

.section-title::after {
	content: "";
	display: block;
	width: 36px;
	height: 3px;
	background: var(--wood);
	margin: 14px auto 0;
}

.section-lead {
	text-align: center;
	color: var(--text-sub);
	font-size: 14px;
	margin-bottom: 36px;
}

.sub-heading {
	font-size: 16px;
	font-weight: 700;
	margin: 32px 0 16px;
	color: var(--navy);
}

.note {
	font-size: 12px;
	color: #a08a5f;
	margin-top: 14px;
	background: #faf3e6;
	padding: 10px 14px;
	border-left: 3px solid var(--wood);
}

/* ==== image placeholder ==== */
.img-ph {
	background: linear-gradient(135deg, var(--paper-deep), #e2d8c4);
	color: #8f8266;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 4px;
	font-size: 12px;
}

.img-ph i {
	font-size: 26px;
	color: #c2b498;
	margin-bottom: 4px;
}

.img-ph .tag-id {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--navy);
	color: #fff;
	font-size: 10px;
	padding: 3px 8px;
	letter-spacing: .05em;
}

.card-img img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

/* ==== 登録済み画像（サイト画像設定・IMG-01/02/03-06/14/21/22/34） ==== */
.setting-img {
	overflow: hidden;
	position: relative;
}

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

.taishin-visual {
	width: 100%;
	height: 320px;
	margin-bottom: 32px;
}

.company-portrait {
	width: 320px;
	height: 360px;
}

.access-visual {
	width: 100%;
	height: 480px;
	margin-top: 24px;
}

/* ==== badge ==== */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border: 1px solid var(--wood);
	color: var(--navy);
	font-size: 12px;
	font-weight: 500;
	background: #fff;
}

/* ==== FV ==== */
.fv-visual {
	width: 100%;
	height: 460px;
}

.fv-copy {
	text-align: center;
	padding: 40px 40px 0;
	max-width: 1280px;
	margin: 0 auto;
}

.fv-copy h1 {
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 14px;
	color: var(--navy);
}

.fv-copy p.sub {
	font-size: 15px;
	color: var(--text-sub);
	margin-bottom: 22px;
}

.fv-badges {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 28px;
}

/* ==== achievements ==== */
.ach-wrap {
	position: relative;
}

.ach-bg {
	width: 100%;
	height: 220px;
	opacity: .8;
}

.ach-numbers {
	display: flex;
	justify-content: center;
	gap: 56px;
	margin-top: -64px;
	position: relative;
}

.ach-item {
	background: #fff;
	border-top: 3px solid var(--green);
	box-shadow: 0 6px 18px rgba(28, 45, 74, .08);
	padding: 26px 34px;
	text-align: center;
	min-width: 200px;
}

.ach-item .num {
	font-size: 34px;
	font-weight: 900;
	color: var(--navy);
}

.ach-item .label {
	font-size: 12px;
	color: var(--text-sub);
	margin-top: 6px;
}

/* ==== diagnosis flow ==== */
.flow-list {
	display: flex;
	gap: 18px;
}

.flow-item {
	flex: 1;
	text-align: center;
	padding: 24px 14px;
	border-top: 3px solid var(--border);
	transition: border-color .2s, background .2s;
}

.flow-item.active,
.flow-item:hover {
	border-top-color: var(--green);
	background: #f3f8f4;
}

.flow-icon {
	width: 100%;
	height: 110px;
	margin-bottom: 14px;
}

.flow-icon.setting-img {
	height: auto;
}

.flow-item .step-num {
	font-size: 11px;
	color: var(--wood);
	font-weight: 700;
	margin-bottom: 6px;
	letter-spacing: .1em;
}

.flow-item h3 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--navy);
}

.flow-item p {
	font-size: 12px;
	color: var(--text-sub);
	text-align: left;
}

.flow-arrow {
	display: flex;
	align-items: center;
	color: var(--wood-light);
	font-size: 18px;
}

/* ==== work card ==== */
.work-card {
	background: #fff;
	padding-bottom: 8px;
}

.work-card .tag {
	font-size: 11px;
	color: var(--wood);
	border: 1px solid var(--wood);
	display: inline-block;
	padding: 2px 10px;
	margin-bottom: 8px;
}

.work-card h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--navy);
}

.work-card .years {
	font-size: 12px;
	color: var(--text-sub);
}

/* ==== voice card ==== */
.voice-card {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-top: 1px solid var(--border);
	max-width: 1280px;
	margin: 0 auto;
}

.voice-card:first-child {
	border-top: none;
}

.voice-avatar {
	width: 74px;
	height: 74px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
}

.voice-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.voice-body .name {
	font-size: 12px;
	color: var(--wood);
	margin-bottom: 6px;
	font-weight: 700;
}

.voice-body p {
	font-size: 14px;
}

/* ==== digest ==== */
.digest {
	display: flex;
	gap: 44px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}

.digest-img {
	width: 440px;
	height: 270px;
	flex-shrink: 0;
}

.digest-body h3 {
	font-size: 19px;
	margin-bottom: 14px;
	color: var(--navy);
}

.digest-body p {
	font-size: 14px;
	color: var(--text-sub);
	margin-bottom: 22px;
}

/* ==== access ==== */
.access-wrap {
	display: flex;
	gap: 40px;
	max-width: 1280px;
	margin: 0 auto;
}

.access-map {
	flex: 1;
	height: 320px;
}

.access-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.access-info {
	flex: 1;
}

.access-info dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.access-info dt {
	width: 100px;
	font-size: 13px;
	color: var(--wood);
	padding: 10px 0;
	border-top: 1px solid var(--border);
}

.access-info dd {
	width: calc(100% - 100px);
	font-size: 13px;
	padding: 10px 0;
	border-top: 1px solid var(--border);
}

.area-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.area-list span {
	border: 1px solid var(--wood);
	color: var(--navy);
	font-size: 12px;
	padding: 5px 14px;
}

/* ==== CTA section ==== */
.cta-section {
	text-align: center;
	background: var(--navy);
	color: #fff;
	padding: 70px 40px;
}

.cta-section h2 {
	font-size: 24px;
	margin-bottom: 24px;
	font-weight: 700;
}

.cta-tel {
	margin-top: 18px;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #cfd6e4;
}

/* ==== footer parts ==== */
.footer-col h5 {
	font-size: 12px;
	color: #8b96ad;
	margin-bottom: 14px;
	letter-spacing: .05em;
}

.footer-col li {
	font-size: 12px;
	margin-bottom: 9px;
}

.footer-copy {
	font-size: 11px;
	color: #6d7994;
	border-top: 1px solid #2a3a58;
	padding-top: 18px;
	max-width: 1280px;
	margin: 0 auto;
}

.follow-cta a {
	flex: 1;
	text-align: center;
	padding: 14px 0;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}

.follow-cta .tel-btn {
	background: var(--wood);
}

.follow-cta .form-btn {
	background: var(--green);
}

.follow-cta i {
	display: block;
	margin-bottom: 2px;
	font-size: 15px;
}

/* ==== table ==== */
.table-basic {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	max-width: 1280px;
	margin: 0 auto 32px;
}

.table-basic th,
.table-basic td {
	border-top: 1px solid var(--border);
	padding: 13px 10px;
	text-align: left;
}

.table-basic th {
	width: 170px;
	color: var(--wood);
	font-weight: 700;
	background: #faf7f0;
}

/* ==== filter bar ==== */
.filter-bar {
	display: flex;
	gap: 16px;
	padding: 26px 40px;
	background: #efe9dd;
	align-items: center;
	flex-wrap: wrap;
}

.filter-bar select {
	padding: 9px 14px;
	border: 1px solid var(--wood-light);
	font-size: 13px;
	background: #fff;
	color: var(--text);
}

/* ==== before/after ==== */
.before-after {
	display: flex;
	gap: 6px;
	max-width: 1280px;
	margin: 0 auto 32px;
}

.before-after .img-ph {
	flex: 1;
	overflow: hidden;
}

/* ==== staff card ==== */
.staff-img {
	width: 100%;
	height: 200px;
	margin-bottom: 12px;
}

.staff-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.staff-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
}

.staff-card .role {
	font-size: 12px;
	color: var(--wood);
	margin-bottom: 6px;
}

.staff-card p {
	font-size: 12px;
	color: var(--text-sub);
}

/* ==== accordion ==== */
.accordion-item {
	border-top: 1px solid var(--border);
	max-width: 1280px;
	margin: 0 auto;
}

.accordion-item:last-child {
	border-bottom: 1px solid var(--border);
}

.accordion-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	cursor: pointer;
}

.accordion-q i {
	transition: transform .2s;
	color: var(--wood);
}

.accordion-item.open .accordion-q i {
	transform: rotate(180deg);
}

.accordion-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	font-size: 13px;
	color: var(--text-sub);
	padding: 0 10px;
}

.accordion-item.open .accordion-a {
	max-height: 200px;
	padding: 0 10px 20px;
}

/* ==== form ==== */
.form-row {
	margin-bottom: 22px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.form-row label {
	display: block;
	font-size: 13px;
	margin-bottom: 9px;
	font-weight: 700;
	color: var(--navy);
}

.form-row .required {
	color: #fff;
	background: var(--wood);
	font-size: 10px;
	padding: 2px 7px;
	margin-left: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
	width: 100%;
	padding: 13px;
	border: 1px solid var(--wood-light);
	font-size: 14px;
	background: #fff;
}

.radio-group {
	display: flex;
	gap: 26px;
}

.radio-group label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 400;
}

.radio-group input[type="radio"] {
	width: auto;
	flex-shrink: 0;
}

/* ==== privacy / history ==== */
.privacy-body {
	max-width: 800px;
	margin: 0 auto;
}

.privacy-body h3 {
	font-size: 15px;
	margin: 26px 0 8px;
	color: var(--navy);
}

.privacy-body p {
	font-size: 13px;
	color: var(--text-sub);
	margin-bottom: 8px;
}

.history-list {
	max-width: 1280px;
	margin: 0 auto;
}

.history-list li {
	display: flex;
	gap: 20px;
	padding: 13px 0;
	border-top: 1px solid var(--border);
	font-size: 13px;
}

.history-list .year {
	width: 80px;
	color: var(--wood);
	font-weight: 700;
	flex-shrink: 0;
}

/* ==== responsive ==== */
@media (max-width: 767px) {
	.fv-visual {
		height: 230px;
	}

	.fv-copy {
		padding: 24px 16px 0;
	}

	.fv-copy h1 {
		font-size: 19px;
	}

	.fv-badges {
		flex-direction: column;
		gap: 8px;
	}

	.ach-bg {
		height: 100px;
	}

	.ach-numbers {
		flex-direction: column;
		gap: 12px;
		margin-top: 16px;
	}

	.flow-list {
		flex-direction: column;
	}

	.flow-arrow {
		display: none;
	}

	.digest {
		flex-direction: column;
	}

	.digest-img {
		width: 100%;
		height: 200px;
	}

	.access-wrap {
		flex-direction: column;
	}

	.before-after {
		flex-direction: column;
	}

	.staff-img {
		height: 220px;
	}

	.table-basic th {
		width: 110px;
	}

	.filter-bar {
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
	}
	.access-visual {
	    height: 280px;
    }
}
