@font-face {
	font-family: 'Hiragino Kaku Gothic';
	src: url('../font/HiraginoKakuGothic/HiraginoKakuGothic-W3.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Hiragino Kaku Gothic';
	src: url('../font/HiraginoKakuGothic/HiraginoKakuGothic-W7.otf') format('opentype');
	font-weight: bold;
	font-style: normal;
}

html, body {
	color: black;
	font-size: 1rem;
	font-weight: normal;
	font-family: "Hiragino Kaku Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 100%;
	margin: 0;
	scroll-behavior: smooth;
	padding: 0;
	width: 100%;
}

/* perspective will malfunction the fixed position of its direct children */
body {
	--beige-dark: #9CADB1;
	--beige-light: #FFFFE0;
	--blue: #29AAE1;
	--blue-light: #E2F6FF;
	--blue-lighter: #EAFBFF;
	--grey-light: #F6F6F6;
	--grey: #666666;
	--grey-lighter: #F6F6F6;
	/*perspective: 100px;*/
}

.u-bg-beige-dark {
	background-color: var(--beige-dark);
}

.u-bg-beige-light {
	background-color: var(--beige-light);
}

.u-bg-blue {
	background-color: var(--blue);
}

.u-text-blue {
	color: var(--blue);
}

.u-bg-blue-light {
	background-color: var(--blue-light);
}

.u-bg-blue-lighter {
	background-color: var(--blue-lighter);
}

.u-bg-blue-gradient {
	background: rgb(29,138,249);
	background: radial-gradient(circle at 0% 0%, rgba(185,226,250,1) 0%, rgba(41,170,225,1) 60%, rgba(29,138,249,1) 100%);
}

.u-bg-white {
	background-color: white;
}

.u-text-white {
	color: white;
}

.u-text-blue-light {
	color: var(--blue-light);
}

.u-bg-grey {
	background-color: var(--grey);
}

.u-text-grey {
	color: var(--grey);
}

a, h1, h2, h3, h4, h5, h6, p {
	color: inherit;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	margin-bottom: 0;
}

code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
	monospace;
}

.u-scrollbar {
	scrollbar-color: var(--gray-700) transparent;
	scrollbar-width: thin;
}

.u-scrollbar::-webkit-scrollbar {
	height: 5px;
	width: 5px;
}

.u-scrollbar::-webkit-scrollbar-track {
	background: transparent;
}

.u-scrollbar::-webkit-scrollbar-thumb {
	background-color: var(--gray-700);
	border-radius: 5px;
	border: 5px solid transparent;
}

#__next, .layout {
	height: 100%;
}

/* Main Begin */
.u-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1130px;
	padding-left: 15px;
	padding-right: 15px;
}

main {
	background-color: var(--blue-gray-50);
}

/* Checkbox Begin */
.u-checkbox {
	position: relative;
	background-color: white;
	border: 2px solid var(--gray-600);
	display: inline-block;
	height: 1.5em;
	width: 1.5em;
}

.u-checkbox:before {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--gray-600);
	content: "";
	height: 50%;
	transform: translate(-50%,-50%);
	transition: opacity .2s;
	width: 50%;
	z-index: 1;
}

.u-checkbox:not(._selected):before {
	opacity: 0;
}
/* Checkbox End */

/* Plus Minor Begin */
.plus-minor-svg {
}

.plus-minor-svg-line {
	transform-origin: center;
	transition: transform .5s;
}

.plus-minor-svg._minor .plus-minor-svg-line._horizontal {
	transform: rotateZ(360deg);
}

.plus-minor-svg._minor .plus-minor-svg-line._vertical {
	transform: rotateZ(90deg);
}
/* Plus Minor End */

@media (min-width: 1921px) {
	.u-container {
		max-width: 1200px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.u-container {
		max-width: calc(100vw * 1200 / 1920);
	}
}

@media (min-width: 768px) {
	.u-sp-only {
		display: none !important;
	}

	main {
		padding-top: 90px;
	}
}

@media (max-width: 767px) {
	.u-pc-only {
		display: none !important;
	}

	main {
		padding-top: calc(100vw * 90 / 750);
	}

	.u-container {
		padding-left: calc(100vw * 35 / 750);
		padding-right: calc(100vw * 35 / 750);
	}
}
/* Main End */

/* Mobile Menu Toggle Begin */
.mobile-menu-toggle {
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	padding: 0;
}

.mobile-menu-toggle-svg {
	height: 50px;
	width: 50px;
}

.mobile-menu-toggle-svg-line {
	fill: none;
	stroke: black;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
	stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
	stroke-linecap: round;
	stroke-width: 6;
}

.mobile-menu-toggle-svg-line._line1 {
	stroke-dasharray: 60 207;
}

.mobile-menu-toggle-svg-line._line2 {
	stroke-dasharray: 60 60;
}

.mobile-menu-toggle-svg-line._line3 {
	stroke-dasharray: 60 207;
}

.mobile-menu-toggle-checkbox:checked ~ .mobile-menu-toggle-wrapper .mobile-menu-toggle-svg-line._line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
}

.mobile-menu-toggle-checkbox:checked ~ .mobile-menu-toggle-wrapper .mobile-menu-toggle-svg-line._line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
}

.mobile-menu-toggle-checkbox:checked ~ .mobile-menu-toggle-wrapper .mobile-menu-toggle-svg-line._line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
}
/* Mobile Menu Toggle End */

/* Header Begin */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: white;
	box-shadow: 0 2px 4px rgba(192,210,215,.45);
	z-index: 100;
}

.header-container {
	width: 100%;
}

.header-logo {
	width: 8em;
}

.header-nav {
	gap: 2em;
}

@media (min-width: 1921px) {
}

@media (max-width: 1920px) and (min-width: 768px) {
}

@media (min-width: 768px) {
	.header {
		font-size: 18px;
		height: 90px;
	}

	.header-container {
		padding-left: 80px;
		padding-right: 80px;
	}

	.header-nav-item {
		font-size: 18px;
	}

	.mobile-menu-toggle {
		display: none;
	}
}

