/* ==================================================
	トップページ：ベース
================================================== */
html {
	scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
	color: var(--text);
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	background: var(--cream);
}

main {
	width: 100%;
	margin-inline: auto;
	background-color: var(--white);
}

/* ==================================================
	ヒーロー
================================================== */
.hero {
	background: var(--cream);
	margin-bottom: -22px;
}

.hero__video {
	display: block;
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.hero__video {
		width: 100%;
		max-width: none;
	}
}

/* ==================================================
	特徴ストリップ
================================================== */
.feature-strip {
	position: relative;
	z-index: 2;
	display: none;
	grid-template-columns: repeat(3, 1fr);
	width: min(680px, 90%);
	min-height: 136px;
	margin: -22px auto 20px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--shadow);
}

@media (min-width: 768px) {
	.feature-strip {
		display: none;
		width: min(700px, 90%);
	}
}

.feature-strip__item {
	display: grid;
	place-items: center;
	align-content: start;
	gap: 5px;
	text-align: center;
	padding: 10px 4px;
}

.feature-strip__item+.feature-strip__item {
	border-left: 1px solid var(--line);
}

.feature-strip__item h2 {
	color: var(--green);
	font-size: 22px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.feature-strip__item h2 {
		font-size: 28px;
	}
}

.feature-strip__item p {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.feature-strip__item p {
		font-size: 12px;
	}
}

.feature-strip__icon {
	display: block;
	width: 52px;
	height: 52px;
	object-fit: contain;
}

/* ==================================================
	LINEバナー
================================================== */
.line-banner {
	width: min(348px, calc(100% - 42px));
	margin: 0 auto 20px;
}

@media (min-width: 768px) {
	.line-banner {
		width: min(560px, 90%);
	}
}

.line-banner img {
	width: 100%;
}

/* ==================================================
	対応エリア
================================================== */
.area {
	display: grid;
	grid-template-columns: 112px 1fr;
	gap: 1px;
	padding: 20px;
	background: var(--cream);
}

@media (min-width: 700px) {
	.area {
		width: 100%;
		grid-template-columns: 320px 1fr;
		align-items: center;
		margin: 0 auto;
		padding: 42px 20vw;
		position: relative;
	}
}

@media (min-width: 768px) {
	.area {
		width: 100%;
		grid-template-columns: 320px 1fr;
		align-items: center;
		margin: 0 auto;
		padding: 42px 10vw;
	}
}

.area__map {
	align-self: center;
}

.area__contact {
	padding-bottom: 20px;
}

.area h2 {
	color: var(--green);
	font-size: 22px;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.area h2 {
		font-size: 28px;
	}
}

.area__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 10px 0 8px;
}

.area__tags span {
	color: var(--green);
	font-size: 14px;
	font-weight: 700;
	background: var(--white);
	border: 1px solid var(--green);
	border-radius: 4px;
	padding: 3px 8px;
}

.area__tags .area__tags-note {

	font-weight: 400;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 3px 0;
}

.area__message {
	grid-column: 1 / -1;
	font-size: 12px;
	text-align: center;
}

@media (min-width: 768px) {
	.area__message {
		grid-column: 2;
		text-align: left;
		font-size: 14px;
		position: absolute;
		left: 0;
		bottom: 60px;
	}
}

@media (min-width: 1050px) {
	.area__message {
		bottom: 80px;
	}
}

/* ==================================================
	共通セクション
================================================== */
.section,
.section-card {
	padding: 40px 20px;
}

@media (min-width: 768px) {

	.section,
	.section-card {
		padding: 80px 40px;
	}
}

.section__title {
	text-align: center;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.section__title {
		margin-bottom: 40px;
	}
}

