@charset "UTF-8";


/* -------------------------------------------

header

------------------------------------------- */
header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 3rem 0 3rem;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		padding: 2rem 0;
	}
}

/* ------ h1 ------ */
h1 {
	font-family: var(--font-serif);
	line-height: 1;
	font-size: 2.8rem;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	h1 {
		font-size: 2.4rem;
	}
}

/* ------ ul ------ */
header ul {
	display: flex;
}
header ul li:not(:last-child) {
	margin-right: 1rem;
}
header ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border-radius: 10rem;
	height: 4.8rem;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
	width: 24rem;
	padding-bottom: 0.15rem;
}
header ul li:nth-child(1) a {
	background: var(--red);
} 
header ul li:nth-child(2) a {
	background: var(--pink);
} 
header ul li:nth-child(3) a {
	background: var(--green);
} 
header ul li img {
	margin-right: 1rem;
}
header ul li:nth-child(1) img {
	width: 2.5rem;
}
header ul li:nth-child(2) img {
	width: 3rem;
}
header ul li:nth-child(3) img {
	width: 4rem;
	margin-right: 0.5rem;
}



/* -------------------------------------------

kv

------------------------------------------- */
.kv .wrap {
	padding: 14rem 6rem 4rem 15rem;
	background: url(../img/kv-bg.jpg) no-repeat right bottom / cover;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.kv .wrap > * {
	position: relative;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.kv .wrap {
		padding: 6rem 2rem 4rem 2rem;
		background: url(../img/kv-bg-sp.jpg) no-repeat right -10rem top -12.5rem / cover;
		background-color: #edd3c4;
		display: block;
	}
	.kv > figure {
		margin-top: -4.5rem;
	}
	/* .kv .wrap::before {
		content: "";
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,0.7);
		position: absolute;
		left: 0;
		top: 0;
	} */
}

/* ------ kv-content ------ */
.kv-content {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.kv-content {
		width: 100%;
	}
}
/* h2 */
.kv h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	white-space: nowrap;
}
.kv h2 > span:nth-child(1) {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
}
.kv h2 > span:nth-child(1)::before,
.kv h2 > span:nth-child(1)::after {
	content: "";
	width: 0.2rem;
	height: 3.6rem;
	background: var(--grey);
	margin-top: 0.5rem;
}
.kv h2 > span:nth-child(1)::before {
	transform: rotate(-20deg);
	margin-right: 2rem;
}
.kv h2 > span:nth-child(1)::after {
	transform: rotate(20deg);
	margin-left: 1.2rem;
}
@media screen and (max-width: 768px) {
	.kv .ttl-wrap {
		display: flex;
		justify-content: flex-start;
		margin-top: 3rem;
	}
	.kv h2 {
		text-shadow: 0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff;
	}
	.kv h2 > span:nth-child(1)::before,
	.kv h2 > span:nth-child(1)::after {
		height: 2rem;
	}
	.kv h2 > span:nth-child(1)::before {
		margin-right: 1rem;
	}
	.kv h2 > span:nth-child(1)::after {
		margin-left: 0.4rem;
	}	
}
.kv h2 > span:nth-child(2) {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 3.6rem;
}
.kv h2 > span:nth-child(2) i {
	font-size: 1.6rem;
}
.kv h2 > span:nth-child(2) strong {
	color: var(--red);
	background: linear-gradient(to top, var(--yellow) 40%, transparent 40%);
}
@media screen and (max-width: 768px) {
	.kv h2 > span:nth-child(1) {
		font-size: 1.6rem;
		margin-bottom: 0.5rem;
	}
	.kv h2 > span:nth-child(2) {
		font-size: 3rem;
		align-items: flex-start;
	}
	.kv h2 > span:nth-child(2) i {
		font-size: 1.8rem;
	}
	.kv h2 > span:nth-child(2) strong {
		text-shadow: none;
	}
}
/* div */
.kv-content > div {
	background: #fff;
	width: 90%;
	margin: 2rem auto;
	display: flex;
	align-items: center;
	box-shadow: 0 0 1.2rem rgba(0,0,0,0.15);
	padding: 0.6rem 1.5rem;
	color: var(--red);
	white-space: nowrap;
	line-height: 1;
}
.kv-content > div img {
	width: 7rem;
}
.kv-content > div > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: calc(100% - 7rem);
	padding-left: 0.5rem;
} 
.kv-content > div > span strong {
	font-size: 2.7rem;
	margin-bottom: 0.8rem;
}
.kv-content > div > span i {
	font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
	.kv-content {
		margin-bottom: 2rem;
	}
	.kv-content > div {
		width: 70%;
		margin: 1.5rem 0;
		align-items: flex-start;
	}
	.kv-content > div img {
		width: 5rem;
		margin-top: 1rem;
	}
	.kv-content > div > span {
		width: calc(100% - 5rem);
	} 
	.kv-content > div > span strong {
		font-size: 2.2rem;
		line-height: 1.2;
		margin-bottom: 0.4rem;
	}
	.kv-content > div > span i {
		font-size: 1rem;
		line-height: 1.2;
	}
}
/* ul */
.kv-content ul {
	display: flex;
	justify-content: space-between;
}
.kv-content ul li {
	width: 15rem;
	height: 15rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: linear-gradient(-40deg, rgb(166,0,13), rgb(212,0,17));
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
	font-size: 2rem;
	white-space: nowrap;
}
.kv-content ul li strong {
	color: var(--yellow);
	font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
	.kv-content ul li {
		width: 12rem;
		height: 12rem;
		font-size: 1.4rem;
		line-height: 1.3;
	}
	.kv-content ul li strong {
		font-size: 2.0rem;
	}
}