@media (max-width: 767px) {
	.header {
		font-size: 14px;
		height: calc(100vw * 90 / 750);
		transition: background-color .2s;
	}

	.header-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.header-logo {
		width: calc(100vw * 200 / 750);
	}

	.header .logo-crown,
	.header .logo-text {
		transition: fill .2s;
	}

	.mobile-menu-toggle-checkbox:checked ~ .header .logo-crown,
	.mobile-menu-toggle-checkbox:checked ~ .header .logo-text {
		fill: white;
	}

	.header-right {
		position: fixed;
		top: calc(100vw * 90 / 750);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		height: 100%;
		justify-content: center;
		/*overflow: hidden;*/
		overflow-y: auto;
		transition: max-height .5s;
	}

	.mobile-menu-toggle-checkbox:checked ~ .header,
	.mobile-menu-toggle-checkbox:checked ~ .mobile-menu-toggle-wrapper .header-right {
		background-color: var(--blue);
	}

	.mobile-menu-toggle-checkbox:not(:checked) ~ .mobile-menu-toggle-wrapper .header-right {
		max-height: 0;
	}

	.mobile-menu-toggle-checkbox:checked ~ .mobile-menu-toggle-wrapper .header-right {
		max-height: calc(100vh - 100vw * 90 / 750);
	}

	.header-nav {
		align-items: stretch;
		background-color: transparent;
		flex-direction: column;
		height: auto;
		gap: calc(100vw * 30 / 750);
		justify-content: center;
		width: calc(100% - 100vw * 70 / 750);
	}

	.header-nav-item {
		background-color: white;
		border-radius: calc(100vw * 10 / 750);
		padding: calc(100vw * 20 / 750) calc(100vw * 40 / 750);
	}

	.header-nav-item-label {
		font-size: calc(100vw * 35 / 750);
		font-weight: 900;
	}

	.header-nav-item-arrow {
		height: calc(100vw * 55 / 750);
		width: calc(100vw * 55 / 750);
	}

	.mobile-menu-toggle-svg {
		height: calc(100vw * 50 / 750);
		width: calc(100vw * 50 / 750);
	}

	.header-nav-sub {
		gap: calc(100vw * 30 / 750);
		margin-top: calc(100vw * 60 / 750);
	}

	.header-nav-sub-item {
		font-size: calc(100vw * 24 / 750);
	}
}
/* Header End */

/* KV Begin */
.kv {
	font-size: 18px;
}

@media (min-width: 1921px) {
	.kv-container {
		padding: 125px 230px 50px;
	}

	.kv-container {
		gap: 65px;
	}

	.kv-left {
		gap: 50px;
		width: 500px;
	}

	.kv-heading {
		font-size: 55px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.kv {
		font-size: calc(100vw * 18 / 1920);
	}

	.kv-container {
		gap: calc(100vw * 65 / 1920);
		padding: calc(100vw * 125 / 1920) calc(100vw * 230 / 1920) calc(100vw * 50 / 1920);
	}

	.kv-left {
		gap: calc(100vw * 50 / 1920);
		width: calc(100vw * 500 / 1920);
	}

	.kv-heading {
		font-size: calc(100vw * 55 / 1920);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.kv-container {
		gap: calc(100vw * 60 / 750);
	}

	.kv-left {
		gap: calc(100vw * 30 / 750);
	}

	.kv-left,
	.kv-right {
		width: 100%;
	}

	.kv-container {
		flex-direction: column;
		padding: 20px 40px;
	}

	.kv-heading {
		font-size: calc(100vw * 64 / 750);
	}

	.kv-subheading {
		font-size: calc(100vw * 21 / 750);
	}
}
/* KV End */

/* Business Plan Begin */
.plan-wrapper:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--grey-light);
	content: "";
	z-index: -1;
}

.plan-image {
	box-shadow: 0 0 8px var(--beige-dark);
}