.section__title span {
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section__title h2,
.section-card h2 {
	color: var(--green);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.35;
}

@media (min-width: 768px) {

	.section__title h2,
	.section-card h2 {
		font-size: 28px;
	}
}

.section__title p {
	margin-top: 8px;
	text-align: left;
}

@media (min-width: 768px) {
	.section__title p {
		text-align: center;
	}
}

.section__title--white span,
.section__title--white h2 {
	color: var(--white);
}

.section--green {
	background: var(--green);
}

/* ==================================================
	お悩み
================================================== */
.worry {
	width: min(680px, 90%);
	margin: 20px auto;
	background: #f7f6ee;
	border-radius: 10px;
}

@media (min-width: 768px) {
	.worry {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(260px, 32%);
		grid-template-areas:
			"title image"
			"list image";
		column-gap: 48px;
		align-items: center;
		width: min(1120px, 90%);
		padding: 20px 80px;
	}
}


@media (min-width: 800px) {
	.worry {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
		grid-template-areas:
			"title image"
			"list image";
		column-gap: 48px;
		align-items: center;
		width: min(1120px, 90%);
		padding: 20px 80px;
	}
}

.worry h2 {
	text-align: center;
	margin-bottom: 18px;
}

@media (min-width: 768px) {
	.worry h2 {
		grid-area: title;
		text-align: left;
		margin-bottom: 12px;
	}
}

.check-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.worry .check-list {
		grid-area: list;
		margin-bottom: 0px;
	}
}

.check-list li {
	position: relative;
	padding-left: 30px;
}

.check-list li::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url("../image/icon-check-circle.svg") center / contain no-repeat;
}

.worry__message {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	margin: 22px 0 16px;
}

.worry__message span {
	color: var(--green);
}

.worry__image {
	width: 100%;
	border-radius: 8px;
}

@media (min-width: 768px) {
	.worry__image {
		grid-area: image;
	}
}

/* ==================================================
	カード共通
================================================== */
.card-grid {
	display: grid;
	gap: 20px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.card-grid {
		width: min(1040px, 90%);
		grid-template-columns: repeat(3, 1fr);
	}
}

.image-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 30px 30px 48px;
}

.image-card img {
	width: 100%;
	aspect-ratio: 47 / 31;
	object-fit: cover;
	border-radius: 4px;
}

.image-card div {
	padding-top: 22px;
}

.image-card h3 {
	color: var(--green);
	font-size: 26px;
	font-weight: normal;
	letter-spacing: 0.02em;
	line-height: 1.5;
	margin-bottom: 18px;
}

.image-card p,
.reason-card p,
.voice-list p {
	color: var(--muted);
}

/* ==================================================
	リスク
================================================== */
.risk {
	background: var(--white);
}

.risk__title {
	text-align: center;
	margin-bottom: 28px;
}

.risk__title p {

	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 10px;
}

.risk__title h2 {
	color: var(--green);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.risk__card-grid {
	gap: 16px;
	width: min(1000px, 100%);
}

.risk-card {
	border-color: #e8efed;
	border-radius: 6px;
	box-shadow: 0 18px 30px rgba(31, 59, 45, 0.08);
	padding: 16px 16px 20px;
}

.risk-card img {
	aspect-ratio: 224 / 167;
	border-radius: 2px;
}

.risk-card div {
	padding-top: 10px;
}

.risk-card h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 8px;
}

/* ==================================================
	解決・管理
================================================== */
.solution-management {
	background: var(--cream);
}

.solution-management__title {
	text-align: center;
	margin-bottom: 24px;
}

.solution-management__title h2 {
	color: var(--green);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.45;
	margin-bottom: 14px;
}

.solution-management__title p {
	text-align: left;
}

@media (min-width: 768px) {
	.solution-management__title p {
	text-align: center;
	}
}

.solution-management__title p span {
	color: var(--green);
	font-weight: 700;
}

.solution-management__grid {
	display: grid;
	gap: 20px;
	width: min(1000px, 100%);
	margin: 0 auto;
}

.solution-card__label {
	color: var(--green);
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	background: var(--green-light);
	border-radius: 999px;
	padding: 6px 12px;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.solution-card__label {
		font-size: 20px;
	}
}

.solution-card__body {
	background: var(--white);
	border-radius: 6px;
	box-shadow: 0 18px 30px rgba(31, 59, 45, 0.08);
	padding: 14px 14px 18px;
}

.solution-card__body img {
	width: 100%;
	aspect-ratio: 185 / 140;
	object-fit: cover;
	border-radius: 2px;
	margin-bottom: 12px;
}

