/* ===== Custom Properties ===== */
:root {
	--c-navy: #109ba0;
	--c-blue: #14c89a;
	--c-accent: #12b89d;
	--c-orange: #fa803a;
	--c-light: #f4f7fb;
	--c-gray: #8a97a8;
	--c-border: #dde4ed;
	--c-text: #1a2535;
	--c-bg: #f0f3f8;
}

/* ===== Reset / Base ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--c-text);
	background-color: var(--c-bg);
	line-break: strict;
	overflow-wrap: anywhere;
	word-break: normal;
	-webkit-font-smoothing: antialiased;
}
img {
	display: block;
	max-width: 100%;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
button {
	cursor: pointer;
	font: inherit;
	border: none;
	background: none;
	padding: 0;
}

/* ===== Containers ===== */
.container {
	max-width: 1152px;
	margin-inline: auto;
}
.container--md {
	max-width: 1024px;
	margin-inline: auto;
}
.container--sm {
	max-width: 896px;
	margin-inline: auto;
}

/* ===== Buttons ===== */
.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: var(--c-orange);
	color: #fff;
	font-weight: 700;
	border-radius: 6px;
	transition: transform 0.2s;
}
.btn-cta:hover {
	transform: translateY(-2px);
}
.btn-cta--sm {
	padding: 0.5rem 1.25rem;
	font-size: 13px;
}
.btn-cta--md {
	padding: 0.75rem 1.5rem;
	font-size: 13px;
	letter-spacing: 0.05em;
}
.btn-cta--lg {
	padding: 1.125rem 2.75rem;
	font-size: 18px;
	letter-spacing: 0.06em;
}
.btn-cta--xl {
	padding: 0.75rem 2.5rem;
	font-size: 14px;
	border-radius: 12px;
}