@media (min-width: 1921px) {
	.plan-wrapper:after {
		top: 60px;
		border-top-right-radius: 200px;
	}

	.plan-container {
		gap: 80px;
		padding-bottom: 80px;
	}

	.plan-left {
		width: 295px;
	}

	.plan-image {
		border-radius: 20px;
	}

	.plan-right {
		gap: 40px;
	}

	.plan-heading {
		font-size: 35px;
	}

	.plan-subheading {
		font-size: 20px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.plan-wrapper:after {
		top: calc(100vw * 60 / 1920);
		border-top-right-radius: calc(100vw * 200 / 1920);
	}

	.plan-container {
		gap: calc(100vw * 80 / 1920);
		padding-bottom: calc(100vw * 80 / 1920);
	}

	.plan-left {
		width: calc(100vw * 295 / 1920);
	}

	.plan-image {
		border-radius: calc(100vw * 20 / 1920);
	}

	.plan-right {
		gap: calc(100vw * 40 / 1920);
	}

	.plan-heading {
		font-size: calc(100vw * 35 / 1920);
	}

	.plan-subheading {
		font-size: calc(100vw * 20 / 1920);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.plan {
		padding-top: calc(100vw * 60 / 750);
	}

	.plan-wrapper:after {
		top: 120px;
		border-top-right-radius: 120px;
	}

	.plan-container {
		flex-direction: column;
		gap: 20px;
		padding-left: 35px;
		padding-right: 35px;
		padding-bottom: 60px;
	}

	.plan-left {
		width: 100%;
	}

	.plan-image {
		border-radius: 10px;
		width: 50%;
	}

	.plan-right {
		gap: calc(100vw * 40 / 750);
		padding-right: calc(100vw * 90 / 750);
		width: 100%;
	}

	.plan-heading {
		font-size: calc(100vw * 35 / 750);
	}

	.plan-subheading {
		font-size: calc(100vw * 20 / 750);
		line-height: 2;
	}
}
/* Business Plan End */

/* Feature Begin */
.feature-provide:after {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--grey-lighter);
	border-radius: 9999px 0 0 9999px;
	content: "";
	z-index: 0;
}

.feature-provide-container {
	z-index: 1;
}

.feature-problem-item,
.feature-provide-item {
	box-shadow: 0 0 8px var(--beige-dark);
}

.feature-problem-item-image,
.feature-provide-item-image {
	width: auto;
}

.feature-adoption-flow-chart-title h3 {
	border: 1px solid var(--blue);
	border-radius: 9999px;
}

.feature-adoption-flow-chart-item {
	width: auto;
}

@media (min-width: 1921px) {
	.feature {
		background-position-y: -80px;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.feature-problem {
		margin-bottom: 75px;
	}

	.feature-problem-items {
		gap: 52px;
	}

	.feature-solution {
		margin-bottom: 150px;
	}

	.feature-solution-title {
		font-size: 30px;
		margin-bottom: 25px;
	}

	.feature-solution-subtitle {
		font-size: 20px;
	}

	.feature-spec {
		margin-bottom: 50px;
	}

	.feature-spec-title {
		font-size: 40px;
		margin-bottom: 50px;
	}

	.feature-spec-subtitle {
		font-size: 20px;
	}

	.feature-provide {
		padding-top: 70px;
		margin-bottom: 70px;
	}

	.feature-provide:after {
		left: 140px;
		bottom: 120px;
	}

	.feature-provide-title {
		font-size: 40px;
		margin-bottom: 50px;
	}

	.feature-provide-items {
		gap: 35px;
	}

	.feature-problem-item,
	.feature-provide-item {
		border-radius: 25px;
		padding: 35px;
	}

	.feature-provide-item-title {
		font-size: 27px;
	}

	.feature-problem-item-image,
	.feature-provide-item-image {
		height: 110px;
		margin-top: 35px;
		margin-bottom: 20px;
	}

	.feature-problem-item-text,
	.feature-provide-item-text {
		font-size: 20px;
	}

	.feature-adoption-flow-title {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.feature-adoption-flow-subtitle {
		font-size: 20px;
		margin-bottom: 80px;
	}

	.feature-adoption-flow-chart._chart1 {
		margin-bottom: 40px;
	}

	.feature-adoption-flow-chart-title {
		margin-bottom: 30px;
	}

	.feature-adoption-flow-chart-title h3 {
		height: 50px;
		font-size: 20px;
		margin-right: 15px;
		width: 315px;
	}

	.feature-adoption-flow-chart-title img {
		margin-right: 5px;
		width: 38px;
	}

	.feature-adoption-flow-chart-title span {
		font-size: 20px;
	}

	.feature-adoption-flow-chart-items {
		gap: 20px 0;
	}

	.feature-adoption-flow-chart-items:not(:last-child) {
		margin-bottom: 20px;
	}

	.feature-adoption-flow-chart-item {
		height: 94px;
	}

	.feature-adoption-flow-chart-items-spacer {
		width: calc(100% - 720px);
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.feature {
		background-position-y: calc(100vw * -80 / 1920);
		padding-top: calc(100vw * 80 / 1920);
		padding-bottom: calc(100vw * 80 / 1920);
	}

	.feature-problem {
		margin-bottom: calc(100vw * 75 / 1920);
	}

	.feature-problem-items {
		gap: calc(100vw * 52 / 1920);
	}

	.feature-solution {
		margin-bottom: calc(100vw * 150 / 1920);
	}

	.feature-solution-title {
		font-size: calc(100vw * 30 / 1920);
		margin-bottom: calc(100vw * 25 / 1920);
	}

	.feature-solution-subtitle {
		font-size: calc(100vw * 20 / 1920);
	}

	.feature-spec {
		margin-bottom: calc(100vw * 50 / 1920);
	}

	.feature-spec-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 50 / 1920);
	}

	.feature-spec-subtitle {
		font-size: calc(100vw * 20 / 1920);
	}

	.feature-provide {
		padding-top: calc(100vw * 70 / 1920);
		margin-bottom: calc(100vw * 70 / 1920);
	}

	.feature-provide:after {
		left: calc(100vw * 140 / 1920);
		bottom: calc(100vw * 120 / 1920);
	}

	.feature-provide-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 50 / 1920);
	}

	.feature-provide-items {
		gap: calc(100vw * 35 / 1920);
	}

	.feature-problem-item,
	.feature-provide-item {
		border-radius: calc(100vw * 25 / 1920);
		padding: calc(100vw * 35 / 1920);
	}

	.feature-provide-item-title {
		font-size: calc(100vw * 27 / 1920);
	}

	.feature-problem-item-image,
	.feature-provide-item-image {
		height: calc(100vw * 110 / 1920);
		margin-top: calc(100vw * 35 / 1920);
		margin-bottom: calc(100vw * 20 / 1920);
	}

	.feature-problem-item-text,
	.feature-provide-item-text {
		font-size: calc(100vw * 20 / 1920);
	}

	.feature-adoption-flow-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 40 / 1920);
	}

	.feature-adoption-flow-subtitle {
		font-size: calc(100vw * 20 / 1920);
		margin-bottom: calc(100vw * 80 / 1920);
	}

	.feature-adoption-flow-chart._chart1 {
		margin-bottom: calc(100vw * 40 / 1920);
	}

	.feature-adoption-flow-chart-title {
		margin-bottom: calc(100vw * 30 / 1920);
	}

	.feature-adoption-flow-chart-title h3 {
		height: calc(100vw * 50 / 1920);
		font-size: calc(100vw * 20 / 1920);
		margin-right: calc(100vw * 15 / 1920);
		width: calc(100vw * 315 / 1920);
	}

	.feature-adoption-flow-chart-title img {
		margin-right: calc(100vw * 5 / 1920);
		width: calc(100vw * 38 / 1920);
	}

	.feature-adoption-flow-chart-title span {
		font-size: calc(100vw * 20 / 1920);
	}

	.feature-adoption-flow-chart-items:not(:last-child) {
		margin-bottom: calc(100vw * 20 / 1920);
	}

	.feature-adoption-flow-chart-items {
		gap: calc(100vw * 20 / 1920) 0;
	}

	.feature-adoption-flow-chart-item {
		height: calc(100vw * 94 / 1920);
	}

	.feature-adoption-flow-chart-items-spacer {
		width: calc(100% - 100vw * 720 / 1920);
	}
}

@media (min-width: 768px) {
	.feature {
		background-image: url(/wp-content/themes/waocon/assets/img/subsidy-lp/bg_feature_adoption_charts_pc.svg);
	}

	.feature-problem-item,
	.feature-provide-item {
		width: calc(100% / 3);
	}
}