.solution-card__body h3 {
	color: var(--green);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.risk {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.risk__title {
		margin-bottom: 36px;
	}

	.risk__title p {
		font-size: 16px;
	}

	.risk__title h2 {
		font-size: 28px;
	}

	.solution-management__title h2 {
		font-size: 28px;
	}

	.risk__card-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.solution-management {
		padding-top: 48px;
		padding-bottom: 52px;
	}

	.solution-management__title {
		margin-bottom: 22px;
	}

	.solution-management__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.solution-card {
		display: flex;
		flex-direction: column;
	}

	.solution-card__body {
		flex: 1;
	}
}

/* ==================================================
	選ばれる理由
================================================== */
.reason {
	background: var(--green);
	padding-top: 40px;
	padding-bottom: 40px;
}

.reason .section__title {
	margin-bottom: 26px;
}

.reason .section__title span {
	display: none;
}

.reason .section__title h2 {
	position: relative;
	display: inline-block;
	color: var(--white);
	font-size: 24px;
	margin-bottom: 10px;
}

.reason .section__title h2::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 170px;
	height: 10px;
	background: url(../image/yellow-line.svg) no-repeat center / contain;
	transform: translateX(-50%);
}

.reason .section__title h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -12px;
	width: 170px;
	height: 10px;
	background: url(../image/yellow-line.svg) no-repeat center / contain;
	transform: translateX(-50%);
}

.reason-list {
	display: grid;
	gap: 18px;
	width: min(330px, 100%);
	margin: 0 auto;
}

@media (min-width: 768px) {
	.reason-list {
		width: min(1000px, 100%);
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

.reason-card {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 12px 24px rgba(31, 59, 45, 0.14);
	padding: 14px 14px 28px;
}

.reason-card img {
	width: 100%;
	aspect-ratio: 240 / 165;
	object-fit: cover;
	border-radius: 4px;
}

.reason-card div {
	padding-top: 12px;
}

.reason-card span {
	display: none;
}

.reason-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

/* ==================================================
	お客様の声
================================================== */
.voice {
	position: relative;
	padding-bottom: 44px;
	background: var(--white);
}

.voice .section__title span {
	display: none;
}

.voice .section__title {
	margin-bottom: 26px;
}

.voice-list {
	display: grid;
	gap: 20px;
	width: min(390px, 100%);
	margin: 0 auto;
}

@media (min-width: 768px) {
	.voice-list {
		width: min(1020px, 90%);
		grid-template-columns: repeat(3, 1fr);
		gap: 34px;
	}
}

.voice-card {
	display: grid;
	align-content: start;
	gap: 10px;
	background: var(--white);
	border: 1px solid rgba(52, 159, 135, 0.08);
	border-radius: 8px;
	padding: 22px 20px 28px;
	box-shadow: 0 18px 32px rgba(31, 59, 45, 0.1);
}

@media (min-width: 768px) {
	.voice-card {
		min-height: 260px;
		padding: 24px 22px 28px;
	}
}

.voice-card__profile {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 12px;
	align-items: center;
	margin-bottom: 2px;
}

.voice-card__profile img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 12px;
}

.voice-card__name {
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.voice-card__name span {
	font-size: 18px;
}

.voice-card__plan {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.35;
}

.voice-card__plan span {
	color: var(--green);
	font-weight: 700;
}

.voice-card h3 {
	color: var(--text);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.55;
	margin-top: 4px;
}

.voice-card>p {
	color: var(--muted);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.9;
}

.voice-reassurance {
	display: grid;
	gap: 18px;
	margin: 30px auto 0;
	padding: 28px 22px;
	text-align: center;
	background: #f3f4ee;
	border-radius: 10px;
}

@media (min-width: 768px) {
	.voice-reassurance {
		width: min(790px, 74%);
		margin-top: 46px;
		padding: 34px 56px 38px;
		border-radius: 90px;
	}
}

.voice-reassurance p {
	color: var(--green);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.voice-reassurance p {
		font-size: 21px;
	}
}

.voice-reassurance ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
}

@media (min-width: 768px) {
	.voice-reassurance ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

.voice-reassurance li {
	display: grid;
	justify-items: center;
	gap: 8px;
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
}

.voice-reassurance__icon {
	display: block;
	width: 25px;
	height: 25px;
	object-fit: contain;
}

/* ==================================================
	料金・支払い
================================================== */
.price {
	background: var(--green-light);
}

.payment {
	background: #f6f7f1;
}

.price-list {
	display: grid;
	gap: 20px;
	width: min(390px, 100%);
	margin: 0 auto;
}

@media (min-width: 768px) and (min-height: 500px) {
	.price-list {
		width: min(1040px, 90%);
		grid-template-columns: repeat(3, 1fr);
	}
}

.price-list article {
	position: relative;
	overflow: hidden;
	background: var(--white);
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(31, 59, 45, 0.08);
}

.price-list h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 55px;
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	background: #4fc28d;
	padding: 14px 18px;
}

.price-list__card--standard h3 {
	background: #32a58e;
}

.price-list__card--pro h3 {
	background: #37aeb0;
}

.price-list b {
	display: inline-grid;
	place-items: center;
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	background: #f1f7d5;
	border-radius: 999px;
	padding: 5px 11px;
}

.price-list__lead {
	color: var(--green);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
    padding: 20px 20px 9px;
}

.price-list__amount {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.1em 6px;
	color: var(--green);
	font-size: clamp(26px, 8vw, 37px);
	font-weight: 700;
	line-height: 1.2;
	padding: 0 20px 18px;
	text-align: center;
}

.price-list__amount span {
	font-size: 14px;
	letter-spacing: 0.04em;
}

.price-list__amount small {
	font-size: clamp(12px, 0.38em, 18px);
	font-weight: 400;
	white-space: nowrap;
}

@media screen and (min-width: 768px) and (min-height: 500px) {
	.price-list__amount {
		font-size: 37px;
	}

	.price-list__amount small {
		font-size: 18px;
	}
}

.price-list ul {
	display: grid;
	gap: 13px;
	list-style: none;
	padding: 0 30px 30px;
}

.price-list li {
	position: relative;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	padding-left: 27px;
}

.price-list li::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 18px;
	height: 18px;
	background-color: var(--green);
	border-radius: 50%;
}