/* ===== Header ===== */
.site-header {
	background: #fff;
	padding-inline: 1.25rem;
	height: 5rem;
	position: sticky;
	top: 0;
	z-index: 40;
	box-shadow:
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-header__brand {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}
.site-header__logo-link {
	display: inline-flex;
	align-items: center;
}
.site-header__logo {
	height: 1.75rem;
}

/* PC nav */
.nav-pc {
	display: none;
}
/* ハンバーガーはタブレット以下 (1024px未満) で表示 */
.nav-pc__list {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.nav-pc__link {
	color: rgba(16, 155, 160, 0.75);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	transition: color 0.2s;
}
.nav-pc__link:hover {
	color: var(--c-navy);
}

/* Hamburger */
.hamburger {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 2rem;
	height: 2rem;
	justify-content: center;
	align-items: center;
}
.hamburger__bar {
	display: block;
	width: 1.5rem;
	height: 2px;
	background: var(--c-navy);
	transition:
		transform 0.3s,
		opacity 0.3s;
}
#hamburger-btn.open .hamburger__bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
#hamburger-btn.open .hamburger__bar:nth-child(2) {
	opacity: 0;
}
#hamburger-btn.open .hamburger__bar:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-sp {
	position: fixed;
	top: 5rem;
	left: 0;
	width: 100%;
	background: var(--c-navy);
	z-index: 30;
	transform: translateY(-100%);
	transition: transform 0.3s;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-sp.is-open {
	transform: translateY(0);
}
.nav-sp__list {
	display: flex;
	flex-direction: column;
}
.nav-sp__link {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	padding: 1rem 1.5rem;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.2s;
}
.nav-sp__link:hover {
	background: rgba(255, 255, 255, 0.1);
}
.nav-sp__cta {
	display: block;
	background: var(--c-orange);
	color: #fff;
	padding: 1rem 1.5rem;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

/* ===== Hero ===== */
.hero {
	position: relative;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom right, var(--c-navy), #1a3a6b, var(--c-blue));
	display: none;
}

/* SP */
.hero__sp {
	display: block;
}
.hero__sp-image {
	position: relative;
	height: 300px;
	overflow: hidden;
}
.hero__sp-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__sp-content {
	background: linear-gradient(to bottom right, var(--c-navy), #1a3a6b, var(--c-blue));
	padding: 2.5rem 1.5rem;
}

/* PC */
.hero__img-pc {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	display: none;
}
.hero__img-pc img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__content-pc {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	display: none;
	align-items: center;
	justify-content: center;
}
.hero__content-inner {
	padding: 4rem 1.5rem;
	position: relative;
	z-index: 10;
}

/* Badge */
.hero__badge-wrap {
	display: inline-block;
	position: relative;
	margin-bottom: 1.25rem;
}
.hero__badge {
	background: var(--c-accent);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.05em;
	border-radius: 999px;
}
.hero__badge--sm {
	font-size: 11px;
	padding: 0.5rem 1rem;
}
.hero__badge--md {
	font-size: 14px;
	padding: 0.625rem 1.25rem;
}
.hero__badge-arrow {
	position: absolute;
	top: 100%;
	width: 0;
	height: 0;
}
.hero__badge-arrow--sm {
	left: 1.5rem;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid var(--c-accent);
}
.hero__badge-arrow--md {
	left: 2rem;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid var(--c-accent);
}

.hero__title {
	color: #fff;
	font-family: "corporate-logo-ver2", sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.hero__title--sp {
	font-size: 22px;
	margin-bottom: 1rem;
}
.hero__title--pc {
	font-size: 42px;
	margin-bottom: 1.25rem;
}

.hero__lead {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin: 0;
}
.hero__lead--sp {
	font-size: 13px;
	margin-bottom: 1.75rem;
}
.hero__lead--pc {
	font-size: 15px;
	margin-bottom: 2.25rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.hero__actions--pc {
	gap: 1rem;
}

/* ===== Section Head ===== */
.section-head {
	text-align: center;
	margin-bottom: 3.5rem;
}
.section-head--sm {
	margin-bottom: 2.5rem;
}
.section-head__title {
	font-family: "corporate-logo-ver2", sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: var(--c-navy);
	margin: 0 0 0.75rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.section-head__title--white {
	color: #fff;
}
.section-head__desc {
	color: var(--c-gray);
	font-size: 14px;
	line-height: 1.8;
	max-width: 672px;
	margin: 0 auto;
}

/* ===== About ===== */
.about {
	padding: 4rem 1.5rem;
}
.about__photo {
	margin-bottom: 2.5rem;
}
.about__photo img {
	width: 100%;
	max-width: 672px;
	margin-inline: auto;
	border-radius: 1rem;
	object-fit: cover;
}
.about__text {
	background: #fff;
	border-radius: 0 0.5rem 0.5rem 0;
	padding: 2rem 2rem 2rem 2.5rem;
	border-left: 4px solid var(--c-navy);
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}
.about__text p {
	font-size: 15px;
	color: var(--c-text);
	line-height: 1.8;
	margin: 0;
}

/* ===== Service ===== */
.service {
	padding: 4rem 1.5rem;
	background: rgba(20, 200, 154, 0.1);
}
.service__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
.service__card {
	background: #fff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition:
		box-shadow 0.3s,
		transform 0.3s;
	margin-bottom: 2rem;
}
.service__card:hover {
	box-shadow: 0 12px 40px rgba(26, 94, 168, 0.15);
	transform: translateY(-8px);
}
.service__card--featured:hover {
	box-shadow: 0 16px 48px rgba(26, 94, 168, 0.25);
}
.service__card-header {
	padding: 2rem;
	text-align: center;
	color: #fff;
	position: relative;
}
.service__card-header--green,
.service__card-header--green-navy,
.service__card-header--purple {
	background: linear-gradient(to bottom right, var(--c-blue), var(--c-navy));
}
.service__card-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}
.service__card-sub {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.8;
}
.service__card-img img {
	width: 100%;
	height: 176px;
	object-fit: cover;
}
.service__card-body {
	padding: 2rem;
	flex: 1;
}
.service__card-text {
	font-size: 15px;
	color: var(--c-text);
	line-height: 1.7;
	font-weight: 700;
	margin: 0;
}

/* ===== SNS ===== */
.sns {
	padding: 4rem 1.5rem;
	background: rgba(138, 151, 168, 0.05);
}
.sns__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
}
.sns__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	color: var(--c-navy);
	font-weight: 700;
	text-align: center;
	transition: opacity 0.2s;
}
.sns__link:hover {
	opacity: 0.7;
}
.sns__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1.5px solid var(--c-border);
	font-size: 30px;
	color: var(--c-navy);
	transition: border-color 0.2s;
}
.sns__link:hover .sns__icon {
	border-color: var(--c-navy);
}
.sns__label {
	font-size: 13px;
	line-height: 1.6;
}
.sns__sub {
	font-size: 11px;
	font-weight: 400;
	color: var(--c-gray);
}

/* ===== Contact ===== */
.contact {
	padding: 4rem 1.5rem;
	background: linear-gradient(to bottom right, var(--c-navy), #1a3a6b);
	text-align: center;
}
.contact__lead {
	color: #fff;
	font-size: 14px;
	line-height: 1.8;
	margin: 0 0 3rem;
}
.contact__form-wrap {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 3rem;
}
.contact__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	text-align: left;
}
.contact__form-label {
	display: block;
	color: #fff;
	font-size: 13px;
	margin-bottom: 0.5rem;
}
.contact__form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font: inherit;
	font-size: 14px;
}
.contact__form-input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}
.contact__form-field--full {
	grid-column: 1 / -1;
}
.contact__form-submit {
	grid-column: 1 / -1;
	text-align: center;
}