/* ------ kv-contact ------ */
.kv-contact {
	width: 30%;
}
@media screen and (max-width: 768px) {
	.kv-contact {
		width: 100%;
	}
}
.kv-contact > * {
	background: rgba(255,255,255,0.9);
	box-shadow: 0 0 1.3rem 0.3rem rgba(64,64,64,0.3);
}
/* kv-contact-form */
.kv-contact-form {
	margin-bottom: 2rem;
}
.kv-contact-form > div:nth-of-type(1),
.kv-contact-line > div:nth-of-type(1) {
	background: var(--pink);
	position: relative;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1;
	padding: 0.8rem 0 0.8rem 0;
}
.kv-contact-form > div:nth-of-type(1)::before,
.kv-contact-line > div:nth-of-type(1)::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-top: 1rem solid var(--pink);
	position: absolute;
	left: calc(50% - 1rem);
	bottom: -0.9rem;	
}
.kv-contact-form > div:nth-of-type(1) ul {
	display: flex;
	justify-content: center;
	font-size: 1.6rem;
	color: #ff7787;
	margin-bottom: 0.6rem;
}
.kv-contact-form > div:nth-of-type(1) ul li {
	background: var(--yellow);
	padding: 0.6rem 1rem 0.7rem 1rem
}
.kv-contact-form > div:nth-of-type(1) ul li:nth-child(1) {
	margin-right: 0.5rem;
}
.kv-contact-form > div:nth-of-type(2),
.kv-contact-line > div:nth-of-type(2) {
	padding: 2rem 1rem;
}
.kv-contact-form input[type="text"],
.kv-contact-form input[type="email"] {
	padding: 1.0rem 1.5rem 1rem 1.5rem;
}
.kv-contact-form form > div:not(:last-of-type) {
	margin-bottom: 1.2rem;
}
.kv-contact-form .check {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
}
.kv-contact-form .check span {
	margin-left: 0.6rem;
}

/* kv-contact-line */
.kv-contact-line > div:nth-of-type(1) {
	background: var(--green);
	padding: 1.5rem 0 1.6rem 0;
}
.kv-contact-line > div:nth-of-type(1)::before {
	border-top: 1rem solid var(--green);
}
.kv-contact-line a {
	background: var(--green);
	color: #fff;
	line-height: 1;
	font-size: 1.8rem;
	width: 24rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.4rem;
	box-shadow: 0 0.5rem 0 #009400;
	border-radius: 10rem;
	position: relative;
	transition: all .3s;
}
.kv-contact-line a i {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translate(0,-50%);
	font-size: 1.2rem;
}

/* ------ kv-cv ------ */
.kv-cv {
	background: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 0;
}
@media screen and (max-width: 768px) {
	.kv-cv {
		display: block;
		padding: 2rem 2rem;
	}
}
.kv-cv > div:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-right: solid 0.12rem #fff;
	margin-right: 3rem;
	padding-right: 3rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
	.kv-cv > div:nth-of-type(1) {
		border-right: none;
		margin-right: 0;
		padding-right: 0;
		padding-top: 0;
	}
}
.kv-cv > div:nth-of-type(1) > span {
	position: relative;
	color: #fff;
	font-weight: bold;
	font-size: 2.6rem;
	margin-bottom: 0.3rem;
}
.kv-cv > div:nth-of-type(1) > span img {
	width: 12rem;
	position: absolute;
	left: -4rem;
	top: -3.5rem
}
.kv-cv > div:nth-of-type(1) > ul {
	display: flex;
	justify-content: center;
	font-weight: bold;
}
.kv-cv > div:nth-of-type(1) > ul li {
	background: #fff;
	color: var(--red);
	width: 12rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3.6rem;
	font-size: 1.8rem;
}
.kv-cv > div:nth-of-type(1) > ul li:nth-child(1) {
	margin-right: 0.5rem;
}
/* kv-cv-tel */
.kv-cv-tel {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.kv-cv-tel {
		flex-direction: column;
	}
}
.kv-cv-tel a {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	color: var(--yellow);
	font-weight: bold;
}
.kv-cv-tel a img {
	width: 4.8rem;
	margin-right: 0.5rem;
	margin-top: 0.3rem;
}
.kv-cv-tel a > span {
	line-height: 1;
	font-size: 5.6rem;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.kv-cv-tel a {
		text-decoration: none;
	}
	.kv-cv-tel a img {
		width: 3.6rem;
	}
	.kv-cv-tel a > span {
		line-height: 1;
		font-size: 3.8rem;
	}
	.kv-cv-tel a > span > span {
		text-decoration: underline;
	}
}
.kv-cv-tel a i {
	font-size: 1.3rem;
}
.kv-cv-tel > div:nth-of-type(2) {
	background: #fff;
	width: 8rem;
	height: 8rem;
	color: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 1rem;
	font-weight: bold;
	line-height: 1.2;
	font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
	.kv-cv-tel > div:nth-of-type(2) {
		width: 100%;
		height: 3.2rem;
		margin-left: 0;
		font-size: 2rem;
		margin-top: 0.6rem;
	}
}
@media screen and (max-width: 768px) {

}