.price-list li::after {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 6px;
    width: 11px;
    height: 6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
}

.price__note {
    width: min(1000px, 100%);
    font-size: 14px;
    margin: 16px auto 0;
    text-align: center;
}

.price__option-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: min(390px, 100%);
	min-height: 47px;
	color: var(--green);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	background: var(--white);
	border-radius: 4px;
	box-shadow: 0 8px 18px rgba(31, 59, 45, 0.06);
	margin: 18px auto 0;
	transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease;
}

@media (hover: hover) {
	.price__option-link:hover,
	.price__option-link:focus-visible {
		transform: translateY(-4px);
		box-shadow: 0 14px 28px rgba(31, 59, 45, 0.12);
	}
}

@media (prefers-reduced-motion: reduce) {
	.price__option-link {
		transition: none;
	}

	.price__option-link:hover,
	.price__option-link:focus-visible {
		transform: none;
	}
}

.price__option-link::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.payment-method {
	width: min(432px, 100%);
	margin: 0 auto;
}

@media (min-width: 768px) {
	.payment-method {
		width: min(760px, 100%);
	}
}

.payment-method__title {
	color: var(--green);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.35;
	text-align: center;
	margin-bottom: 22px;
}

@media (min-width: 768px) {
	.payment-method__title {
		font-size: 30px;
	}
}

.payment-method__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	list-style: none;
}