@media (max-width: 767px) {
	.feature {
		background-image: url(/wp-content/themes/waocon/assets/img/subsidy-lp/bg_feature_adoption_charts_sp.svg);
		background-position-y: calc(100vw * 560 / 750);
		background-size: 109%;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.feature-problem {
		margin-bottom: 35px;
	}

	.feature-problem-items {
		gap: 15px;
	}

	.feature-problem-item {
		width: calc(100% / 3);
	}

	.feature-solution {
		margin-bottom: calc(100vw * 100 / 750);
	}

	.feature-solution-title {
		line-height: 2;
		font-size: calc(100vw * 30 / 750);
		margin-bottom: calc(100vw * 30 / 750);
	}

	.feature-solution-subtitle {
		font-size: calc(100vw * 20 / 750);
	}

	.feature-spec {
		margin-bottom: calc(100vw * 60 / 750);
	}

	.feature-spec-title {
		line-height: 2;
		font-size: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 40 / 750);
	}

	.feature-spec-subtitle {
		font-size: calc(100vw * 21 / 750);
	}

	.feature-provide {
		padding-top: 35px;
		margin-bottom: 35px;
	}

	.feature-provide:after {
		left: 0;
		bottom: 60px;
		border-radius: 0 9999px 9999px 0;
		height: calc(100vw * 320 / 750);
		width: calc(100vw * 720 / 750);
	}

	.feature-provide-title {
		line-height: 2;
		font-size: calc(100vw * 40 / 750);
		margin-bottom: 25px;
	}

	.feature-provide-items {
		flex-direction: column;
		gap: calc(100vw * 35 / 750);
	}

	.feature-problem-item,
	.feature-provide-item {
		border-radius: 15px;
		padding: calc(100vw * 30 / 750);
	}

	.feature-provide-item {
	}

	.feature-provide-item-title {
		font-size: calc(100vw * 27 / 750);
	}

	.feature-problem-item-image {
		height: calc(100vw * 80 / 750);
		margin-top: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 30 / 750);
	}

	.feature-provide-item-image {
		height: calc(100vw * 110 / 750);
		margin-top: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 30 / 750);
	}

	.feature-problem-item-text {
		font-size: calc(100vw * 20 / 750);
		font-weight: 500;
	}

	.feature-provide-item-text {
		font-size: calc(100vw * 25 / 750);
	}

	.feature-adoption-flow-title {
		font-size: calc(100vw * 39 / 750);
		margin-bottom: calc(100vw * 45 / 750);
	}

	.feature-adoption-flow-subtitle {
		font-size: calc(100vw * 20 / 750);
		margin-bottom: calc(100vw * 50 / 750);
	}

	.feature-adoption-flow-chart._chart1 {
		margin-bottom: calc(100vw * 65 / 750);
	}

	.feature-adoption-flow-chart-title {
		margin-bottom: 15px;
	}

	.feature-adoption-flow-chart-title h3 {
		height: calc(100vw * 50 / 750);
		font-size: calc(100vw * 20 / 750);
		margin-right: calc(100vw * 15 / 750);
		margin-bottom: -3px;
		width: calc(100vw * 315 / 750);
	}

	.feature-adoption-flow-chart-title img {
		margin-right: 5px;
		width: calc(100vw * 40 / 750);
	}

	.feature-adoption-flow-chart-title span {
		font-size: calc(100vw * 20 / 750);
	}

	.feature-adoption-flow-chart-items:not(:last-child) {
		margin-bottom: 10px;
	}

	.feature-adoption-flow-chart-items {
		flex-wrap: wrap;
		gap: 10px 0;
	}

	.feature-adoption-flow-chart-item {
		height: calc(100vw * 95 / 750);
	}

	.feature-adoption-flow-chart._chart1 .feature-adoption-flow-chart-item._step5 {
		margin-left: calc(100vw * 110 / 750);
	}

	.feature-adoption-flow-chart._chart1 .feature-adoption-flow-chart-item._step8 {
		margin-left: calc(100vw * 140 / 750);
	}

	.feature-adoption-flow-chart._chart2 .feature-adoption-flow-chart-item._step4 {
		margin-left: calc(100vw * 50 / 750);
	}
}
/* Feature End */

/* Comparison Begin */
.comparison {
	box-shadow: 0 0 7px var(--beige-dark);
}

.comparison-table {
	border-collapse: collapse;
}

.comparison-th {
}

.comparison-td {
	margin: 0;
	padding: 0;
}

.comparison-head {
	border-radius: 9999px 0 0 9999px;
}

.comparison-head-icon {
	aspect-ratio: 1/1;
	background-color: white;
	border-radius: 100%;
}

.comparison-td-note:before,
.comparison-td-note:after,
.comparison-td-text._notes:before,
.comparison-td-text._notes:after {
	background-color: var(--grey);
	content: "";
}

.comparison-td-note:before,
.comparison-td-note:after {
	position: absolute;
	top: -.5em;
	bottom: 50%;
	width: 2px;
}

.comparison-td-note:before {
	left: 0;
}

.comparison-td-note:after {
	right: 0;
}

.comparison-td-text._notes:before,
.comparison-td-text._notes:after {
	flex-grow: 1;
	height: 2px;
}

