@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
	position: relative;
	min-width: 375px;
	min-height: 100dvh;
}

.loader_bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100vh;
	background: #ddd;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
	transform: translateY(50px);
}
.fadeIn.is-show {
  opacity: 1;
	transform: translateY(0px);
}

.fadeIn_left {
  opacity: 0;
  transition: 2s;
	transform: translateX(-50px);
}
.fadeIn_left.is-show {
  opacity: 1;
	transform: translateX(0);
}

header {
	width: 100%;
	height: 5rem;
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 9999;
}

@media (width < 960px) { /* SP ONLY */
	header {
		height: 4rem;
	}
}

.inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 1rem;
}

header .inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

header .block_title {
	margin-inline-end: auto;
}

header .block_title .logo_item {
	width: 120px;
	height: 32px;
}

@media (width < 501px) { /* SP ONLY */
	header .block_title .logo_item {
		width: 90px;
		height: 28px;
	}
}

header .button_area {
	flex-direction: row;
	margin-inline-start: 3.5rem;
}

header .button_area li {
	width: 132px;
	height: 2.625rem;
	font-size: 1.125rem;
	font-weight: 500;
	border-radius: 60px;
}

@media (width < 960px) { /* SP ONLY */
	header .button_area {
	margin: 0 2rem 0 0;
	gap: 1rem;
}
	header .button_area li {
		width: 88px;
		font-size: 0.875rem;
	}
}

@media (960px <= width) {
	header .nav_glb {
		display: flex;
		gap: 3.5rem;
	}

	nav .nav_glb li a {
		transition:.3s;
	}

	nav .nav_glb li a:hover,
	nav .nav_glb li a:active {
		color: #008474;
		font-weight: 700;
		}
}

@media (width < 960px) { /* SP ONLY */
	.trigger {
		position: fixed;
		top: 8px;
		right: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 2.75rem;
		height: 2.75rem;
		z-index: 10000;
		cursor: pointer;
	}

	.trigger::before,
	.trigger span,
	.trigger::after {
		content: "";
		display: block;
		width: 1.75rem;
		height: 0.125rem;
		background: #008474;
		border-radius: 9999px;
		transition: .3s;
	} 

	.trigger::before {
		translate: 0 -.25rem;
	}
	/* translateは右と下が+,左と上が- */

	.trigger::after {
		translate: 0 .25rem;
	}

	.is-open .trigger::before {
		translate: 0 .125rem;
		rotate: 45deg;
		background: #fff;
	}

	.is-open .trigger span {
		scale: 0 1;
		background: #fff;
	}

	.is-open .trigger::after {
		translate: 0 -.125rem;
		rotate: -45deg;
		background: #fff;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 250px;
		height: 100vh;
		background: #008474;
		z-index: 9000;
		transition: .3s;
	}

	.is-open nav {
		right: 0;
	}

	nav .nav_glb {
		margin-block-start: 4rem;
		border-top: 1px solid #E7FEFB;
	}

	nav .nav_glb li {
		border-bottom: 1px solid #E7FEFB;
	}
	nav .nav_glb li a {
		display: block;
		padding: 1rem;
		color: #fff;
		transition: .2s;
	}

	nav .nav_glb li a:hover,
	nav .nav_glb li a:active {
		color: #008474;
		font-weight: bold;
		background: #fff;
}

	.cover_layer {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100vh;
		background: rgba(51,51,51,0);
		z-index: 8000;
		transition: .3s;
		pointer-events: none;
	}

	.is-open .cover_layer {
		background: rgba(51,51,51,.6);
		pointer-events: auto;
	}
}

@media (960px <= width) { /* PC only */
	.trigger,
	.cover_layer {
		display: none;
	}
}

.kv {
	width: 100%;
	height: 80vh;
	margin-block-start: 5rem;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #F5FAF8 url(../img/mv_illust_pc.svg) no-repeat left 250% bottom 50%/80%;
}

.kv .inner {
	width: 100%;
}

.kv .kv_text_content {
	width: 50%;
}

.kv .kv_text_content h2 {
	margin-block-end: 2.5rem;
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: 700;
	word-break: keep-all;
}

.kv .kv_text_content p {
	margin-block-end: 5rem;
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 700;
	word-break: keep-all;
}