@media (min-width: 768px) {
	.payment-method__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.payment-method__list li {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 14px;
	min-height: 166px;

	font-size: 21px;
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
	background: var(--white);
	border: 2px solid #d8e3cf;
}

.payment-method__list img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.payment-method__list span {
	font-size: 14px;
}

@media (min-width: 768px) {
	.payment-method__list span {
		font-size: 16px;
	}
}

/* ==================================================
	ご利用の流れ
================================================== */
.flow {
	width: min(900px, calc(100% - 32px));
	margin: 40px auto;
	background: var(--cream);
	border-radius: 16px;
	padding: 32px 20px;
}

.flow .section__title {
	margin-bottom: 28px;
}

.flow .section__title span {
	display: none;
}

.flow-list {
	display: grid;
	gap: 28px;
	width: min(350px, 100%);
	margin: 0 auto;
	list-style: none;
}

@media (min-width: 768px) {
	.flow {
		width: min(1120px, calc(100% - 96px));
		padding: 32px 24px;
		border-radius: 16px;
	}

	.flow .section__title {
		margin-bottom: 30px;
	}

	.flow-list {
		width: min(780px, 100%);
		grid-template-columns: repeat(4, 180px);
		justify-content: center;
		gap: clamp(12px, 1.6vw, 16px);
	}
}

.flow-list li {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 8px;
	min-height: 253px;
	background: var(--white);
	border-radius: 6px;
	padding: 18px 14px 20px;
}

.flow-list li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -20px;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--green);
	border-right: 2px solid var(--green);
	transform: translateX(-50%) rotate(135deg);
}

@media (min-width: 768px) {
	.flow-list li:not(:last-child)::after {
		left: auto;
		right: -12px;
		top: 50%;
		bottom: auto;
		transform: translateY(-50%) rotate(45deg);
	}
}

.flow-list__step {
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.flow-list__image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--green-light);
}

.flow-list h3 {
	justify-self: stretch;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
}

.flow-list p {
	font-size: 14px;
}

/* ==================================================
	お問い合わせフォーム
================================================== */
.contact-form {
	display: grid;
	gap: 22px;
	width: min(390px, 100%);
	margin: 0 auto;
	padding: 28px 20px 22px;
	background: var(--white);
	box-shadow: 0 8px 28px rgba(31, 59, 45, 0.08);
}

@media (min-width: 768px) {
	.contact-form {
		width: min(1000px, 90%);
		padding: 34px;
		border-radius: 4px;
		box-shadow: none;
	}
}

.contact-form__field {
	display: grid;
	gap: 10px;
	font-size: 14px;
}

.contact-form__label {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.contact-form__required {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	min-height: 20px;
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	background: var(--orange);
}

.contact-form__note {
	display: block;
	flex-basis: 100%;
	color: var(--muted);
	font-size: 11px;
	font-weight: 500;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid #9fb7b1;
	border-radius: 8px;
	font: inherit;
	background: var(--white);
	padding: 17px 20px;
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #a7aaa9;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--green);
	outline: 3px solid rgba(52, 159, 135, 0.14);
}

.contact-form__privacy {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: var(--text);
	font-size: 13px;
	font-weight: 500;
	background: #fbfaf8;
	padding: 14px;
}

.contact-form__privacy input {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	accent-color: var(--green);
}

.contact-form__privacy a {
	background: linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat;
	text-decoration: none;
	transition: background-size 0.5s ease;
}

.contact-form__privacy a:hover,
.contact-form__privacy a:focus-visible {
	background-position: right bottom;
	background-size: 0 1px;
}

.contact-form button {
	cursor: pointer;
	color: var(--white);
	font: inherit;
	font-weight: 700;
	background: var(--orange);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 5px 14px rgba(255, 110, 0, 0.24);
	padding: 18px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
	box-shadow: 0 10px 22px rgba(255, 110, 0, 0.32);
	transform: translateY(-4px);
	text-decoration: none;
}

.contact-form__points {
	display: grid;
	gap: 8px;
	list-style: none;
	border: 1px solid var(--line);
	background: #fbfaf8;
	padding: 18px 20px;
}

.contact-form__point {
	position: relative;
	padding-left: 34px;
	font-size: 13px;
	line-height: 1.45;
}

.contact-form__point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}

.contact-form__point--free::before {
	background-image: url("../image/icon-free.svg");
}

.contact-form__point--gaichu::before {
	background-image: url("../image/icon-hand.svg");
}

.contact-form__point--flower::before {
	background-image: url("../image/icon-voice.svg");
}