@media (min-width: 1921px) {
	.comparison-container {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.comparison-title {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.comparison-subtitle {
		font-size: 20px;
		margin-bottom: 60px;
	}

	.comparison-th {
		height: 60px;
	}

	.comparison-td {
		height: 95px;
	}

	.comparison-td:not(.comparison-td-head) {
		width: calc((100% - 310px) / 4);
	}

	.comparison-tr:not(:last-child) {
		border-bottom: 20px solid transparent;
	}

	.comparison-td:not(:last-child) {
		border-right: 7px solid transparent;
	}

	.comparison-th {
		font-size: 24px;
	}

	.comparison-td {
		font-size: 20px;
	}

	.comparison-td-head {
		width: 310px;
	}

	.comparison-head {
		padding: 15px;
	}

	.comparison-head-icon {
		width: 65px;
	}

	.comparison-head-icon-image {
		width: 43px;
	}

	.comparison-head-text {
		font-size: 24px;
	}

	.comparison-circle-svg {
		width: 35px;
	}

	.comparison-cross-svg {
		width: 24px;
	}

	.comparison-td-text._next-line {
		margin-top: 5px;
	}

	.comparison-td-text._main {
		font-size: 24px;
	}

	.comparison-td-text-big {
		font-size: 40px;
	}

	.comparison-td-text._notes {
		gap: 30px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.comparison-container {
		padding-top: calc(100vw * 70 / 1920);
		padding-bottom: calc(100vw * 70 / 1920);
	}

	.comparison-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 40 / 1920);
	}

	.comparison-subtitle {
		font-size: calc(100vw * 20 / 1920);
		margin-bottom: calc(100vw * 60 / 1920);
	}

	.comparison-th {
		height: calc(100vw * 60 / 1920);
	}

	.comparison-td {
		height: calc(100vw * 95 / 1920);
	}

	.comparison-td:not(.comparison-td-head) {
		width: calc((100% - 100vw * 95 / 1920) / 4);
	}

	.comparison-tr:not(:last-child) {
		border-bottom: calc(100vw * 20 / 1920) solid transparent;
	}

	.comparison-td:not(:last-child) {
		border-right: calc(100vw * 7 / 1920) solid transparent;
	}

	.comparison-th {
		font-size: calc(100vw * 24 / 1920);
	}

	.comparison-td {
		font-size: calc(100vw * 20 / 1920);
	}

	.comparison-td-head {
		width: calc(100vw * 310 / 1920);
	}

	.comparison-head {
		padding: calc(100vw * 15 / 1920);
	}

	.comparison-head-icon {
		width: calc(100vw * 65 / 1920);
	}

	.comparison-head-icon-image {
		width: calc(100vw * 43 / 1920);
	}

	.comparison-head-text {
		font-size: calc(100vw * 24 / 1920);
	}

	.comparison-circle-svg {
		width: calc(100vw * 35 / 1920);
	}

	.comparison-cross-svg {
		width: calc(100vw * 24 / 1920);
	}

	.comparison-td-text._next-line {
		margin-top: calc(100vw * 5 / 1920);
	}

	.comparison-td-text._main {
		font-size: calc(100vw * 24 / 1920);
	}

	.comparison-td-text-big {
		font-size: calc(100vw * 40 / 1920);
	}

	.comparison-td-text._notes {
		gap: calc(100vw * 30 / 1920);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.comparison-container {
		padding: calc(100vw * 55 / 750) calc(100vw * 35 / 750);
	}

	.comparison-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.comparison-subtitle {
		font-size: calc(100vw * 20 / 750);
		margin-bottom: 30px;
	}

	.comparison-table-wrapper {
		overflow-x: auto;
		width: 100%;
	}

	.comparison-table {
		flex-shrink: 0;
		width: auto;
	}

	.comparison-th {
		height: calc(100vw * 40 / 750);
	}

	.comparison-td {
		height: calc(100vw * 95 / 750);
	}

	.comparison-td:not(.comparison-td-head) {
		width: calc((100% - 160px) / 4);
	}

	.comparison-tr:not(:last-child) {
		border-bottom: 10px solid transparent;
	}

	.comparison-td:not(:last-child) {
		border-right: 4px solid transparent;
	}

	.comparison-td-text-wrapper {
		width: calc(100vw * 216 / 750);
	}

	.comparison-th,
	.comparison-td {
		font-size: calc(100vw * 20 / 750);
	}

	.comparison-head {
		width: calc(100vw * 340 / 750);
	}

	.comparison-head {
		padding: calc(100vw * 15 / 750);
	}

	.comparison-head-icon {
		width: calc(100vw * 65 / 750);
	}

	.comparison-head-icon-image {
		width: 24px;
	}

	.comparison-head-text {
		font-size: calc(100vw * 24 / 750);
	}

	.comparison-circle-svg,
	.comparison-cross-svg {
		width: calc(100vw * 24 / 750);
	}

	.comparison-td-text._next-line {
		margin-top: 5px;
	}

	.comparison-td-text._main {
		font-size: calc(100vw * 24 / 750);
	}

	.comparison-td-text-big {
		font-size: calc(100vw * 40 / 750);
	}

	.comparison-td-text._notes {
		gap: 15px;
	}
}
/* Comparison End */

/* Adoption Begin */
.adoption-item {
	box-shadow: 0 0 1em var(--beige-dark);
}

.adoption-item-image {
	object-fit: cover;
	object-position: top center;
	width: 100%;
}

@media (min-width: 1921px) {
	.adoption-container {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.adoption-title {
		font-size: 40px;
		margin-bottom: 80px;
	}

	.adoption-items {
		gap: 35px;
	}

	.adoption-item {
		border-radius: 25px;
		padding: 30px;
		width: calc((100% - 70px) / 3);
	}

	.adoption-item-title {
		font-size: 27px;
		height: 75px;
	}

	.adoption-item-image {
		height: 180px;
		margin-bottom: 20px;
	}

	.adoption-item-text {
		font-size: 20px;
	}

	.adoption-extra-title {
		font-size: 30px;
		margin-top: 70px;
		margin-bottom: 70px;
	}

	.adoption-extra-main {
		gap: 80px;
	}

	.adoption-extra-image._image1 {
		width: 490px;
	}

	.adoption-extra-image._image2 {
		width: 450px;
	}

	.adoption-extra-text {
		font-size: 20px;
		margin-top: 80px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.adoption-container {
		padding-top: calc(100vw * 80 / 1920);
		padding-bottom: calc(100vw * 80 / 1920);
	}

	.adoption-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 80 / 1920);
	}

	.adoption-items {
		gap: calc(100vw * 35 / 1920);
	}

	.adoption-item {
		border-radius: calc(100vw * 25 / 1920);
		padding: calc(100vw * 30 / 1920);
		width: calc((100% - 100vw * 70 / 1920) / 3);
	}

	.adoption-item-title {
		font-size: calc(100vw * 27 / 1920);
		height: calc(100vw * 75 / 1920);
	}

	.adoption-item-image {
		height: calc(100vw * 180 / 1920);
		margin-bottom: calc(100vw * 20 / 1920);
	}

	.adoption-item-text {
		font-size: calc(100vw * 20 / 1920);
	}

	.adoption-extra-title {
		font-size: calc(100vw * 30 / 1920);
		margin-top: calc(100vw * 70 / 1920);
		margin-bottom: calc(100vw * 70 / 1920);
	}

	.adoption-extra-main {
		gap: calc(100vw * 80 / 1920);
	}

	.adoption-extra-image._image1 {
		width: calc(100vw * 490 / 1920);
	}

	.adoption-extra-image._image2 {
		width: calc(100vw * 450 / 1920);
	}

	.adoption-extra-text {
		font-size: calc(100vw * 20 / 1920);
		margin-top: calc(100vw * 80 / 1920);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.adoption-container {
		padding: calc(100vw * 55 / 750) calc(100vw * 35 / 750);
	}

	.adoption-title {
		font-size: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 55 / 750);
	}

	.adoption-items {
		flex-direction: column;
		gap: calc(100vw * 35 / 750);
	}

	.adoption-item {
		border-radius: calc(100vw * 35 / 750);
		padding: calc(100vw * 35 / 750);
		width: 100%;
	}

	.adoption-item-title {
		font-size: calc(100vw * 27 / 750);
		margin-bottom: calc(100vw * 22 / 750);
	}

	.adoption-item-image {
		height: calc(100vw * 240 / 750);
		margin-bottom: calc(100vw * 35 / 750);
		width: 100%;
	}

	.adoption-item-text {
		font-size: calc(100vw * 20 / 750);
	}

	.adoption-extra-title {
		font-size: calc(100vw * 30 / 750);
		line-height: 1.5;
		margin-top: calc(100vw * 60 / 750);
		margin-bottom: calc(100vw * 60 / 750);
	}

	.adoption-extra-main {
		align-items: center;
		flex-direction: column;
		gap: 40px;
	}

	.adoption-extra-image._image1 {
		width: calc(100vw * 490 / 750);
	}

	.adoption-extra-image._image2 {
		width: calc(100vw * 630 / 750);
	}

	.adoption-extra-text {
		font-size: calc(100vw * 20 / 750);
		margin-top: calc(100vw * 40 / 750);
	}
}
/* Adoption End */

/* Flow Begin */
.flow-item-number {
	aspect-ratio: 1/1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

@media (min-width: 1921px) {
	.flow-container {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.flow-title {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.flow-items {
		gap: 50px;
		max-width: 1090px;
	}

	.flow-item-number {
		font-size: 33px;
		margin-bottom: 30px;
		width: 70px;
	}

	.flow-item-text {
		font-size: 20px;
	}

	.flow-extra {
		font-size: 20px;
		margin-top: 30px;
	}

	.flow-extra-title,
	.flow-extra-text {
		width: 710px;
	}

	.flow-extra-title {
		height: 35px;
		margin-bottom: 30px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.flow-container {
		padding-top: calc(100vw * 70 / 1920);
		padding-bottom: calc(100vw * 70 / 1920);
	}

	.flow-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 40 / 1920);
	}

	.flow-items {
		gap: calc(100vw * 50 / 1920);
		max-width: calc(100vw * 1090 / 1920);
	}

	.flow-item-number {
		font-size: calc(100vw * 33 / 1920);
		margin-bottom: calc(100vw * 30 / 1920);
		width: calc(100vw * 70 / 1920);
	}

	.flow-item-text {
		font-size: calc(100vw * 20 / 1920);
	}

	.flow-extra {
		font-size: calc(100vw * 20 / 1920);
		margin-top: calc(100vw * 30 / 1920);
	}

	.flow-extra-title,
	.flow-extra-text {
		width: calc(100vw * 710 / 1920);
	}

	.flow-extra-title {
		height: calc(100vw * 35 / 1920);
		margin-bottom: calc(100vw * 30 / 1920);
	}
}

@media (min-width: 768px) {
	.flow-item {
		width: calc(100% / 5);
	}
}

@media (max-width: 767px) {
	.flow-container {
		padding: calc(100vw * 55 / 750) calc(100vw * 35 / 750);
	}

	.flow-title {
		font-size: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 50 / 750);
	}

	.flow-items {
		flex-wrap: wrap;
		gap: calc(100vw * 60 / 750);
		justify-content: center;
	}

	.flow-item {
		width: calc((100% - 100vw * 60 / 750) / 4);
	}

	.flow-item._item1 {
		margin-left: calc(100vw * 50 / 750);
	}

	.flow-item._item2 {
		margin-right: calc(100vw * 50 / 750);
	}

	.flow-item-number {
		font-size: calc(100vw * 33 / 750);
		margin-bottom: calc(100vw * 30 / 750);
		width: calc(100vw * 70 / 750);
	}

	.flow-item-text {
		font-size: calc(100vw * 20 / 750);
	}

	.flow-extra {
		font-size: 14px;
		margin-top: 30px;
	}

	.flow-extra-title,
	.flow-extra-text {
		width: 100%;
	}

	.flow-extra-title {
		font-size: calc(100vw * 24 / 750);
		height: calc(100vw * 53 / 750);
		margin-bottom: calc(100vw * 20 / 750);
	}

	.flow-extra-text {
		font-size: calc(100vw * 20 / 750);
	}
}
/* Flow End */

/* Price Begin */
.price {
	background-color: var(--grey-light);
	box-shadow: 0 0 15px var(--beige-dark);
}

.price-left-item {
	border-radius: 9999px;
}

.price-right-items {
	grid-template-columns: repeat(2, 1fr);
}

.price-right-item._row1 {
	background-color: #B9E2FA;
}

.price-right-item._row3 {
	background-color: #1D8AF9;
}

.price-note {
}

@media (min-width: 1921px) {
	.price-container {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.price-title {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.price-main {
		margin-bottom: 50px;
	}

	.price-main-container {
		gap: 80px;
	}

	.price-left {
		width: 420px;
	}

	.price-left-items {
		gap: 30px;
		padding-top: 80px;
	}

	.price-left-item {
		font-size: 24px;
		height: 80px;
	}

	.price-right-heading {
		gap: 30px;
	}

	.price-right-heading-item {
		font-size: 27px;
		height: 80px;
	}

	.price-right-items {
		gap: 30px;
		grid-template-rows: 80px 300px 300px;
	}

	.price-right-item {
		font-size: 24px;
	}

	.price-note {
		font-size: 20px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.price-container {
		padding-top: calc(100vw * 70 / 1920);
		padding-bottom: calc(100vw * 70 / 1920);
	}

	.price-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 40 / 1920);
	}

	.price-main {
		margin-bottom: calc(100vw * 50 / 1920);
	}

	.price-main-container {
		gap: calc(100vw * 80 / 1920);
	}

	.price-left {
		width: calc(100vw * 420 / 1920);
	}

	.price-left-items {
		gap: calc(100vw * 30 / 1920);
		padding-top: calc(100vw * 80 / 1920);
	}

	.price-left-item {
		font-size: calc(100vw * 24 / 1920);
		height: calc(100vw * 80 / 1920);
	}

	.price-right-heading {
		gap: calc(100vw * 30 / 1920);
	}

	.price-right-heading-item {
		font-size: calc(100vw * 27 / 1920);
		height: calc(100vw * 80 / 1920);
	}

	.price-right-items {
		gap: calc(100vw * 30 / 1920);
		grid-template-rows: calc(100vw * 80 / 1920) calc(100vw * 300 / 1920) calc(100vw * 300 / 1920);
	}

	.price-right-item {
		font-size: calc(100vw * 24 / 1920);
	}

	.price-note {
		font-size: calc(100vw * 20 / 1920);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.price-container {
		padding: calc(100vw * 55 / 750) calc(100vw * 35 / 750);
	}

	.price-title {
		font-size: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 35 / 750);
	}

	.price-main {
		margin-bottom: calc(100vw * 50 / 750);
		overflow-x: auto;
	}

	.price-main-container {
		gap: calc(100vw * 60 / 750);
	}

	.price-left-items {
		gap: calc(100vw * 30 / 750);
		padding-top: calc(100vw * 80 / 750);
	}

	.price-left-item {
		font-size: calc(100vw * 24 / 750);
		height: calc(100vw * 80 / 750);
		white-space: nowrap;
		width: calc(100vw * 420 / 750);
	}

	.price-right-heading {
		gap: calc(100vw * 30 / 750);
	}

	.price-right-heading-item {
		font-size: calc(100vw * 27 / 750);
		height: calc(100vw * 80 / 750);
	}

	.price-right-items {
		gap: calc(100vw * 30 / 750);
		grid-template-rows: calc(100vw * 80 / 750) calc(100vw * 300 / 750) calc(100vw * 300 / 750);
	}

	.price-right-item {
		font-size: calc(100vw * 24 / 750);
	}

	.price-note {
		font-size: calc(100vw * 20 / 750);
	}
}
/* Price End */

/* FAQ Begin */
.faq-item {
	--max-height: 0;
}

.faq-item-title-text-q {
	margin-top: -.2em;
	margin-right: .5em;
}

.faq-item-plus-minor {
	position: relative;
	margin-left: .5em;
}

.faq-item-plus-minor:before,
.faq-item-plus-minor:after {
	position: absolute;
}

.faq-item-plus-minor .plus-minor-svg-line {
	fill: var(--blue);
}

.checkbox-faq-item:checked + .checkbox-faq-item-label .plus-minor-svg-line._horizontal {
	transform: rotateZ(360deg);
}

.checkbox-faq-item:checked + .checkbox-faq-item-label .plus-minor-svg-line._vertical {
	transform: rotateZ(90deg);
}

.faq-item-content-wrapper {
	overflow: hidden;
	transition: max-height .5s;
}

.checkbox-faq-item:not(:checked) ~ .faq-item-content-wrapper {
	max-height: 0;
}

.checkbox-faq-item:checked ~ .faq-item-content-wrapper {
	max-height: var(--max-height);
}

.faq-open-link {
	text-underline-offset: .3em;
}

@media (min-width: 1921px) {
	.faq-container {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.faq-title {
		font-size: 40px;
		margin-bottom: 70px;
	}

	.faq-items {
		gap: 40px;
	}

	.checkbox-faq-item-label {
		padding: 25px 30px;
	}

	.faq-item-title-text {
		font-size: 24px;
	}

	.faq-item-title-text-q {
		font-size: 30px;
	}

	.faq-item-plus-minor {
		height: 28px;
		width: 28px;
	}

	.faq-item-content {
		font-size: 20px;
		padding: 40px 85px 0;
	}

	.faq-item:last-child .faq-item-content {
		padding-bottom: 40px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.faq-container {
		padding-top: calc(100vw * 70 / 1920);
		padding-bottom: calc(100vw * 70 / 1920);
	}

	.faq-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 70 / 1920);
	}

	.faq-items {
		gap: calc(100vw * 40 / 1920);
	}

	.checkbox-faq-item-label {
		padding: calc(100vw * 25 / 1920) calc(100vw * 30 / 1920);
	}

	.faq-item-title-text {
		font-size: calc(100vw * 24 / 1920);
	}

	.faq-item-title-text-q {
		font-size: calc(100vw * 30 / 1920);
	}

	.faq-item-plus-minor {
		height: calc(100vw * 28 / 1920);
		width: calc(100vw * 28 / 1920);
	}

	.faq-item-content {
		font-size: calc(100vw * 20 / 1920);
		padding: calc(100vw * 40 / 1920) calc(100vw * 85 / 1920) 0;
	}

	.faq-item:last-child .faq-item-content {
		padding-bottom: calc(100vw * 40 / 1920);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.faq-container {
		padding: calc(100vw * 55 / 750) calc(100vw * 35 / 750);
	}

	.faq-title {
		font-size: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 35 / 750);
	}

	.faq-items {
		gap: calc(100vw * 40 / 750);
	}

	.checkbox-faq-item-label {
		padding: calc(100vw * 25 / 750);
	}

	.faq-item-title-text {
		font-size: calc(100vw * 24 / 750);
	}

	.faq-item-title-text-q {
		font-size: calc(100vw * 30 / 750);
	}

	.faq-item-plus-minor {
		flex-shrink: 0;
		height: calc(100vw * 28 / 750);
		width: calc(100vw * 28 / 750);
	}

	.faq-item-content {
		font-size: calc(100vw * 20 / 750);
		padding-top: calc(100vw * 40 / 750);
	}

	.faq-item:last-child .faq-item-content {
		padding-bottom: calc(100vw * 40 / 750);
	}
}
/* FAQ End */

/* Contact Begin */
.contact {
	background-color: var(--grey-lighter);
	box-shadow: 0 0 8px var(--beige-dark);
}

.contact input[type=email],
.contact input[type=submit],
.contact input[type=tel],
.contact input[type=text],
.contact textarea {
	appearance: none;
	-webkit-appearance: none;
	background-color: transparent;
	outline: none;
	resize: none;
}

.contact input[type=email],
.contact input[type=tel],
.contact input[type=text],
.contact textarea {
	border: 1px solid #B2B2B2;
	box-shadow: inset 0 10px 6px #EDEDED;
	margin: 0;
	width: 100%;
}

.contact-left,
.contact-right-item {
	background-color: white;
}

.contact-form-wrapper form {
	align-items: stretch;
	display: flex;
	flex-direction: column;
}

.contact-form-label {
	flex-shrink: 0;
}

.contact-form-values {
	flex-grow: 1;
}

.contact-form-submit {
	background: rgb(29,138,249);
	background: radial-gradient(circle at 0% 0%, rgba(185,226,250,1) 0%, rgba(41,170,225,1) 60%, rgba(29,138,249,1) 100%);
	border: none;
	border-radius: 9999px;
	color: white;
}

.contact-form-submit:not(disabled) {
	cursor: pointer;
}

.contact .wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
}

.contact .wpcf7-not-valid-tip,
.contact .wpcf7-validation-errors {
	color: darkred;
}

.contact .wpcf7-not-valid-tip {
	font-size: .9em;
	margin-top: .5em;
}

.contact .screen-reader-response {
	display: none;
}

.contact .wpcf7-response-output {
	margin: 0;
	text-align: center;
}

.contact .wpcf7-form-control-wrap.agreed {
	cursor: pointer;
	margin-right: .5em;
}

.contact .wpcf7-form-control-wrap.agreed .wpcf7-list-item {
	margin-left: 0;
}

.contact .wpcf7-form-control-wrap.agreed input {
	cursor: pointer;
}

.contact .contact-form-row._acceptance {
	flex-direction: row !important;
}

.contact .acceptance {
	position: relative;
	border: 1px solid #B2B2B2;
	border-radius: 100%;
	height: 20px;
	width: 20px;
}

.contact .acceptance:before {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #B2B2B2;
	border-radius: 100%;
	content: "";
	height: 50%;
	transform: translate(-50%,-50%);
	transition: background-color .2s;
	width: 50%;
}

.contact .acceptance:not(._checked):before {
	background-color: transparent;
}

.contact .wpcf7-form-control.wpcf7-acceptance {
	display: none;
}

@media (min-width: 1921px) {
	.contact {
		padding-top: 70px;
		padding-bottom: 100px;
	}

	.contact input[type=email],
	.contact input[type=tel],
	.contact input[type=text],
	.contact textarea {
		padding-left: 15px;
		padding-right: 15px;
	}

	.contact input[type=email],
	.contact input[type=tel],
	.contact input[type=text] {
		height: 65px;
	}

	.contact textarea {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.contact-form-submit {
		font-size: 27px;
		height: 50px;
		width: 165px;
	}

	.contact-title {
		font-size: 40px;
		margin-bottom: 70px;
	}

	.contact-form-wrapper {
		gap: 55px;
	}

	.contact-form-wrapper form {
		gap: 40px;
	}

	.contact-left {
		border-radius: 25px;
		padding: 40px 50px;
	}

	.contact-form-label {
		font-size: 24px;
		width: 230px;
	}

	.contact-right {
		width: 365px;
	}

	.contact-right-items {
		gap: 15px;
	}

	.contact-right-item {
		border-radius: 25px;
		gap: 25px;
		padding: 35px 25px;
	}

	.contact-right-item-row {
		font-size: 24px;
		gap: 5px;
	}

	.contact-right-item-icon {
		width: 36px;
	}

	.contact-right-item-link {
		font-size: 29px;
	}
}

@media (max-width: 1920px) and (min-width: 768px) {
	.contact {
		padding-top: calc(100vw * 70 / 1920);
		padding-bottom: calc(100vw * 100 / 1920);
	}

	.contact input[type=email],
	.contact input[type=tel],
	.contact input[type=text],
	.contact textarea {
		padding-left: calc(100vw * 15 / 1920);
		padding-right: calc(100vw * 15 / 1920);
	}

	.contact input[type=email],
	.contact input[type=tel],
	.contact input[type=text] {
		height: calc(100vw * 65 / 1920);
	}

	.contact textarea {
		padding-top: calc(100vw * 15 / 1920);
		padding-bottom: calc(100vw * 15 / 1920);
	}

	.contact-form-submit {
		font-size: calc(100vw * 27 / 1920);
		height: calc(100vw * 50 / 1920);
		width: calc(100vw * 165 / 1920);
	}

	.contact-title {
		font-size: calc(100vw * 40 / 1920);
		margin-bottom: calc(100vw * 70 / 1920);
	}

	.contact-form-wrapper {
		gap: calc(100vw * 55 / 1920);
	}

	.contact-form-wrapper form {
		gap: calc(100vw * 40 / 1920);
	}

	.contact-left {
		border-radius: calc(100vw * 25 / 1920);
		padding: calc(100vw * 40 / 1920) calc(100vw * 50 / 1920);
	}

	.contact-form-label {
		font-size: calc(100vw * 24 / 1920);
		width: calc(100vw * 230 / 1920);
	}

	.contact-right {
		width: calc(100vw * 365 / 1920);
	}

	.contact-right-items {
		gap: calc(100vw * 15 / 1920);
	}

	.contact-right-item {
		border-radius: calc(100vw * 25 / 1920);
		gap: calc(100vw * 25 / 1920);
		padding: calc(100vw * 35 / 1920) calc(100vw * 25 / 1920);
	}

	.contact-right-item-row {
		font-size: calc(100vw * 24 / 1920);
		gap: calc(100vw * 5 / 1920);
	}

	.contact-right-item-icon {
		width: calc(100vw * 36 / 1920);
	}

	.contact-right-item-link {
		font-size: calc(100vw * 29 / 1920);
	}
}
@media (min-width: 768px) {
}

@media (max-width: 767px) {
	.contact {
		padding-top: calc(100vw * 55 / 750);
	}

	.contact input[type=email],
	.contact input[type=tel],
	.contact input[type=text],
	.contact textarea {
		padding-left: calc(100vw * 20 / 750);
		padding-right: calc(100vw * 20 / 750);
	}

	.contact input[type=email],
	.contact input[type=tel],
	.contact input[type=text] {
		height: calc(100vw * 65 / 750);
	}

	.contact textarea {
		padding-top: calc(100vw * 20 / 750);
		padding-bottom: calc(100vw * 20 / 750);
	}

	.contact-form-submit {
		font-size: calc(100vw * 27 / 750);
		height: calc(100vw * 75 / 750);
		width: calc(100vw * 265 / 750);
	}

	.contact-title {
		font-size: calc(100vw * 40 / 750);
		margin-bottom: calc(100vw * 35 / 750);
	}

	.contact-form-wrapper {
		align-items: stretch;
		flex-direction: column;
		gap: calc(100vw * 40 / 750);
	}

	.contact-form-wrapper form {
		gap: calc(100vw * 30 / 750);
	}

	.contact-left {
		border-radius: calc(100vw * 23 / 750);
		padding: calc(100vw * 23 / 750);
	}

	.contact-form-row {
		flex-direction: column;
	}

	.contact-form-label {
		font-size: calc(100vw * 24 / 750);
		margin-bottom: calc(100vw * 10 / 750);
	}

	.contact-form-values {
		width: 100%;
	}

	.contact-right-items {
		display: grid;
		gap: calc(100vw * 30 / 750);
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}

	.contact-right-item {
		border-radius: calc(100vw * 23 / 750);
		gap: calc(100vw * 27 / 750);
		padding: calc(100vw * 23 / 750);
	}

	.contact-right-item._line_app {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.contact-right-item._phone {
		grid-column: 2;
		grid-row: 1;
	}

	.contact-right-item._website {
		grid-column: 2;
		grid-row: 2;
	}

	.contact-right-item-row {
		font-size: calc(100vw * 24 / 750);
		gap: calc(100vw * 5 / 750);
	}

	.contact-right-item-icon {
		width: calc(100vw * 36 / 750);
	}

	.contact-right-item-link {
		font-size: calc(100vw * 29 / 750);
	}

	.contact .contact-form-row._acceptance {
		font-size: calc(100vw * 20 / 750);
	}

	.contact .acceptance {
		height: calc(100vw * 27 / 750);
		margin-right: calc(100vw * 15 / 750);
		width: calc(100vw * 27 / 750);
	}
}
/* Contact End */

/* Footer Begin */

.footer {
	/*background-color: var(--blue-light);*/
	background-color: #F5F5F5;
	padding-top: 1em;
	padding-bottom: 1em;
}

@media (min-width: 1921px) {
}

@media (max-width: 1920px) and (min-width: 768px) {
}

@media (min-width: 768px) {
	.footer-copyright {
		font-size: .8em;
	}
}

@media (max-width: 767px) {
	.footer {
		padding-top: 2em;
		padding-bottom: 2em;
	}

	.footer-copyright {
		font-size: calc(100vw * 20 / 750);
		/*height: calc(100vw * 140 / 750);*/
	}
}
/* Footer End */