/* -------------------------------------------

media

------------------------------------------- */
.media {
	padding: 10rem 0 5rem 0;
}
.media h2 {
	text-align: center;
	font-size: 3.2rem;
	margin-bottom: 3rem;
}
.media ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.media ul li {
    width: calc((100% - 4rem) / 5);
    margin-right: 1rem;
	border: solid 0.12rem #ccc;
	padding: 0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
}
.media ul li:nth-child(5n) {
    margin-right: 0;
}
.media ul li:nth-child(n + 6) {
    margin-top: 1rem;
}
@media screen and (max-width: 768px) {
	.media {
		padding: 8rem 2rem 4rem 2rem;
	}
	.media ul li {
		width: 49%;
		margin-right: 0;
		height: 10rem;
	}
	.media ul li:nth-child(5n) {
		margin-right: 0;
	}
	.media ul li:nth-child(n + 6) {
		margin-top: 0;
	}
	.media ul li:nth-child(n + 3) {
		margin-top: 2%;
	}
}



/* -------------------------------------------

trouble

------------------------------------------- */
.trouble {
	background: url(../img/trouble-bg-1.jpg) no-repeat center bottom / cover;
	padding: 6rem 0 25rem 0;
}
@media screen and (max-width: 768px) {
	.trouble {
		background: #fdfdff;
		padding: 6rem 0 0 0;
	}
}
.trouble h2 {
	text-align: center;
	font-size: 3.2rem;
	margin-bottom: 3rem;
}
.trouble ul {
	display: flex;
	justify-content: center;
	margin-bottom: 7rem;
}
.trouble ul li:not(:last-child) {
	margin-right: 2.5rem;
}
.trouble ul li {
	position: relative;
	background: #ececec;
	width: 24rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 7.2rem;
	border-radius: 0.8rem;
	text-align: center;
	line-height: 1.4;
	font-weight: 500;
	font-size: 1.7rem;
}
.trouble ul li::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-top: 1rem solid #ececec;
	position: absolute;
	left: calc(50% - 1rem);
	bottom: -0.9rem;
}
@media screen and (max-width: 768px) {
	.trouble ul {
		display: block;
		padding: 0 3rem;
		margin-bottom: 3rem;
	}
	.trouble ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 2rem;
	}
	.trouble ul li {
		width: 100%;
		font-size: 1.9rem;
		padding-bottom: 0.15rem;
	}
}
.trouble div {
	margin-left: 28%;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.5;
}
.trouble div strong {
	color: var(--red);
	font-size: 2.8rem;
	background: linear-gradient(to top, var(--yellow) 40%, transparent 40%);
}
@media screen and (max-width: 768px) {
	.trouble div {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-left: 0;
	}
}



/* -------------------------------------------

feature

------------------------------------------- */
.feature {
	background: var(--bg-pink);
}