@media screen and (min-width: 501px) and (max-width: 960px) {
	.kv {
		height: calc(100vh - 4rem);
		margin-block-start: 4rem;
		display: flex;
		background-position: left -180% bottom 50%;
		background-size: 120%;
	}
	
	.kv .kv_text_content {
		width: 50%;
		height: calc(100vh - 13.25rem);
		display: flex;
		justify-content: center;
		flex-direction: column;
		gap: 2rem;
	}
	
	.kv .kv_text_content h2 {
		margin-block-end: 1rem;
		font-size: 1.5rem;
	}
	
	.kv .kv_text_content p {
		margin-block-end: 0;
		font-size: 1rem;
	}
}

@media (width < 501px) { /* SP ONLY */
	.kv {
		height: calc(100vh - 4rem);
        margin-block-start: 5rem;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        background-image: url(../img/mv_illust_sp.svg);
        background-position: top 40% center;
        background-size: 120%;
	}
	
	.kv .kv_text_content {
		width: 100%;
		height: calc(100vh - 13.25rem);
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}
	
	.kv .kv_text_content h2 {
		margin-block-end: 1rem;
		font-size: 1.5rem;
	}
	
	.kv .kv_text_content p {
		margin-block-end: 0;
		font-size: 1rem;
	}
}

.button_area {
	display: flex;
	gap: 1.5rem;
}

.button_area li {
	width: 232px;
	height: 4.125rem;
	font-size: 1.5rem;
	font-weight: 500;
	border-radius: 60px;
	transition: .3s;
}

.button_area li:first-child {
	color: #008474;
	background: #fff;
	border: 2px solid #008474;
}

.button_area li:last-child {
	color: #fff;
	background: #DB0552;
}

.button_area li:first-child:hover,
.button_area li:first-child:active {
	color: #005D52;
	background: #E7FEFB;
}

.button_area li:last-child:hover,
.button_area li:last-child:active {
	background: #B40443;
}

.button_area li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

@media (width < 768px) { /* SP ONLY */
	.kv_text_content .button_area {
		flex-direction: column-reverse;
		gap: 1rem;
	}

	.kv_text_content .button_area li {
		width: 100%;
		height: 3.5rem;
		font-size: 1.25rem;
		font-weight: 500;
		border-radius: 60px;
		transition: .3s;
	}
}

.kv .scroll {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	position: absolute;
	bottom: 3rem;
	right: calc(100vw / 2 - 2.5rem);
	/* 全体の幅からside_itemの幅を引き、それを2で割った後にリンク部分の幅の半分の数を引く */
	width: 5rem;
	height: 5rem;
	transition: all .3s;
}

.kv .scroll:hover,
.kv .scroll:active {
	transform: translateY(0.1875rem);
}

.kv .scroll .scroll_item {
	padding-block-end: 1rem;
	color: #333;
}

.kv .scroll::before,
.kv .scroll::after{
	content: "";
	display: block;
	width: .75rem;
	height: .75rem;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	rotate: 45deg;
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	translate: -50% 0;
}

.kv .scroll::after{
	bottom: 1rem;
}

@media (width < 768px) { /* SP ONLY */
	.kv .scroll {
		bottom: 2.5rem;
		right: 50%;
		right: calc(100vw / 2 - 2rem);
		width: 4rem;
		height: 4rem;
	}

	.kv .scroll::before {
	bottom: 1.25rem;
}

	.kv .scroll::after{
		bottom: 0.875rem;
	}
	
	.kv .scroll .scroll_item {
		font-size: 0.75rem;
	}
}

main h2 {
	margin-block-end: 3.5rem;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
}

main h3 {
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
}

main section {
	padding: 10rem 0;
}

@media (width < 768px) { /* SP ONLY */
	main h2 {
		font-size: 1.5rem;
	}
	
	main h3 {
		font-size: 1.5rem;
		line-height: 1.4;
		font-weight: 700;
		text-align: center;
	}

	main section {
		padding: 5rem 0;
	}
}

.worries {
	padding-block-end: 0;
}

.worries .inner {
	position: relative;
}

.worries::after {
	content: "";
	display: block;
	position: absolute;
	width: 100vw;
	height: 5rem;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: #fff;
}

.worries .worries_image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.worries .worries_image img {
	max-width: 800px;
	width: 60vw;
}

.worries .baloon_items li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 260px;
	height: 260px;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
}

.worries .baloon_items li:nth-child(1) {
	position: absolute;
	top: 10%;
	left: 75%;
	background: url(../img/worries_baloon_bg01.svg) no-repeat center / contain;
	padding: 0 0 1.5% 2.5%;
}