/* ===== Company ===== */
.company {
	padding: 4rem 1.5rem;
}
.company__map {
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: 2rem;
	height: 320px;
}
.company__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.company__table-wrap {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.company__table {
	width: 100%;
	font-size: 14px;
	border-collapse: collapse;
}
.company__table tr {
	border-bottom: 1px solid var(--c-border);
}
.company__table tr:last-child {
	border-bottom: none;
}
.company__table th {
	text-align: left;
	padding: 1.25rem 2rem;
	color: var(--c-gray);
	font-weight: 700;
	width: 33%;
	background: rgba(244, 247, 251, 0.5);
}
.company__table td {
	padding: 1.25rem 2rem;
	color: var(--c-text);
}

/* ===== Footer ===== */
.site-footer {
	background: #1a1a1a;
	color: rgba(255, 255, 255, 0.7);
	padding: 3rem 1.5rem;
}
.site-footer__inner {
	max-width: 1152px;
	margin-inline: auto;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}
.site-footer__logo {
	height: 8rem;
	width: auto;
	filter: brightness(0) invert(1);
	margin-bottom: 1.5rem;
}
.site-footer__brand {
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
}
.site-footer__nav-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.site-footer__nav-title {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 0.75rem;
}
.site-footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 13px;
}
.site-footer__nav-link {
	transition: color 0.2s;
}
.site-footer__nav-link:hover {
	color: #fff;
}
.site-footer__contact-title {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 0.75rem;
}
.site-footer__tel {
	color: var(--c-accent);
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin: 0 0 0.25rem;
}
.site-footer__tel-note {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 0.75rem;
}
.site-footer__cta-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.btn-footer-cta {
	display: block;
	text-align: center;
	background: var(--c-orange);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.05em;
	transition: background 0.2s;
}
.btn-footer-cta:hover {
	background: rgba(250, 128, 58, 0.9);
}
.btn-footer-sns {
	display: block;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.05em;
	transition: background 0.2s;
}
.btn-footer-sns:hover {
	background: rgba(255, 255, 255, 0.1);
}
.site-footer__copy {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
	text-align: center;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
}

/* ===== Select Dropdown ===== */
select option,
select optgroup {
	color: #1a2535;
	background-color: #fff;
}
select option:checked,
select option:hover {
	color: #fff;
	background-color: var(--c-blue);
}