/* ------ wrap-1 ------ */
.feature .wrap-1 {
	margin-bottom: 6rem;
}
.feature .wrap-1 > div:nth-of-type(1) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
	.feature .wrap-1 > div:nth-of-type(1) {
		flex-direction: column;
	}
}
.feature .wrap-1 > div:nth-of-type(1) > figure {
	width: 24rem;
	margin-right: 3rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-1 > div:nth-of-type(1) > figure {
		margin-right: 0;
		margin-top: 2rem;
	}
}
.feature .wrap-1 > div:nth-of-type(1) > h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(1) {
	color: var(--red);
	font-size: 2.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(1)::before,
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(1)::after {
	content: "";
	width: 0.2rem;
	height: 3.6rem;
	background: var(--red);
	margin-top: 0.5rem;
}
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(1)::before {
	transform: rotate(-30deg);
	margin-right: 2.5rem;
}
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(1)::after {
	transform: rotate(30deg);
	margin-left: 1.7rem;
}
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(2) {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 2.2rem;
}
.feature .wrap-1 > div:nth-of-type(1) > h2 > span:nth-child(2) strong {
	color: var(--red);
	font-size: 3.2rem;
	background: linear-gradient(to top, var(--yellow) 40%, transparent 40%);
	margin: 1rem 0;
}
.feature .wrap-1 > div:nth-of-type(2) {
	background: #fff;
	padding: 2rem;
}
.feature .wrap-1 > div:nth-of-type(2) p {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}
@media screen and (max-width: 768px) {
	.feature .wrap-1 > div:nth-of-type(2) p {
		text-align: left;
		font-size: 2.2rem;
	}
}

/* ------ wrap-2 ------ */
.feature .wrap-2 h2 {
	text-align: center;
	font-size: 2.8rem;
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 {
		font-size: 2.6rem;
		margin-bottom: 1.5rem;
	}
}
.feature .wrap-2 h2 strong {
	color: var(--red);
}
/* プラン */
.feature .wrap-2 h2 + ul {
	width: 72rem;
	margin: 0 auto 2rem auto;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul {
		width: auto;
		display: block;
	}
}
.feature .wrap-2 h2 + ul li {
	width: 31.5%;
	background: #fff;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul li {
		width: 100%;
	}
	.feature .wrap-2 h2 + ul li:not(:last-child) {
		margin-bottom: 3rem;
	}
}
.feature .wrap-2 h2 + ul li dt {
	background: var(--red);
	color: #fff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.0rem;
	font-size: 2rem;
}
.feature .wrap-2 h2 + ul li dt::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-top: 1rem solid var(--red);
	position: absolute;
	left: calc(50% - 1rem);
	bottom: -0.9rem;
}
.feature .wrap-2 h2 + ul li dt strong {
	font-size: 3.2rem;
	font-weight: normal;
	vertical-align: -0.3rem;
}
.feature .wrap-2 h2 + ul li dt img {
	width: 15rem;
	position: absolute;
	left: 50%;
	top: -2rem;
	transform: translate(-50%,0);
}
.feature .wrap-2 h2 + ul li dd {
	padding: 2rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.feature .wrap-2 h2 + ul li dd img {
	width: 8rem;
	margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul li dd img {
		width: 11rem;
	}
}
.feature .wrap-2 h2 + ul li dd .price {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	line-height: 1;
	font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul li dd .price {
		font-size: 3.6rem;
	}	
}
.feature .wrap-2 h2 + ul li dd .price span {
	font-weight: normal;
	font-size: 1.3rem;
	margin-top: 0.8rem;
}
/* プラン */
.feature .wrap-2 h2 + ul + div {
	width: 72rem;
	margin: 0 auto 6rem auto;
	display: flex;
	align-items: center;
	background: #fff;
	padding: 1.5rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul + div {
		width: 100%;
		flex-direction: column;
		margin: 0 auto 4rem auto;
	}
}
.feature .wrap-2 h2 + ul + div ul {
	display: flex;
	justify-content: space-between;
	width: 85%;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul + div ul {
		width: 100%;
		flex-wrap: wrap;
	}
}
.feature .wrap-2 h2 + ul + div ul li {
	width: 24%;
	border: solid 0.2rem var(--red);
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--red);
	font-weight: bold;
	padding: 1rem 0;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul + div ul li {
		width: 49%;
	}
	.feature .wrap-2 h2 + ul + div ul li:nth-child(n + 3) {
		margin-top: 2%;
	}
}
.feature .wrap-2 h2 + ul + div ul li img {
	display: block;
	width: auto;
	height: 8rem;
	margin-bottom: 0.5rem;
}
.feature .wrap-2 h2 + ul + div ul li span {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
	font-size: 1.8rem;
}
.feature .wrap-2 h2 + ul + div ul li span i {
	font-size: 1.2rem;
	font-weight: normal;
}
.feature .wrap-2 h2 + ul + div > span {
	padding-left: 2rem;
	width: 15%;
	color: var(--red);
	line-height: 1.3;
	font-size: 1.8rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 h2 + ul + div > span {
		padding-left: 1rem;
		width: 100%;
		font-size: 2rem;
		text-align: center;
		margin-top: 1rem;
	}
}	
/* 調査例 */
.feature .wrap-2 > div:last-of-type {
	background: #fff;
	position: relative;
	padding: 3rem 0 1.5rem 0;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 > div:last-of-type {
		padding: 2rem;
	}
}
.feature .wrap-2 > div:last-of-type h3 {
	background: url(../img/ribbon-1.png) no-repeat;
	background-size: 14rem auto;
	width: 14rem;
	height: 6rem;
	display: flex;
	align-items: center;
	color: #fff;
	padding-left: 3rem;
	padding-bottom: 0.2rem;
	font-weight: normal;
	font-size: 2rem;
	position: absolute;
	left: 0;
	top: 2rem
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 > div:last-of-type h3 {
		background: #ff5346;
		width: 100%;
		height: 4.8rem;
		justify-content: center;
		padding-left: 0;
		padding-bottom: 0.2rem;
		font-size: 2rem;
		position: relative;
		top: auto;
		margin-bottom: 2rem;
	}
}
.feature .wrap-2 > div:last-of-type ul {
	display: flex;
	margin-left: 16rem;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 > div:last-of-type ul {
		flex-direction: column;
		margin-left: 0;
		margin-bottom: 2rem;
	}
}
.feature .wrap-2 > div:last-of-type ul li {
	width: 20rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 > div:last-of-type ul li {
		width: 100%;
	}
	.feature .wrap-2 > div:last-of-type ul li:not(:last-child) {
		margin-bottom: 5rem;
	}
}
.feature .wrap-2 > div:last-of-type ul li:not(:last-child)::before {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	border-top: solid 0.3rem #ff5346;
	border-right: solid 0.3rem #ff5346; 
	transform: rotate(45deg);
	position: absolute;
	right: -2.45rem;
	top: 0.8rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 > div:last-of-type ul li:not(:last-child)::before {
		transform: rotate(135deg);
		position: absolute;
		right: calc(50% - 0.8rem);
		top: auto;
		bottom: -3rem;
	}
}
.feature .wrap-2 > div:last-of-type ul li:not(:last-child) {
	margin-right: 4rem;
}
.feature .wrap-2 > div:last-of-type dt {
	border: solid #ff5346 0.15rem;
	border-radius: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.6rem;
	padding-bottom: 0.2rem;
	color: #ff5346;
	font-size: 1.6rem;
	position: relative;
}
.feature .wrap-2 > div:last-of-type dt img {
	width: 4.8rem;
	position: absolute;
	right: 1rem;
	top: -1.8rem
}
.feature .wrap-2 > div:last-of-type dd {
	text-align: center;
	line-height: 1.4;
	font-size: 1.6rem;
	margin-top: 1rem;
}
.feature .wrap-2 > div:last-of-type p {
	text-align: center;
	font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
	.feature .wrap-2 > div:last-of-type p {
		text-align: left;
		line-height: 1.6;
	}
}