.worries .baloon_items li:nth-child(2) {
	position: absolute;
	top:120px;
	left: 60px;
	background: url(../img/worries_baloon_bg02.svg) no-repeat center / contain;
	padding: 0 1.5% 1.5% 0;
}

.worries .baloon_items li:nth-child(3) {
	position: absolute;
	bottom:0;
	right: 0;
	background: url(../img/worries_baloon_bg03.svg) no-repeat center / contain;
	width: 320px;
	height: 320px;
	padding: 1% 0 0 2.5%;
}

.worries p {
	margin-block-start: 7.5rem;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
}

.worries p span{
	font-size: 2.5rem;
}

@media screen and (min-width: 429px) and (max-width: 960px) {
	.worries .baloon_items li {
		width: 22vw;
		height: 22vw;
		font-size: 2.5vw;
		font-weight: 700;
		text-align: center;
	}
	
	.worries .baloon_items li:nth-child(1) {
		position: absolute;
		top: 10%;
		left: 70%;
		background: url(../img/worries_baloon_bg01.svg) no-repeat center / contain;
		padding: 0 0 1.5% 2.5%;
	}
	
	.worries .baloon_items li:nth-child(2) {
		position: absolute;
        top: 17%;
        left: 10%;
		background: url(../img/worries_baloon_bg02.svg) no-repeat center / contain;
		padding: 0 1.5% 1.5% 0;
	}
	
	.worries .baloon_items li:nth-child(3) {
		position: absolute;
		bottom:27%;
		right: 0;
		background: url(../img/worries_baloon_bg03.svg) no-repeat center / contain;
		width: 28vw;
		height: 28vw;
		padding: 1% 0 0 2.5%;
	}
	
	.worries p {
		margin-block-start: 7.5rem;
		font-size: 2rem;
		line-height: 1.4;
		font-weight: 700;
		text-align: center;
	}
	
	.worries p span{
		font-size: 2.5rem;
	}
}

@media (width < 960px) {
	.worries::after {
		height: 2.5rem;
	}

	.worries .baloon_items li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 26vw;
		height: 26vw;
		font-size: 0.85rem;
		font-weight: 700;
		text-align: center;
	}
	
	.worries .baloon_items li:nth-child(1) {
		top: 10%;
		left: 72%;
	}
	
	.worries .baloon_items li:nth-child(2) {
		position: absolute;
		top: 14%;
		left: 4%;
	}
	
	.worries .baloon_items li:nth-child(3) {
		bottom: 15%;
		right: 4%;
		width: 32vw;
		height: 32vw;
	}
	
	.worries p {
		font-size: 1.5rem;
	}
	
	.worries p span{
		font-size: 1.75rem;
	}
}

@media (width < 429px) {
	.worries .baloon_items li {
		width: 30vw;
		height: 30vw;
	}

	.worries .baloon_items li:nth-child(1) {
		top: 18%;
		left: 68%;
	}
	
	.worries .baloon_items li:nth-child(2) {
		position: absolute;
		top: 24%;
		left: 3%;
	}
	
	.worries .baloon_items li:nth-child(3) {
		bottom: 15%;
		right: 4%;
		width: 40vw;
		height: 40vw;
	}
}

.service {
	background: #F5FAF8;
}

.service .service_item {
  display: flex;
	gap: 3.5rem;
	justify-content: center;
	/* padding: 0 6.5rem; */
}

.service .service_item li {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100% / 3);
}

.service .service_item li::before {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin-block-end: 2rem;
}

.service .service_item li:nth-child(1)::before {
	background: url(../img/service_illust01.svg) no-repeat center / contain;
}

.service .service_item li:nth-child(2)::before {
	background: url(../img/service_illust02.svg) no-repeat center / contain;
}

.service .service_item li:nth-child(3)::before {
	background: url(../img/service_illust03.svg) no-repeat center / contain;
}

@media (width < 501px) { /* SP ONLY */
	.service .service_item {
		flex-direction: column;
		align-items: center;
		gap: 5rem;
	}
	
	.service .service_item li {
		max-width: 500px;
		width: 80%;
	}
	
	.service .service_item li:nth-child(1)::before {
		background: url(../img/service_illust01.svg) no-repeat center / contain;
	}
	
	.service .service_item li:nth-child(2)::before {
		background: url(../img/service_illust02.svg) no-repeat center / contain;
	}
	
	.service .service_item li:nth-child(3)::before {
		background: url(../img/service_illust03.svg) no-repeat center / contain;
	}
}