/* ===== Responsive ===== */
.br-sp {
	display: inline;
}

/* ===== Ticket Shape ===== */
.ticket-shape {
	border-radius: 16px;
	clip-path: polygon(0 0, 100% 0, 100% calc(50% - 15px), calc(100% - 10px) 50%, 100% calc(50% + 15px), 100% 100%, 0 100%, 0 0);
}

/* ===== Fade-in ===== */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s ease-out,
		transform 0.8s ease-out;
}
.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Sec Tag ===== */
.sec-tag {
	display: inline-block;
	color: var(--c-blue);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	font-family: "corporate-logo-ver2", sans-serif;
	font-weight: 700;
}
.sec-tag::before {
	content: '- ';
}
.sec-tag::after {
	content: ' -';
}
.sec-tag--white {
	color: #fff;
}

/* ===== Gradient Shimmer ===== */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.gradient-shimmer {
	background: linear-gradient(90deg, #14c89a 0%, #109ba0 25%, #14c89a 50%, #109ba0 75%, #14c89a 100%);
	background-size: 200% 100%;
	animation: gradientShift 3s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== Dots Background ===== */
.dots-background {
	position: relative;
}
.dot {
	width: 10px;
	height: 10px;
	background: #14c89a;
	border-radius: 50%;
	position: absolute;
	margin: 2px;
	opacity: 0.08;
	z-index: 0;
}

/* ===== Heading Variants ===== */
.heading-8 {
	display: inline-block;
	position: relative;
	padding: 0.5em 0.7em;
	border-radius: 50px 0 0 50px;
	background-color: #12b89d;
	color: #fff;
}
.heading-8::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 13px;
	border-radius: 50%;
	background: #fff;
}
.heading-8-reverse {
	display: inline-block;
	position: absolute;
	left: -2px;
	padding: 0.5em 0.7em;
	padding-right: 1.2em;
	border-radius: 0 50px 50px 0;
	background: linear-gradient(135deg, #14c89a 0%, #12b89d 100%);
	color: #fff;
}

.heading-17 {
	display: flex;
	justify-content: start;
	align-items: center;
	position: relative;
	padding: 1em 1.5em;
	overflow: hidden;
	border: 2px solid #12b89d;
	border-radius: 8px;
	background-color: #fff;
	color: #333;
	font-weight: 700;
	font-size: 1.125rem;
}
.heading-17::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 0;
	width: 80px;
	background-color: #12b89d;
	content: '';
	clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.heading-17 span {
	position: relative;
	z-index: 1;
	margin-right: 1.5em;
	color: #fff;
	font-size: 1.5em;
	font-weight: 700;
	min-width: 60px;
	text-align: center;
}

/* ===== Reason Cards ===== */
.reason-badge {
	position: relative;
}
.reason-badge::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #14c89a;
}
.reason-card__img {
	perspective: 1200px;
	transform-style: preserve-3d;
}
.reason-card__img.animated {
	animation: panelFlip 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.reason-card__img.reverse {
	animation: panelFlipReverse 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes panelFlip {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(180deg);
	}
}
@keyframes panelFlipReverse {
	0% {
		transform: rotateY(180deg);
	}
	100% {
		transform: rotateY(0deg);
	}
}

/* ===== Works Grid ===== */
.works-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.works-grid .work-card {
	width: 100%;
	transition:
		opacity 0.3s,
		transform 0.3s;
}
.works-grid .work-card .work-card__media {
	position: relative;
	overflow: hidden;
	height: 220px;
	border-radius: 16px 16px 0 0;
}
.works-grid .work-card .work-card__media img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

@keyframes gradient-flow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.animate-gradient {
	animation: gradient-flow 3s ease infinite;
}

/* ===== Collapsed ===== */
.collapsed {
	padding: 0 !important;
}

/* ===== Media Queries ===== */
@media (min-width: 1024px) {
	.br-sp {
		display: none;
	}

	.site-header {
		padding-inline: 2.5rem;
	}
	.site-header__logo {
		height: 2.75rem;
	}
	.nav-pc {
		display: block;
	}
	.hamburger {
		display: none;
	}
	.nav-sp {
		display: none;
	}

	.hero {
		min-height: 620px;
	}
	.hero__bg {
		display: block;
	}
	.hero__sp {
		display: none;
	}
	.hero__img-pc {
		display: block;
	}
	.hero__content-pc {
		display: flex;
	}

	.section-head__title {
		font-size: 32px;
	}

	.about {
		padding: 5rem;
	}
	.about__text {
		padding: 3rem;
	}

	.service {
		padding: 5rem;
	}
	.service__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.service__card {
		margin-bottom: 0;
	}

	.sns {
		padding: 5rem;
	}

	.contact {
		padding: 5rem;
	}
	.contact__form {
		grid-template-columns: 1fr 1fr;
	}
	.contact__form-wrap {
		padding: 3rem;
	}

	.company {
		padding: 5rem;
	}
	.company__table {
		font-size: 15px;
	}

	.site-footer {
		padding: 3rem 5rem;
	}
	.site-footer__grid {
		grid-template-columns: 1fr 2fr 1fr;
	}

	.works-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.works-grid .work-card .work-card__media {
		height: 240px;
	}
}

/* ===== Contact Page ===== */
.contact--page {
	padding-block: 5rem 4rem;
	background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
	min-height: 80vh;
}
.contact__page-head {
	text-align: center;
	margin-bottom: 2.5rem;
}
.contact__page-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 900;
	color: #fff;
	margin-top: 0.75rem;
	margin-bottom: 1rem;
	letter-spacing: 0.04em;
}
.contact__cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
.contact__form-required {
	display: inline-block;
	background: var(--c-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 0.4em;
	vertical-align: middle;
}
.contact__form-privacy {
	grid-column: 1 / -1;
	font-size: 14px;
	color: #fff;
}
.contact__form-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5em;
	cursor: pointer;
}
.contact__form-checkbox-label input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	accent-color: var(--c-blue);
	flex-shrink: 0;
}
.contact__form-privacy-link {
	color: #fff;
	text-decoration: underline;
}
.contact__form-privacy-link:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* ===== Privacy Page ===== */
.privacy {
	padding-block: 5rem 4rem;
	background: var(--c-bg);
}
.privacy__head {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--c-blue);
}
.privacy__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	color: var(--c-navy);
	letter-spacing: 0.04em;
}
.privacy__date {
	margin-top: 0.5rem;
	font-size: 13px;
	color: var(--c-gray);
}
.privacy__intro {
	margin-bottom: 2rem;
	line-height: 1.9;
	color: var(--c-text);
}
.privacy__body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.privacy__section {
	background: #fff;
	border-radius: 0.75rem;
	padding: 1.5rem 1.75rem;
	box-shadow: 0 2px 12px rgba(26, 94, 168, 0.07);
}
.privacy__section-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--c-navy);
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--c-blue);
}
.privacy__section p {
	font-size: 14px;
	line-height: 1.9;
	color: var(--c-text);
}
.privacy__list {
	margin-top: 0.75rem;
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.privacy__list li {
	font-size: 14px;
	line-height: 1.8;
	color: var(--c-text);
	list-style: disc;
}
.privacy__address {
	margin-top: 1rem;
	font-size: 14px;
	line-height: 2;
	font-style: normal;
	color: var(--c-text);
}
.privacy__address a {
	color: var(--c-blue);
	text-decoration: underline;
}
.privacy__back {
	margin-top: 3rem;
	text-align: center;
}

/* フッターのプライバシーリンク */
.site-footer__privacy-link {
	color: inherit;
	text-decoration: underline;
	opacity: 0.8;
}
.site-footer__privacy-link:hover {
	opacity: 1;
}