/* -------------------------------------------

reason

------------------------------------------- */
/* ------ h2 ------ */
.reason h2 strong {
	color: var(--red);
}
.reason h2 i {
	font-size: 4.8rem;
	vertical-align: -0.4rem;
}

/* ------ h3 ------ */
.reason h3 {
	font-size: 2.4rem;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.reason h3 {
		font-size: 2.2rem;
	}
}

/* ------ ul ------ */
.reason ul li {
	position: relative;
	display: flex;
	box-shadow: 0 0 1rem rgba(126,59,67,0.25);
}
@media screen and (max-width: 768px) {
	.reason ul li {
		display: block;
	}
}
.reason ul li:nth-child(even) {
	flex-direction: row-reverse;
}
.reason ul li:not(:last-child) {
	margin-bottom: 4rem;
}
.reason ul li > div:nth-of-type(1) {
	width: 65%;
	position: relative;
	padding: 4.5rem 3rem 3rem 3rem;
}
@media screen and (max-width: 768px) {
	.reason ul li > div:nth-of-type(1) {
		width: 100%;
		padding: 4rem 2.5rem 2.5rem 2.5rem;
	}
}
.reason ul li > div:nth-of-type(1) img {
	width: 8.8rem;
	position: absolute;
	left: 0;
	top: -1.5rem
}
.reason ul li:nth-child(2) > div:nth-of-type(1) img {
	left: auto;
	right: 0;
}
.reason .bg {
	width: 35%;
}
@media screen and (max-width: 768px) {
	.reason .bg {
		width: 100%;
		height: 28rem;
	}
}
.reason ul li:nth-child(1) .bg {
	background: url(../img/reason-bg-1.jpg) no-repeat center / cover;
}
.reason ul li:nth-child(2) .bg {
	background: url(../img/reason-bg-2.jpg) no-repeat center / cover;
}
.reason ul li:nth-child(3) .bg {
	background: url(../img/reason-bg-3.jpg) no-repeat center / cover;
}

@media screen and (max-width: 768px) {
	.reason ul li:nth-child(3) .bg {
		background: url(../img/reason-bg-3.jpg) no-repeat center 25% / cover;
	}
	
}

/* -------------------------------------------

cv

------------------------------------------- */
.cv {
	color: #fff;
	font-weight: bold;
	line-height: 1;
}

/* ------ cv-tel ------ */
.cv-tel {
	background: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
	.cv-tel {
		display: block;
	}
}
.cv-tel > div:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 2.2rem;
	border-right: solid 0.12rem #fff;
	margin-right: 3rem;
	padding-right: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
	.cv-tel > div:nth-of-type(1) {
		font-size: 2.2rem;
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
}
.cv-tel > div:nth-of-type(1) ul {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
.cv-tel > div:nth-of-type(1) ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--red);
	width: 12rem;
	height: 3.4rem;
	font-size: 1.8rem;
	background: #fff;
	padding-bottom: 0.2rem;
}
.cv-tel > div:nth-of-type(1) ul li:not(:last-child) {
	margin-right: 0.5rem;
}
.cv-tel > div:nth-of-type(2) a {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	color: var(--yellow);
}
.cv-tel > div:nth-of-type(2) a span {
	display: flex;
	align-items: center;
	font-size: 4.8rem;
}
.cv-tel > div:nth-of-type(2) a img {
	width: 3.6rem;
	margin-right: 0.5rem;
	margin-top: 0.3rem;
}
@media screen and (max-width: 768px) {
	.cv-tel > div:nth-of-type(2) a {
		align-items: center;
		text-decoration: none;
	}
	.cv-tel > div:nth-of-type(2) a > span > span {
		font-size: 3.6rem;
	}
	.cv-tel > div:nth-of-type(2) a img {
		width: 3.0rem;
	}
}
.cv-tel > div:nth-of-type(2) a i {
	font-size: 1.3rem;
	margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
	.cv-tel > div:nth-of-type(2) a i {
		margin-top: 0.4rem;
	}
}