.cv_area {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 21rem;
	background: url(../img/cv_area_bg.webp) no-repeat top / cover;
}

.cv_area .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(100% - 10rem);
	height: 16rem;
	background: rgba(255, 255, 255, .9);
}

.cv_area .inner p {
	margin-block-end: 2rem;
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	word-break: keep-all;
}

@media (width < 768px) { /* SP ONLY */
	.cv_area {
		width: 100%;
		height: unset;
		padding: 1.5rem;
	}
	
	.cv_area .inner {
		width: 100%;
		height: unset;
		padding: 1rem;
	}
	
	.cv_area .inner p {
		margin-block-end: 1.25rem;
		font-size: 1.25rem;
		line-height: 1.6;
	}

	.cv_area .button_area {
		flex-direction: row;
	}

	.cv_area .button_area li {
    width: 132px;
    height: 2.625rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 60px;
}
}

.case {
	background: #F5FAF8;
}

.case .case_item {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	margin: 0 5rem;
}

.case .case_item li {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex: 1 1 0;
	width: 50%;
	padding: 2.5rem;
	background: #fff;
}

.case .case_item li:nth-child(1) {
	align-self: flex-start;
}

.case .case_item li:nth-child(2) {
	align-self: center;
}

.case .case_item li:nth-child(3) {
	align-self: flex-end;
}

.case .case_item li::before {
	content: "";
	display: block;
	width: 12.5rem;
	height: 12.5rem;
}

.case .case_item li:nth-child(1)::before {
	background: url(../img/case_illust01.svg) no-repeat center / contain;
}

.case .case_item li:nth-child(2)::before {
	background: url(../img/case_illust02.svg) no-repeat center / contain;
}

.case .case_item li:nth-child(3)::before {
	background: url(../img/case_illust03.svg) no-repeat center / contain;
}

.case .case_item_text {
	width: 70%;
}

@media (max-width: 960px) {
	.case .case_item {
		gap: 2.5rem;
		margin: 0 1rem;
	}

	.case .case_item li {
		flex-direction: column;
		padding: 2rem;
		width: 100%;
		
	}

	.case .case_item li::before {
		width: 8rem;
		height: 8rem;
	}

	.case .case_item_text {
    width: 100%;
}
}

.case .case_item li h3 {
	text-align: left;
}

.case .case_item li .case_item_comment {
	margin: .5rem auto 1.5rem;
}

.case .case_item li .case_item_profile {
	text-align: right;
}

.flow .case_flow h3 {
	color: #DB0552;
	line-height: 1;
	text-align: left;
}

.flow .case_flow{
	display: flex;
	flex-direction: column;
	gap: 7.5rem;
}

.flow .case_flow li {
	display: flex;
	align-items: center;
}

.flow .case_flow h3 span {
	font-size: 3.5rem;
}

.flow .case_flow .case_flow_image_content {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.flow .case_flow .case_flow_text_content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (width < 960px) {
	.flow .case_flow .case_flow_image_content {
		flex-direction: column;
	}

	.flow .case_flow .case_flow_text_content {
		max-width: 500px;
		width: 100%;
		align-items: center;
	}
}

.flow .case_flow .case_flow_img {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 400px;
	margin: 0 3.5rem 0 0;
}

.flow .case_flow  li:not(:last-child) .case_flow_img::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -32%;
	right: calc(100% / 2 - 2.5rem);
	width: 5rem;
	height: 2.5rem;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: #008474
}

.flow .case_flow li h4 {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.6;
}

