@charset "utf-8";
/* common style
-------------------------------------------------------------------*/
body .style_h2 {
	font-size: 2rem;
	font-weight: 600;
	padding: 0 0 0 1.5em;
	margin-bottom: 1em;
	position: relative;
	z-index: 0;
}
body .style_h2::before {
	position: absolute;
	z-index: 5;
	display: inline-block;
	content: "";
	width: 30px;
	height: 30px;
	background: #09b7a2;
	border-radius: 50%;
	inset: 0.3em auto auto 0;
}
body .style_h3 {
	font-size: 1.75rem;
	font-weight: 500;
	border-bottom: 2px solid #dfdfdf;
	padding: 0.5em 0em;
	margin-bottom: 1.25em;
	position: relative;
	z-index: 0;
}
body .style_h3::before {
	position: absolute;
	z-index: 5;
	display: inline-block;
	content: "";
	width: 7em;
	height: 2px;
	background: #09b7a2;
	inset: auto auto -2px 0;
}
body .style_h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1em;
}
@media screen and (max-width:767px) {
	body .style_h2 {
		font-size: 1.65rem;
		padding-left: 1.25em;
		margin-bottom: 1em;
	}
	body .style_h2::before {
		width: 20px;
		height: 20px;
	}
	body .style_h3 {
		font-size: 1.35rem;
		border-bottom: 2px solid #dfdfdf;
		margin-bottom: 1.25em;
	}
	body .style_h3::before {
		width: 4em;
	}
	body .style_h4 {
		font-size: 1.25rem;
	}
}
.common_btn {
	margin: 2em auto 3em;
	width: fit-content;
}
.common_btn a {
	display: flex;
	width: fit-content;
	min-width: 320px;
	border: solid 1px #c8c8c8;
	color: #000;
	background: #ffffff;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 0.75em 3.5em 0.75em 2em;
	min-height: 70px;
	align-items: center;
	position: relative;
	z-index: 10;
	text-decoration: none;
	border-radius: 3em;
	transition: all 0.3s;
	overflow: hidden;
}
.common_btn a span {
	position: relative;
	z-index: 20;
}
.common_btn a::after {
	content: "→";
	color: #fff;
	display: block;
	position: absolute;
	height: fit-content;
	z-index: 10;
	font-size: 1rem;
	inset: 0 32px 0 auto;
	margin: auto;
	transform: translateY(-1px);
}
.common_btn a::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1 !important;
	height: fit-content;
	z-index: 10;
	inset: 0 25px 0 auto;
	background: #09b7a2;
	height: 1.65em;
	width: 1.65em;
	border-radius: 3em;
	margin: auto;
	transition: .3s width, .3s height, .3s right;
}
@media (any-hover: hover) {
	.common_btn a:hover {
		color: #fff;
	}
	.common_btn a:hover::before {
		width: 100%;
		height: 100%;
		right: 0;
	}
}
@media screen and (max-width:767px) {
	.common_btn {
		margin: 1em auto 1em;
	}
	.common_btn a {
		/* max-width: 280px; */
		min-width: 260px;
		font-size: 1.125rem;
		min-height: 60px;
	}
	.common_btn a span {
		padding-right: 0;
	}
}
/* pages
-------------------------------------------------------------------*/
body:not(.home) {
	margin-top: 83px;
}
.pages .pages_mv:has(.mv_img) {
	position: relative;
	z-index: 0;
	min-height: 330px;
}
.pages .pages_mv:not(:has(.mv_img)) {
	display:flex;
	justify-content:center;
	align-items:center;
	min-height: 260px;
	background:#f6f6f6;
	border-top:5px solid #00a08d;
}
.pages .pages_mv:has(.mv_img):before {
	position: absolute;
	z-index: 1;
	display: block;
	content: "";
	margin: auto;
	width: calc(40% + 8em);
	height: 6.25em;
	background: #ffffff;
	inset: auto auto -1px 0;
}
.pages .pages_mv .mv_img img {
	min-height: 330px;
	object-fit: cover;
	object-position: center;
}
.pages .pages_mv .pages_title{
	max-width: calc(1200px + 4%);
	width:100%;
	text-align: left;
	margin: auto;
	padding-inline: 2%;
}
.pages .pages_mv:has(.mv_img) .pages_title {
	position: absolute;
	z-index: 2;
	inset: auto 0 -2.5em 0;
}
.pages .pages_mv .pages_title h1 {
	font-size: 2.5rem;
	font-weight: 700;
}
.pages .pages_mv .pages_title p {
	font-size: 1.375rem;
}
.pages .pages_content {
	margin-bottom: 6em;
}
@media screen and (max-width: 975px) {
	body:not(.home) {
		margin-top: 0;
	}
}
@media only screen and (max-width: 767px) {
	.pages .pages_mv:has(.mv_img),
	.pages .pages_mv:not(:has(.mv_img)){
		min-height: 180px;
		margin-bottom: 1em;
	}
	.pages .pages_mv:has(.mv_img):before {
		content: none;
	}
	.pages .pages_mv .mv_img img {
		min-height: 180px;
	}
	.pages .pages_mv .pages_title {
		max-width:100%;
		padding: 0.75em 4em 0 15px;
	}
	.pages .pages_mv:has(.mv_img) .pages_title {
		padding-inline: 15px;
		inset: auto auto -1px 0;
		background: #fff;
		width: fit-content;
	}
	.pages .pages_mv .pages_title h1 {
		font-size: 2rem;
	}
	.pages .pages_mv .pages_title p {
		font-size: 1.25rem;
	}
	.pages .pages_content {
		margin-bottom: 4em;
	}
}
.pages .breadcrumb_wrap {
	padding-block: 2em 2em;
}
.pages #pan {
	white-space: nowrap;
}
.pages #pan ul {
	text-align: right;
	overflow-x: auto;
	overflow-y: hidden;
}
.pages #pan li {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	font-size: 0.75rem;
	font-weight: 500;
}
.pages #pan li a {
	text-decoration: none;
	margin: 0 0.75em 0 0;
}
@media (any-hover: hover) {
	.pages #pan li a:hover {
		border-bottom: 1px solid;
	}
}
.pages #pan li:not(:first-child):before {
	content: "＞";
	display: inline-block;
	margin-right: 0.75em;
	vertical-align: middle;
}
@media only screen and (max-width: 767px) {
	.pages .breadcrumb_wrap {
		padding: 1em 0 2em;
	}
	.pages #pan {
		overflow: hidden;
		position: relative;
		z-index: 2;
	}
	.pages #pan ul {
		text-align: left;
	}
	.pages #pan li {
		font-size: 0.875rem;
	}
	.pages #pan li a {
		border-bottom: 1px solid #000;
		display: inline-block;
	}
}
/* page-archive
-------------------------------------------------------------------*/
.page-archive .archive_wrap .archive_list {
	max-width: 1000px;
	margin: 6em auto 6em;
}
.page-archive .archive_wrap .archive_list .archive_item:first-child a {
	border-top: 1px solid #dfdfdf;
}
.page-archive .archive_wrap .archive_list .archive_item a {
	display: block;
	padding: 2.25em 1em;
	border-bottom: 1px solid #dfdfdf;
	text-decoration: none;
	display: flex;
	gap: 10%;
}
.page-archive .archive_wrap .archive_list .archive_item a time {
	min-width: 6em;
	color: #939393;
}
.page-archive .archive_wrap .archive_list .archive_item a .archive_title {
	width: auto;
	position: relative;
	z-index: 0;
	transition: all .3s;
	text-decoration: underline 1px transparent;
}
@media (any-hover: hover) {
	.page-archive .archive_wrap .archive_list .archive_item a:hover .archive_title {
		color: #c9151e;
		text-decoration-color: #c9151e;
	}
}
.page-archive .archive_pagenation {
	margin-block: 4rem;
}
.page-archive .archive_pagenation .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5em;
}
.page-archive .archive_pagenation .nav-links .page-numbers {
	width: 46px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #dfdfdf;
	color: #939393;
	text-decoration: none;
	transition: all 0.3s;
}
.page-archive .archive_pagenation .nav-links .page-numbers.current {
	background-color: #afafaf;
	color: #fff;
}
.page-archive .archive_pagenation .nav-links .page-numbers.next,
.page-archive .archive_pagenation .nav-links .page-numbers.prev {
	border: none;
	color: #939393 !important;
	margin-inline: 0.5em;
	font-weight: 600;
	background: none !important;
	font-family: "Noto Sans JP";
}
@media (any-hover: hover) {
	.page-archive .archive_pagenation .nav-links a.page-numbers:hover {
		background-color: #00a08d;
		color: #fff;
	}
	.page-archive .archive_pagenation .nav-links .page-numbers.next:hover,
	.page-archive .archive_pagenation .nav-links .page-numbers.prev:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width:767px) {
	.page-archive .archive_wrap .archive_list {
		margin: 0 auto 2em;
	}
	.page-archive .archive_wrap .archive_list .archive_item a {
		padding: 1em 0.5em;
		gap: 0.5em;
		flex-direction: column;
	}
	.page-archive .archive_pagenation {
		margin-block: 3rem;
	}
	.page-archive .archive_pagenation .nav-links .page-numbers {
		width: 40px;
		height: 40px;
	}
}
/* page-detail
-------------------------------------------------------------------*/
.page-detail {
	background: #f6f6f6;
}
.page-detail .detail_wrap {
	padding-inline: 1em;
	display: block;
}
.page-detail .detail_wrap .detail_inner {
	background: #ffffff;
	padding: 2em 2em 4em;
}
.page-detail .detail_wrap .detail_textarea {
	max-width: 1010px;
	margin-inline: auto;
}
.page-detail .detail_wrap .detail_textarea p {
	line-height: 1.8;
	margin-bottom: 1.5em;
}
.page-detail .detail_wrap .detail_textarea a {
	line-height: 1.8;
	margin-bottom: 1.5em;
	color: #c9151e;
	text-decoration: none;
	border-bottom: 1px solid #c9151e;
}
@media (any-hover: hover) {
	.page-detail .detail_wrap .detail_textarea a:hover {
		border-bottom: none;
	}
}
/* other
-------------------------------------------------------------------*/
.pages .archive_inner:not(:has(.archive_list)) ~ .common_inner .recruit_new_box{
	margin-top:5em;
}
.pages .recruit_new_box{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	gap:1.875em;
	min-height:20em;
	text-align:center;
	background:#00a08d;
	border-radius:10px;
}
.pages .recruit_new_box .recruit_new_lead{
	font-size:1.75rem;
	font-weight:bold;
	color:#fff;
	line-height:1.6;
}
.pages .recruit_new_box .recruit_new_btn a{
	position:relative;
	z-index:10;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	min-width: 22.5em;
	min-height:5em;
	font-size:1.125rem;
	font-weight:bold;
	background:#fff;
	border:1px solid #c0c0c0;
	border-radius:5em;
	text-decoration:none;
	transition:translate .4s;
	padding:1em 4.25em;
}
.pages .recruit_new_box .recruit_new_btn a i{
	position:absolute;
	z-index:-10;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	width:2.1em;
	aspect-ratio:1/1;
	font-size:1.25rem;
	color:#fff;
	background:#00a08d;
	border-radius:100%;
	top:50%;
	right:1.2em;
	translate:0 -50%;
}
.pages .recruit_new_box .recruit_new_btn a i::before{
	content:"→";
}
@media (any-hover: hover) {
	.pages .recruit_new_box .recruit_new_btn a:hover {
		translate:0 5px;
	}
}
@media screen and (max-width:767px) {
	.pages .archive_inner:not(:has(.archive_list)) ~ .common_inner .recruit_new_box{
		margin-top:2.75em;
	}
	.pages .recruit_new_box{
		min-height:0;
		padding:1.5em 1.25em;
	}
	.pages .recruit_new_box .recruit_new_lead{
		font-size:1.25rem;
	}
	.pages .recruit_new_box .recruit_new_btn{
		width:100%;
	}
	.pages .recruit_new_box .recruit_new_btn a{
		width:80%;
		min-width: 0;
		min-height:4.25em;
		font-size:1rem;
		padding:1em 3.25em;
		margin-inline:auto;
	}
	.pages .recruit_new_box .recruit_new_btn a i{
		font-size:1rem;
		right:0.75em;
	}
}
.pages .content_wrap .content_inner {
	max-width: calc(1000px + 4%);
	margin: auto;
	text-align: left;
	padding: 6em 2% 2em;
}
.pages .content_wrap .txt {
	line-height: 1.8;
	margin-bottom: 1.5em;
}
.pages .content_wrap .txt a,
.pages .privacy_contact li a {
	line-height: 1.8;
	margin-bottom: 1em;
	color: #c9151e;
	text-decoration: none;
	border-bottom: 1px solid #c9151e;
}
.pages .privacy_contact li a {
	margin-bottom: 0;
}
@media (any-hover: hover) {
	.pages .content_wrap .txt a:hover,
	.pages .privacy_contact li a:hover {
		border-bottom: none;
	}
}
.pages .content_wrap ol {
	list-style: none;
	padding: 0;
	margin-left: 3em;
	text-indent: -3em;
}
.pages .content_wrap ol li {
	line-height: 1.8;
	margin-bottom: 0.5em;
}
.pages .privacy_contact {
	border: 1px solid #dfdfdf;
	border-radius: 1em;
	padding: 1.5em;
	margin-bottom: 2em;
}
.pages .privacy_contact .privacy_contact_title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1em;
}
.pages .privacy_contact .privacy_contact_lead {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5em;
}
.pages .privacy_contact ul {
	margin-bottom: 1em;
	line-height: 1.6;
}
@media screen and (max-width:767px) {
	.pages .content_wrap .content_inner {
		max-width: unset;
		padding: 2em 15px 2em;
	}
}
.pages .company_wrap .company_inner01 {
	padding-top: 4em;
}
.pages .company_wrap .company_inner01 .colmun {
	display: flex;
	align-content: center;
	gap: 5%;
	margin-bottom: 6em;
}
.pages .company_wrap .company_inner01 .colmun .title_area {
	width: 30%;
}
.pages .company_wrap .company_inner01 .colmun .table_area {
	width: 65%;
	font-size: 1.125rem;
}
.pages .company_wrap .company_inner01 .colmun .table_area table {
	width: 100%;
}
.pages .company_wrap .company_inner01 .colmun .table_area table tr {
	border-bottom: 1px solid #dfdfdf;
}
.pages .company_wrap .company_inner01 .colmun .table_area table tr:first-child {
	border-top: 1px solid #dfdfdf;
}
.pages .company_wrap .company_inner01 .colmun .table_area table th {
	width: 20%;
	padding: 1.5em 1em 1.5em 2em;
	font-weight: 600;
	vertical-align: top;
	min-width: 7em;
}
.pages .company_wrap .company_inner01 .colmun .table_area table td {
	width: 80%;
	padding: 1.5em 0 1.5em 1em;
	line-height: 1.6;
}
.pages .company_wrap .company_inner01 .colmun .table_area table td ul.td_table01 {
	padding-left: 8em;
	text-indent: -8em;
}
.pages .company_wrap .company_inner01 .colmun .table_area table td .td_lead {
	color: #00a08d;
	font-weight: 600;
}
.pages .company_wrap .company_inner01 .colmun .table_area table td ul.td_table02 {
	margin-bottom: 0.5em;
}
.pages .company_wrap .company_inner01 .colmun .table_area .table_att {
	text-align: right;
	font-size: 0.875rem;
	margin-top: 2em;
}
.pages .company_wrap .company_inner02 {
	background: #e5f5f3;
	padding-block: 6em;
	margin-bottom: 6em;
}
.pages .company_wrap .company_inner02 .colmun {
	display: flex;
	align-content: center;
	gap: 5%;
}
.pages .company_wrap .company_inner02 .colmun .title_area {
	width: 30%;
}
.pages .company_wrap .company_inner02 .colmun .text_area {
	width: 65%;
	font-size: 2.25rem;
	font-weight: 600;
	color: #00a08d;
	word-break: auto-phrase;
}
.pages .company_wrap .company_flex_box{
	display:flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap:wrap;
	flex-direction: column;
	gap: 3em;
	width: min(100%,800px);
	margin-inline: auto;
}
.pages .company_wrap .company_flex_item{
	width: 100%;
}
.pages .company_wrap .company_flex_item a{
	height: 100%;
	text-decoration:none;
}
.pages .company_wrap .company_flex_item p{
	font-size:1.25rem;
	font-weight:bold;
	color: #009f8c;
	margin-bottom: 0.5em;
}
.pages .company_wrap .company_flex_item a span{
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-right: 1.75em;
}
.pages .company_wrap .company_flex_item a span:before,
.pages .company_wrap .company_flex_item a span:after{
    position: absolute;
    z-index: 1;
    content: "";
    display: inline-block;
    margin: auto;
    width: 1.25em;
    aspect-ratio:1/1;
	line-height:1;
    color: #fff;
    background: #c8161d;
    border: 1px solid #c8161d;
    border-radius: 50%;
    inset: 0 0 0 auto;
    transition: all 0.3s;  
}
.pages .company_wrap .company_flex_item a span:after{
    content: "→";
    font-size: 0.875em;
    font-weight: 600;
    background: none;
    border: none;
    inset: 0 0.0em 0 auto;
    line-height: 1.5;
}
@media (any-hover: hover) {
	.pages .company_wrap .company_flex_item a:hover span:before{
        background: #ffffff;
    }
	.pages .company_wrap .company_flex_item a:hover span:after{
        color: #c8161d;
    }
}
@media screen and (max-width:767px) {
	.pages .company_wrap .company_inner01 {
		padding-top: 2em;
	}
	.pages .company_wrap .company_inner01 .colmun {
		margin-bottom: 4em;
		flex-direction: column;
	}
	.pages .company_wrap .company_inner01 .colmun .title_area {
		width: 100%;
	}
	.pages .company_wrap .company_inner01 .colmun .table_area {
		width: 100%;
	}
	.pages .company_wrap .company_inner01 .colmun .table_area table th {
		padding: 1em 0.5em 1em 0.5em;
		min-width: 5em;
	}
	.pages .company_wrap .company_inner01 .colmun .table_area table td {
		padding: 1em 0.5em 1em 0.5em;
	}
	.pages .company_wrap .company_inner01 .colmun .table_area table td ul.td_table01 {
		padding-left: 0;
		text-indent: 0;
	}
	.pages .company_wrap .company_inner02 {
		padding-block: 3em;
		margin-bottom: 3em;
	}
	.pages .company_wrap .company_inner02 .colmun {
		flex-direction: column;
	}
	.pages .company_wrap .company_inner02 .colmun .title_area {
		width: 100%;
	}
	.pages .company_wrap .company_inner02 .colmun .text_area {
		width: 100%;
		font-size: 1.75rem;
	}
	.pages .company_wrap .company_inner03 .common_btn {
		margin-bottom: 3em;
		margin-inline: 0 auto;
	}
	.pages .company_wrap .company_flex_box{
		gap: 2em;
	}
	.pages .company_wrap .company_flex_item{
		width:100%;
		min-width: 0;
	}
}
.page-contact .form_link_box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.625em 1.5em;
	margin-bottom: 2.25em;
}
.page-contact .form_link_box .form_link_btn :is(a, p) {
	display: flex;
	align-items: center;
	min-height: 3.5em;
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	border: solid 1px #c8c8c8;
	background: #ffffff;
	padding: 0.75em 3.5em;
	text-decoration: none;
	border-radius: 3em;
	transition: color .3s, background .3s;
	cursor: pointer;
}
.page-contact .form_link_box .form_link_btn p {
	color: #fff;
	background: #09b7a2;
}
.page-contact .form_details {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 1.875em;
	margin-bottom: 4.375em;
}
.page-contact .form_details p {
	font-size: 1rem;
	line-height: 1.8;
}
.page-contact .form_details p :is(em, a) {
	color: #c9151e;
}
.page-contact .form_details p a {
	text-decoration: underline;
	text-underline-offset: 0.35em;
}
.page-contact .form_details p.mb {
	margin-bottom: 1.875em;
}
.page-contact .thanks_wrap {
	width: min(100%, 730px);
	margin-inline: auto;
}
.page-contact .thanks_wrap p {
	text-align: center;
}
.page-contact .thanks_wrap p+p {
	margin-top: 1.25em;
}
@media (any-hover: hover) {
	.page-contact .form_link_box .form_link_btn a:hover {
		color: #fff;
		background: #09b7a2;
	}
	.page-contact .form_details p a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width:767px) {
	.page-contact .form_link_box .form_link_btn :is(a, p) {
		font-size: 1rem;
	}
	.page-contact .form_details {
		padding-bottom: 1.25em;
		margin-bottom: 2.5em;
	}
	.page-contact .form_details p.mb {
		margin-bottom: 1.5em;
	}
}
.form_wrap input[type="text"],
.form_wrap input[type="email"],
.form_wrap textarea {
	border: #dfdfdf solid 1px;
	display: block;
	width: min(100%, 620px);
	height: 3.5em;
	line-height: 3.5em;
	padding: 0 1em !important;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 5px;
}
.form_wrap textarea {
	width: 100%;
	height: auto;
	line-height: 1.5em;
	padding: 1em !important;
}
.form_wrap .item_name input[type="text"] {
	display: inline-block;
	width: min(48%, 308px);
}
.form_wrap input::placeholder,
.form_wrap textarea::placeholder {
	color: #dfdfdf;
	font-weight: normal;
}
.form_wrap .required_text {
	display: block;
	width: 100%;
	color: #c9151e;
	margin-top: 0.625em;
}
.form_wrap .cautionary_note {
	display: block;
	width: 100%;
	font-size: .875rem;
	font-weight: 500;
	margin-bottom: 1em;
}
.form_wrap .form-item+.form-item {
	margin-top: 2.25em;
}
.form_wrap .form-item .form-item_ttl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.625em;
	margin-bottom: .625em;
}
.form_wrap .form-item .form-item_ttl span {
	font-size: 1.125rem;
	font-weight: 500;
}
.form_wrap .form-item .form-item_ttl .item_required {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 45px;
	flex-direction: column;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
	background: #00a08d;
	border-radius: 2px;
}
.form_wrap .form-btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25em;
	margin-top: 2.5em;
}
.form_wrap .form-btn_box button {
	display: flex;
	width: fit-content;
	min-width: 320px;
	border: solid 1px #c8c8c8;
	color: #000;
	background: #ffffff;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 0.75em 3.5em 0.75em 2em;
	min-height: 3.5em;
	align-items: center;
	position: relative;
	z-index: 10;
	text-decoration: none;
	border-radius: 3em;
	transition: all 0.3s;
	overflow: hidden;
}
.form_wrap .form-btn_box button::after {
	content: "→";
	color: #fff;
	display: block;
	position: absolute;
	height: fit-content;
	z-index: 10;
	font-size: 0.8em;
	inset: 0 32px 0 auto;
	margin: auto;
	transform: translateY(-1px);
}
.form_wrap .form-btn_box button::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1 !important;
	height: fit-content;
	z-index: 10;
	inset: 0 25px 0 auto;
	background: #09b7a2;
	height: 1.65em;
	width: 1.65em;
	border-radius: 3em;
	margin: auto;
	transition: .3s width, .3s height, .3s right;
}
.form_wrap .form-btn_box button:not([type="submit"]) {
	color: #000 !important;
	min-width: 200px;
	font-size: 1rem;
}
.form_wrap .form-btn_box button:not([type="submit"])::before {
	background: #c8c8c8;
}
.form_wrap .form-btn_box button:not([type="submit"])::after {
	color: #000;
}
@media (any-hover: hover) {
	.form_wrap .form-btn_box button:hover {
		color: #fff;
	}
	.form_wrap .form-btn_box button:hover::before {
		width: 100%;
		height: 100%;
		right: 0;
	}
}
@media screen and (max-width:767px) {
	.form_wrap .form-btn_box {
		flex-direction:column-reverse;
	}
	.form_wrap .form-btn_box button {
		min-width: 260px;
		font-size: 1.125rem;
	}
}