/* ------ cv-contact ------ */
.cv-contact {
	display: flex;
}
@media screen and (max-width: 768px) {
	.cv-contact {
		display: block;
	}
}
.cv-contact > * {
	width: 50%;
	display: flex;
	align-items: center;
	padding: 2.5rem 0 3rem 0;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.cv-contact > * {
		width: 100%;
		display: block;
		padding: 2.5rem 2rem 3rem 2rem;
	}
}
.cv-contact > * ul {
	margin-right: 1rem;
}
@media screen and (max-width: 768px) {
	.cv-contact > * ul {
		margin-right: 0;
		margin-bottom: 1rem;
		justify-content: space-between;
		display: flex;
	}
}
.cv-contact > * ul li {
	background: #fff;
	color: var(--pink);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12rem;
	height: 3.6rem;
	font-size: 1.8rem;
	padding-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
	.cv-contact > * ul li {
		width: 49%;
	}
}
.cv-contact > * ul li:not(:last-child) {
	margin-bottom: 0.5rem;
}
.cv-contact > * > div {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cv-contact > * > div span {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}
.cv-contact a {
	background: #fff;
	color: var(--pink);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28rem;
	height: 5.6rem;
	border-radius: 10rem;
	font-size: 1.8rem;
	padding-bottom: 0.2rem;
	position: relative;
	box-shadow: 0 0.5rem 0 #e0493d;
}
@media screen and (max-width: 768px) {
	.cv-contact a {
		width: 100%;
	}
}
.cv-contact a img {
	width: 2.8rem;
	margin-right: 1rem;
	margin-top: 0.15rem;
}
.cv-contact a i {
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translate(0,-50%);

}

/* ------ cv-form ------ */
.cv-form {
	background: var(--pink);
}

/* ------ cv-line ------ */
.cv-line {
	background: var(--green);
}
.cv-line ul li {
	color: var(--green);
}
.cv-line a {
	color: var(--green);
	box-shadow: 0 0.5rem 0 #05a044;
}


/* -------------------------------------------

voice

------------------------------------------- */
.voice {
	background: var(--bg-pink);
}

/* ------ ul ------ */
.voice ul li {
	background: #fff;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 3rem 3rem 3rem 0;
}
@media screen and (max-width: 768px) {
	.voice ul li {
		display: block;
		padding: 2.5rem;
	}
}
.voice ul li:not(:last-child) {
	margin-bottom: 3rem;
}
.voice ul li figure {
	width: 20%;
	display: flex;
	justify-content: center;
}
.voice ul li figure img {
	width: 50%;
	height: auto;
	display: block;
}
.voice ul li > div {
	width: 80%;
}
@media screen and (max-width: 768px) {
	.voice ul li figure {
		width: 30%;
		margin: 0 auto 1rem auto;
	}
	.voice ul li figure img {
		width: 100%;
	}
	.voice ul li > div {
		width: 100%;
	}
}

/* ------ h3 ------ */
.voice h3 {
	display: flex;
	flex-direction: column;
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 2rem;
}
.voice h3 > span:nth-child(1) {
	color: var(--red);
	border-bottom: solid 0.12rem var(--red);
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 0.7rem;
	padding-bottom: 0.7rem;
}
.voice h3 > span:nth-child(2) {
	text-align: right;
}
@media screen and (max-width: 768px) {
	.voice h3 > span:nth-child(1) {
		font-size: 1.8rem;
	}
}

/* ------ num ------ */
.voice .num {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	font-family: var(--font-oswald);
	background: var(--red);
	width: 10rem;
	height: 10rem;
	position: absolute;
	left: -2.5rem;
	top: -2.5rem;
	border-radius: 50%;
	font-size: 3.2rem;
	padding-left: 1.5rem;
	padding-top: 1.7rem;
}
.voice .num > span:nth-child(1) {
	font-size: 1.2rem;
	margin-bottom: 0.2rem;
}




/* -------------------------------------------

flow

------------------------------------------- */
/* ------ ul ------ */
.flow ul li {
	border: solid 0.18rem var(--red);
	position: relative;
	padding: 3rem;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.flow ul li {
		padding: 2.5rem;
		display: block;
	}
}
.flow ul li:not(:last-child)::before {
	content: "";
	width: 2rem;
	height: 2rem;
	border-right: solid 0.3rem var(--red);
	border-bottom: solid 0.3rem var(--red);
	position: absolute;
	left: calc(50% - 2rem);
	bottom: -3rem;
	transform: rotate(45deg);
}
.flow ul li > div {
	width: 70%;
	padding-right: 2rem;
	display: flex;
}
.flow ul li > div > dl {
	width: calc(100% - 8rem);
	padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
	.flow ul li > div {
		width: 100%;
		padding-right: 0;
		display: flex;
		margin-bottom: 2rem;
	}
	.flow ul li > div > dl {
		padding-left: 1rem;
	}
}
.flow ul li dt {
	color: var(--red);
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
	.flow ul li dt {
		margin-bottom: 1rem;
		line-height: 1.4;
	}
}
.flow ul li > figure {
	width: 30%;
}
@media screen and (max-width: 768px) {
	.flow ul li > figure {
		width: 100%;
	}
}
.flow ul li:not(:last-child) {
	margin-bottom: 5rem;
}

/* ------ free ------ */
.free {
	display: block;
	background: url(../img/ribbon-2.png) no-repeat center;
	background-size: 4.5rem auto;
	width: 4.5rem;
	height: 6.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.8rem;
	padding-bottom: 1.0rem;
	position: absolute;
	right: calc(30% + 4rem);
	top: -0.6rem
}
@media screen and (max-width: 768px) {
	.free {
		right: 1rem;
	}
}

/* ------ num ------ */
.flow .num {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	font-family: var(--font-oswald);
	background: var(--red);
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
	.flow .num {
		position: relative;
		left: -0.5rem;
		top: -0.5rem
	}
}
.flow .num > span:nth-child(1) {
	font-size: 1.2rem;
	margin-bottom: 0.2rem;
}



/* -------------------------------------------

company

------------------------------------------- */
.company {
	background: var(--bg-pink);
}
.company dl {
	width: 64rem;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.company dl dt {
	width: 30%;
	padding: 1.8rem 1.5rem 1.9rem 1.5rem;
	color: var(--red);
	font-weight: bold;
	border-bottom: solid 0.14rem #fff;
}
.company dl dd {
	width: 70%;
	padding: 1.8rem 1.5rem 1.9rem 1.5rem;
	border-bottom: solid 0.14rem #fff;
}
@media screen and (max-width: 768px) {
	.company dl {
		width: auto;
		display: block;
		flex-wrap: wrap;
	}
	.company dl dt {
		width: 100%;
		padding: 1.8rem 1.5rem 0.5rem 1.5rem;
		border-bottom: none;
	}
	.company dl dd {
		width: 100%;
		padding: 0 1.5rem 1.9rem 1.5rem;
		border-bottom: solid 0.12rem #ccc;
	}
}



/* -------------------------------------------

contact

------------------------------------------- */
.contact {
	background: var(--bg-pink);
}
.contact p {
	text-align: center;
	margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
	.contact p {
		text-align: left;
	}
}

/* ------ form ------ */
.contact form > div {
	background: #fff;
	padding: 2rem 3rem;
	display: flex;
}
@media screen and (max-width: 768px) {
	.contact form > div {
		display: block;
		padding: 2rem;
	}
}
.contact form > div.privacy {
	flex-direction: column;
	align-items: center;
}
.contact form > div:not(:last-of-type) {
	margin-bottom: 1rem;
}
.contact form > div:last-of-type {
	margin-bottom: 3rem;
}
.contact form > div > label {
	width: 40%;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	line-height: 1;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.contact form > div > label {
		width: 100%;
		margin-bottom: 1.5rem;
	}
}
.contact form > div > label > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	color: #fff;
	border-radius: 10rem;
	padding: 0.5rem 0 0.6rem 0.2rem;
	font-size: 1.4rem;
	margin-right: 1.0rem;
	font-weight: 500;
}
.contact form > div > label > span.his {
	background: var(--red);
}
.contact form > div > label > span.nini {
	background: #6f6f6f;
}
.contact form > div > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.contact form > div > div {
		width: 100%;
	}
}
.contact input[type="text"],
.contact input[type="email"] {
	padding: 1.5rem;
}
.contact .check {
	display: flex;
}
.contact .check > div {
	display: flex;
	align-items: center;
}
.contact .check span {
	margin-bottom: 0.1rem;
	margin-left: 0.6rem;
}
.contact .check > div:not(:last-of-type) {
	margin-right: 2rem;
}

.hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%); 
  margin: -1px;
}

.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

.radio-label::before,
.radio-label::after {
	content: "";
	display: block;
	position: absolute;
}

.radio-label::before {
	transform: translateY(-50%);
	top: 50%;
	left: 0.5rem;
	width: 1.4rem;
	height: 1.4rem;
	border: solid 0.15rem #ddd;
	vertical-align: -5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	box-shadow: inset 0 0 0.8rem rgba(0, 0, 0, 0.08);
}

.radio-label::after {
	opacity: 0;
	top: 0.9rem;
  left: 0.6rem;
  transform: rotate(50deg) translateY(-50%);
	width: 0.4rem;
  height: 1rem;
	border-right: 2px solid var(--red);
	border-bottom: 2px solid var(--red);
}

input[type="radio"]:checked+.radio-label::after {
	opacity: 1;
}

.contact select {
	border: solid 0.15rem #ddd;
	width: 20rem;
	padding: 0.6rem;
}
@media screen and (max-width: 768px) {
	.contact select {
		width: 100%;
	}
}
.form-contact > div {
	display: flex;
	align-items: center;
}
.form-contact > div:not(:last-of-type) {
	margin-bottom: 1rem;
}
.form-contact > div > span {
	width: 35%;
}
.form-contact > div > div {
	width: 65%;
}
@media screen and (max-width: 768px) {
	.form-contact > div {
		flex-direction: column;
	}
	.form-contact > div:not(:last-of-type) {
		margin-bottom: 1rem;
	}
	.form-contact > div > span {
		width: 100%;
		margin-bottom: 0.7rem;
	}
	.form-contact > div > div {
		width: 100%;
	}
}
.privacy > div {
	width: 100% !important;
}
.privacy > div:nth-of-type(1) {
	overflow-y: scroll;
	background: #fbfbfb;
	border: solid 0.15rem #ddd;
	border-radius: 0.5rem;
	box-shadow: inset 0 0 0.8rem rgba(0,0,0,0.08);
	padding: 2rem;
	height: 20rem;
	margin-bottom: 1rem;
}
.privacy .check {
	justify-content: center;
}
.privacy .check span {
	margin-top: 0.2rem;
}