@media screen and (min-width: 429px) and (max-width: 960px) {
	.flow .case_flow li {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.flow .case_flow .case_flow_img {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0;
	}

	.flow .case_flow li:not(:last-child) .case_flow_img::after {
		bottom: -65%;
		right: calc(100% / 2 - 1.75rem);
		width: 3.5rem;
		height: 1.75rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
	}
}

@media (width < 428px) { /* SP ONLY */
	.flow .case_flow{
		gap: 5rem;
	}
	
	.flow .case_flow li {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.flow .case_flow .case_flow_img {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0;
	}

	.flow .case_flow li:not(:last-child) .case_flow_img::after {
		bottom: -80%;
		right: calc(100% / 2 - 1.25rem);
		width: 2.5rem;
		height: 1.25rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
	}
}

footer {
	padding: 5rem 0;
	font-size: 0.875rem;
	color: #fff;
	background: #008474;
}

footer .inner {
	display: flex;
	justify-content: space-between;
}

footer .inner .logo_item img {
	width: 120px;
	height: 32px;
}

footer .footer_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 24px;
	margin-block-end: 2.5rem;
}

footer .footer_item li a {
	transition: .3s;
}

footer .footer_item li a:hover,
footer .footer_item li a:active {
	font-weight: 700;
}

@media (width < 768px) { /* SP ONLY */
	footer {
		padding: 2.5rem 0;
	}

	footer .inner {
		flex-direction: column;
		align-items: center;
		gap: 2.5rem;
	}

	
	footer .footer_item {
		flex-direction: column;
		align-items: center;
	}
}

footer small {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block-start: 2.5rem;
	border-top: 1px solid #fff ;
}

.trial_form main {
	padding-block-start: 5rem;
	background: #F5FAF8;
}

.trial_form h2 {
	margin-block-end: 2rem;
	word-break: keep-all;
}

.form_content {
	max-width: 1080px;
	width: 100%;
	margin: 5rem auto 0;
	padding-block-start: 0;
}

@media (width < 768px) { /* SP ONLY */
	.form_content {
		margin: 4rem auto 0;
	}
}

.form_content .inner {
	padding: 2.5rem 2.5rem 4rem;
	background: #fff;
	border-radius: .75rem;
	margin: 0 2.5rem;
}

.form_content form {
	display: flex;
	flex-direction: column;
	margin: 4rem auto 0;
}

form .form_item {
	display: flex;
}

form .form_item:not(:last-of-type) {
	margin-block-end: 2rem;
}

form .form_item:nth-of-type(5) {
	margin-block-end: 1rem;
}

form .form_item:nth-of-type(7) {
	margin-block-end: 2.5rem;
}

@media (width < 768px) { /* SP ONLY */
	form .form_item:nth-of-type(7) {
		flex-direction: row;
	}
}

form .form_item:nth-of-type(7) label {
	width: 100%;
	display: block;
	margin: 0;
	cursor: pointer;
}

form .form_item:nth-of-type(7),
form .form_item:last-of-type {
	align-self: center;
}

@media (width < 768px) { /* SP ONLY */
.form_content .inner {
	margin: 0 1rem;
	padding: 1.5rem 1.5rem 2rem;
}

	form .form_item {
		flex-direction: column;
		gap: .5rem;
	}
}
	
form .form_item label {
	min-width: 10rem;
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-inline-end: 3.5rem;
}

form .form_item label span {
	font-size: .75rem;
	color: #fff;
	padding: .25rem;
	background: #BC0D02;
	border-radius: .25rem;
}

form .form_item .form_text {
	width: 100%;
	height: 44px;
	padding: .5rem;
	background: #F1F1F1;
	border-radius: .5rem;
}

form .password_description {
	margin-block-end: 2rem
}

form .password_description h3 {
	margin-block-end: .5rem;
	font-size: .875rem;
	font-weight: 500;
	text-align: left;
}

form .password_description ul {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	font-size: .875rem;
	text-indent: -0.875rem;
	padding-inline-start: 0.875rem;
}

form .password_description li {
	font-size: .875rem;
}

form .password_description li::before {
	content: "・";
}

form .form_checkbox {
	position: relative;
	width: 24px;
	height: 24px;
	font-size: .875rem;
	border: 2px solid #1C1B1F;
	border-radius: 4px;
	margin-inline-end: .5rem;
	align-self: center;
}

form .form_checkbox:checked {
	background: #1C1B1F;
}

form .form_checkbox:checked:before {
	content: '';
  position: absolute;
  top: 2%;
	left: 30%;
  transform: rotate(50deg);
  width: .5rem;
  height: .875rem;
  border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

form .form_item a {
	color: #008474;
}

form .form_item a:hover,
form .form_item a:active {
	text-decoration: underline;
}

form .form_item button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 4.125rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	background: #DB0552;
	border-radius: 60px;
	transition: .3s;
	cursor: pointer;
}

form .form_item button:hover,
form .form_item button:active {
	background: #B40443;
}

@media (width < 768px) { /* SP ONLY */
	form .form_item button {
		width: 280px;
		height: 3.5rem;
		font-size: 1.25rem;
	}
}