/* -------------------------------------------

footer

------------------------------------------- */
footer {
	padding-bottom: 8rem;
}
footer small {
	background: #474747;
	display: block;
	padding: 1rem 0 1.2rem 0;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	footer {
		padding-bottom: 11rem;
	}
}



/* -------------------------------------------

fixed

------------------------------------------- */
.fixed {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 999;
	background: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 8rem;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.fixed {
		flex-direction: column;
		height: 11rem;
	}
}
.fixed a {
	color: #fff;
}
.fixed ul {
	margin-right: 1.5rem;
}
.fixed ul li {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 11rem;
	font-weight: bold;
	padding-bottom: 0.15rem;
	color: var(--red);
}
.fixed ul li:not(:last-child) {
	margin-bottom: 0.5rem;
}
.fixed-contact ul li {
	color: var(--pink);
}
.fixed a {
	display: flex;
	align-items: center;
}
.fixed-tel a img {
	width: 3.2rem;
}
.fixed-tel a {
	color: var(--yellow);
	font-weight: bold;
	font-size: 4rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.fixed-tel a img {
		width: 2.4rem;
	}
	.fixed-tel a {
		justify-content: center;
		font-size: 2.4rem;
	}
}
.fixed-tel a span {
	margin-left: 0.5rem;
	margin-bottom: 0.2rem;
}
.fixed-contact a {
	justify-content: center;
}
.fixed-tel {
	display: flex;
	align-items: center;
	margin-right: 2rem;
}
@media screen and (max-width: 768px) {
	.fixed-tel {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 0;
		height: 6rem;
	}
}
.fixed-tel dt {
	font-size: 2rem;
	line-height: 1;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 0.3rem;
}
.fixed-tel dt span {
	font-size: 1.2rem;
	color: var(--yellow);
	margin-left: 0.5rem;
}
@media screen and (max-width: 768px) {
	.fixed-tel dt {
		font-size: 1.4rem;
	}
	.fixed-tel dt span {
		font-size: 1.1rem;
	}
}
.fixed-contact {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.fixed-contact {
		height: 5rem;
		padding-bottom: 0.5rem;
	}
}
.fixed-contact > div {
	display: flex;
	align-items: center;
}
.fixed-contact > div a {
	height: 4.8rem;
	width: 20rem;
	border-radius: 10rem;
	font-weight: bold;
	font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	.fixed-contact > div {
		justify-content: space-between;
		padding: 0 2rem;
	}
	.fixed-contact > div a {
		width: 18rem;
		height: 4rem;
	}
}
.fixed-mail {
	margin-right: 1rem;
}
.fixed-mail a {
	background: var(--pink);
}
.fixed-mail img {
	width: 2.4rem;
	margin-right: 0.5rem;
}
.fixed-line a {
	background: var(--green);
}
.fixed-line img {
	width: 4.0rem;
	margin-right: 0.3rem;
}
@media screen and (max-width: 768px) {
	
}




/* -------------------------------------------

form

------------------------------------------- */
input[type="text"],
input[type="email"] {
	border: solid 0.15rem #ddd;
	border-radius: 0.5rem;
	width: 100%;
	font-size: 1.6rem;
	box-shadow: inset 0 0 0.8rem rgba(0,0,0,0.08);
}
textarea {
	border: solid 0.15rem #ddd;
	border-radius: 0.5rem;
	width: 100%;
	font-size: 1.6rem;
	box-shadow: inset 0 0 0.8rem rgba(0,0,0,0.08);	
}
input[type="text"]:focus,
input[type="email"]:focus {
	font-size: 16px;
}
input::placeholder {
	color: #9c9c9c;
}
input[type="checkbox"] {
	position: relative;
	width: 16px;
	height: 16px;
	border: solid 0.15rem #ddd;
	vertical-align: -5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	box-shadow: inset 0 0 0.8rem rgba(0,0,0,0.08);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	top: 1px;
	left: 4px;
	transform: rotate(50deg);
	width: 4px;
	height: 8px;
	border-right: 2px solid var(--red);
	border-bottom: 2px solid var(--red);
	content: '';
}
input[type="submit"],
.thanx a {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	background: var(--pink);
	color: #fff;
	line-height: 1;
	font-size: 1.8rem;
	width: 24rem;
	border-radius: 20rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.4rem;
	padding-top: 0.2rem;
	box-shadow: 0 0.5rem 0 #e0493d;
	transition: all .3s;
}
input[type="submit"]:hover,
.thanx a:hover {
	opacity: 0.5;
	cursor: pointer;
}
.contact input[type="submit"],
.thanx a {
	border-radius: 1rem;
	width: 28rem;
	height: 5.2rem;
}

.thanx {
	text-align: center;
}

.thanx p {
	margin-top: 10rem;
	margin-bottom: 3rem;
}