:root {
	--fs1: 0.071rem;
	--fs2: 0.143rem;
	--fs4: 0.143rem;
	--fs6: 0.429rem;
	--fs8: 0.571rem;
	--fs10: 0.714rem;
	--fs12: 0.857rem;
	--fs13: 0.929rem;
	--fs14: 1rem;
	--fs15: 1.071rem;
  --fs16: 1.143rem;
	--fs18: 1.286rem;
	--fs20: 1.429rem;
	--fs22: 1.571rem;
	--fs24: 1.714rem;
	--fs26: 1.857rem;
	--fs28: 2rem;
	--fs30: 2rem;
	--fs40: 2.857rem;
	--fs48: 3.429rem;
	--fs60: 4.286rem;
	--fs72: 5.143rem;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,body {
	overscroll-behavior: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	font-size: clamp( 14px, calc( 0.6412213740458022px + 3.5623409669211195vw ), 28px );
}
body {
	line-height: 1.6;
	color: #352C5D;
	overflow-x: hidden;
}
.sp {
	display: block;
}
.pc {
	display: none;
}
@media (min-width: 768px) {
	html,body {
		font-size: 15px;
	}
	.sp {
		display: none;
	}
	.pc {
		display: block;
	}
}

h1, h2, h3, p {
	color: #352C5D;
}
h2 {
	font-weight: 700;
	line-height: 1.6;
}
h3 {
	font-weight: 700;
	font-size: 1.428rem;
	line-height: 1.6;
}
p {
	line-height: 2;
	font-size: 1rem;
}
label {
	font-size: var(--fs16);
	font-weight: 400;
	line-height: 1;
	padding-bottom: 0.4em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: var(--fs12) 1rem;
	background: #FCFCFC;
	border: var(--fs1) solid #CCCCCC;
	border-radius: var(--fs2);
	font-size: var(--fs16);
	transition: border-color 0.3s, box-shadow 0.3s;
}
input::placeholder {
  color: #BCBCBC;
}
select {
	width: 100%;
	padding: var(--fs12) 1rem;
	background: #FCFCFC;
	border: var(--fs1) solid #CCCCCC;
	border-radius: var(--fs2);
	font-size: var(--fs16);
	transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
}
select:focus {
  outline: none;
}

.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: 1rem;
  border: 1px solid #666;
  border-radius: 0.143rem; /* 2px 基準14px */
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #362b5c;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 0.25rem;
  top: 0.05rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid #fff;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}

.error {
  color: #D96439;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

a, button {
	cursor: pointer;
	display: inline-block;
	transition: all 0.3s;
}
img {
	object-fit: contain;
	width: 100%;
	max-width: 100%;
	height: auto;
}
section {
	position: relative;
	overflow-x: hidden;
}
.container {
	margin: 0 auto;
	padding: var(--fs20) var(--fs15);
	position: relative;
}
@media (min-width: 768px) {
	.container {
		max-width: 1000px;
		width: 100%;
		padding: var(--fs60) 0;
	}
}


.btn-form {
	border: none; background: none; padding: 0;
	outline: none;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.btn-form {
		max-width: 304px;
	}
}

.center {
	text-align: center!important;
}
.label {
	background: #352C5D;
	color: #FFF986;
	padding: 0.25em 0.5em;
	line-height: 1;
	display: inline-block;
	font-size: 1em;
}
.label.attention {
	background: #D96439;
	color: #FFF;
	font-size: var(--fs13);
}
.note {
	display: block;
	font-size: var(--fs10);
	color: #3E3E3E;
	text-align: center;
}



.container-header {
	text-align: center;
	margin-bottom: var(--fs40);
}
.container-subtitle {
	display: block;
	font-size: var(--fs18);
	margin-bottom: var(--fs8);
	position: relative;
	padding-bottom: var(--fs8);
	color: #352C5D;
  font-family: "Roboto Slab", serif;
}
.container-subtitle::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: var(--fs40);
	height: var(--fs1);
	background-color: #352C5D;
}
.container-title {
	font-size: var(--fs26);
	font-weight: 700;
	color: #352C5D;
}
@media (min-width: 768px) {
	.container-subtitle {
		font-size: 24px;
	}
	.container-title {
		font-size: 40px;
	}
}


.cta {
	background-color: #2C305D;
  background-image: url(../img/cta-bg-sp.png);
  background-repeat: no-repeat;
	background-size: cover;
  background-position: top left;
	padding: var(--fs30) 0;
	text-align: center;
}
.cta .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.cta .title {
  position: relative;
  display: inline-block;
  background-color: #FFF;
  text-align: center;
  font-size: var(--fs16);
	font-weight: 700;
  color: #362C5D;
	line-height: 1.6;
	padding: 0 0.6em;
}
.cta .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: var(--fs6) var(--fs4) 0 var(--fs4);
  border-color: #FFF transparent transparent;
  translate: -50% 100%;
}
.cta .subtitle {
	font-size: var(--fs22);
	margin-bottom: var(--fs28);
	color: #FFF;
}
.buttons {
	display: flex;
	flex-direction: column;
	gap: var(--fs15);
	max-width: 23.071rem;
	margin: 0 auto;
}
.cta-button {
	border: none;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	transform: translateZ(0);
}
.cta-button:hover {
	transform: translateY(-2px);
	filter: drop-shadow(0 var(--fs8) 1rem rgba(0, 0, 0, 0.3));
}
.contact-link {
	margin-top: var(--fs28);
	color: #FFF;
	text-decoration: underline;
	text-underline-offset: 0.25em;
	font-size: var(--fs16);
	font-weight: 700;
}
.contact-link:hover {
	color: #94a3b8;
	text-underline-offset: 0em;
}
@media (min-width: 768px) {
	.cta {
		background-image: url(../img/cta-bg-pc.png);
		background-position: center;
	}
	.cta .subtitle {
		font-size: 40px;
	}

	.cta-button {
		max-width: 323px;
		margin: 0 auto;
	}
	.pc-flex {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 25px;
		max-width: 670px;
	}
	.pc-flex picture {
		max-width: 207px;
	}
	.pc-flex .subtitle {
		font-size: 32px;
		text-align: left;
	}
}




.form {
	padding-top: var(--fs40);
}
.form-box {
	background: #261F43;
	position: relative;
	margin: 0 auto;
	padding: var(--fs20) var(--fs15);
	position: relative;
}
.form .fukidashi {
	position: absolute;
	top: calc( 0px - var(--fs18) );
	left: 0;
	right: 0;
	z-index: 3;
	margin: 0 auto;
	padding: 0;
	line-height: 1;
	width: 21.429rem;
	height: auto;
	animation: bounce 3s ease-in-out infinite;
}
.form .fukidashi img {
	object-fit: contain;
	object-position: top;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.02);
  }
}

.form .container-box {
	position: relative;
	z-index: 2;
	background: #FFF;
	padding: var(--fs60) var(--fs20) var(--fs40);
	text-align: center;
}
.form .container-box p {
	line-height: 1.6;
	font-weight: 700;
	margin: var(--fs20) 0;
}

.form form {
	padding-top: var(--fs30);
}
.form .name-group {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: var(--fs10);
}
.form .name-group > div {
	width: 50%;
}
.form .form-group {
	text-align: left;
	margin-bottom: var(--fs24);
}
.form .privacy-link {
	color: #25B8EE;
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
.form .privacy-link:hover {
	color: #94a3b8;
	text-underline-offset: 0em;
}
@media (min-width: 768px) {
	.form {
		padding-top: 40px;
	}
	.form .fukidashi {
		top: -40px;
		width: 431px;
		height: 75px;
	}
	.form .container-box {
		padding-top: 40px;
	}
	.form .container-box .form-img {
		max-width: 190px;
	}
}

#kv {
	background: #261F43;
	z-index: 10;
  background-image: url(../img/kv-bg-sp.png);
  background-repeat: no-repeat;
  background-position: top center;
	background-size: contain;
	padding: var(--fs40) 0;
}
#logo {
	margin: 0 auto var(--fs20);
	width: 16.5rem;
}
#kv-txt {
	width: 23.642857rem;
}
#horiesan {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc( 50% - 50vw );
}
.kv-flex .buttons {
	margin-top: -1rem;
}
.kv-flex .center {
	margin-bottom: var(--fs40);
}
@media (min-width: 768px) {
	#kv {
		background-image: url(../img/kv-bg-pc.png);
		padding: var(--fs40) 0;
	}
	#logo {
		width: 455px;
	}
	#kv-txt {
		width: 503px;
	}
	#horiesan {
		width: 413px;
		max-width: 413px;
		margin-inline: 0;
	}
	.kv-flex {
		display: flex;
		gap: 32px;
	}
	.kv-flex > div {
		width: 50%;
	}
	.kv-flex .buttons {
		margin-top: -30px;
	}
}
#form-kv {
	z-index: 10;
}
#form-kv .form-box {
	padding-left: 0;
	padding-right: 0;
}
@media (min-width: 768px) {
	#form-kv .form-box {
		padding: 0;
	}
}



#about {
	background: #EFF2F7;
	z-index: 9;
	padding-top: var(--fs40);
}
#about::after {
		content: '';
		position: absolute;
		top: -260px;/*260px*/
		left: 0;
		right: 0;
		height: 300px;/*300px*/
		background: linear-gradient(135deg, #261F43 0%, #261F43 100%);
		border-radius: 50%;
		transform: scaleX(2);
		z-index: 0;
}
#about .container {
	text-align: center;
}
#about .container-title > span {
	position: relative;
	display: inline-block;
}
#about .container-title > span .sub {
	position: absolute;
	bottom: calc( 0px - var(--fs12) );
	left: 0;
	right: 0;
	line-height: 1;
	font-size: var(--fs12);
}
#about .container .about-txt {
	text-align: center;
	margin: var(--fs30) 0 var(--fs40);
}
#about .about-box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: inset 0px 0px var(--fs40) #CED8F4;
	border: var(--fs1) solid #E0E7F6;
	padding: var(--fs30);
}
#about .about-box .title {
	display: block;
	margin-bottom: var(--fs14);
}
#about .about-box .title span {
	display: inline-block;
	border-width: var(--fs4);
	border-style: solid;
	border-image-source: linear-gradient(90deg, #4DD9FD 0%, #9AFEF5 48%, #DA85F4 100%);;
	border-image-slice: 1;
	font-size: var(--fs22);
	font-weight: 700;
	padding: 0.1em 0.5em;
	margin-bottom: var(--fs8);
}
#about .about-box p {
	text-align: left;
}
@media (min-width: 768px) {
	#about img {
		width: 529px;
		margin: 0 auto;
	}
	#about .container-title > span .sub {
		font-size: 16px;
	}
	#about .container .about-txt {
		font-size: var(--fs20);
	}
	#about .about-box{
		max-width: 768px;
		margin: 0 auto;
	}
	#about .about-box .title {
		border-width: var(--fs4);
		border-style: solid;
		border-image-source: linear-gradient(180deg, #4DD9FD 0%, #9AFEF5 48%, #DA85F4 100%);;
		border-image-slice: 1;
		display: inline-block;
		padding: 0.1em 0.5em;
	}
	#about .about-box .title span {
		border: none;
		margin: 0;
		padding: 0;
	}
}


#merit {
	background: linear-gradient(180deg, #261F43 0%, #3E4E81 100%);
	z-index: 8;
	padding-top: var(--fs40);
}
#merit::after {
	content: '';
	position: absolute;
	top: -260px;
	left: 0;
	right: 0;
	height: 300px;
	background: linear-gradient(135deg, #EFF2F7 0%, #EFF2F7 100%);
	border-radius: 50%;
	transform: scaleX(2);
	z-index: 0;
}
#merit .bg {
  background-image: url(../img/merit-bg-t-sp.png), url(../img/merit-bg-b-sp.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top left,bottom left;
	background-size: contain;
}
#merit .container-subtitle {
	color: #FFF;
}
#merit .container-subtitle::after {
	background-color: #FFF;
}
#merit .container-title {
	color: #FFF;
	font-size: var(--fs26);
}
#merit .container-title span {
	color: #FFF;
	font-size: var(--fs18);
}
#merit .container-title .sup {
	display: inline-block;
	font-size: var(--fs14);
}
.merit-box {
	position: relative;
	margin-bottom: var(--fs72);
}
.merit-box .number {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 6rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.1);
	z-index: 1;
	line-height: 1;
}
.merit-box .number::before {
	content: 'Merit';
	position: absolute;
	top: -0.8rem;
	left: 1.35rem;
	font-size: var(--fs24);
	font-weight: normal;
	color: rgba(255, 255, 255, 0.1);
}
.merit-box .image {
  width: calc( 100% + var(--fs15) );
  height: auto;
	margin-right: calc( 0px - var(--fs15) );
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.merit-box .image img {
	width: 76%;
	height: auto;
	object-fit: cover;
}
.merit-box .content {
	position: relative;
}
.merit-box .title {
	color: #FFF;
	position: relative;
	top: -1em;
	left: 0;
	text-shadow: #000 var(--fs1) 0 0.6rem;
}
.merit-box .text {
	color: #FFF;
}
@media (min-width: 768px) {
	#merit .bg {
		background-image: url(../img/merit-bg-t-pc.png), url(../img/merit-bg-b-pc.png);
		background-repeat: no-repeat, no-repeat;
		background-position: top left,bottom left;
	}
	#merit .container-title {
		font-size: 40px;
	}
	#merit .container-title span {
		font-size: 24px;
	}
	#merit .container-title .sup {
		font-size: 16px
	}
	.merit-box {
		margin: 0;
	}
	.merit-box .number {
		font-size: 155px;
	}
	.merit-box .number::before {
		font-size: 40px;
	}
	.merit-box .image img {
		width: 600px;
		margin-right: -183px;
	}
	.merit-box .title {
		top: -180px;
	}
	.merit-box .text {
		position: relative;
		top: -160px;
		width: 575px;
	}
}


#price {
	background-color: #f0f0f5;
	z-index: 7;
}
#price .arrow-down {
	text-align: center;
	margin: 1rem auto var(--fs24);
	animation: bounce 2s infinite;
}
#price .arrow-down::before {
	margin: 0 auto;
	content: '';
	display: block;
	width: var(--fs48);
	height: var(--fs18);
	background-image: url(../img/arrow-down.png);
  background-repeat: no-repeat;
	background-size: contain;
}@keyframes bounce {
		0%, 20%, 50%, 80%, 100% {
				transform: translateY(0);
		}
		40% {
				transform: translateY(-10px);
		}
		60% {
				transform: translateY(-5px);
		}
}
#price .subsidy-section {
	margin-bottom: var(--fs8);
	text-align: center;
	position: relative;
}
#price .subsidy-text {
	font-weight: 700;
}
#price .discount-badge {
	margin-left: 0.5rem;
	padding: 0.3em 0.5em;
	background: #7A63B9;
	color: #FFF986;
	border-radius: 3em;
	font-size: var(--fs16);
	font-weight: 700;
	display: inline-block;
	line-height: 1;
}
#price .discount-badge  span {
	font-size: var(--fs22);
}
#price .additional-section {
	text-align: center;
}
#price .additional-section > .title {
	font-size: var(--fs24);
	font-weight: 700;
	margin-bottom: var(--fs28);
	display: block;
}
#price .enterprise-box {
  position: relative;
}
#price .enterprise-box .title {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  line-height: 1;
  padding: 0.5em 1em;
  margin: 0;
  border-radius: 3em;
  background-color: #DEE5F0;
	color: #375889;
	white-space: nowrap;
	font-size: 1rem;
	font-weight: 700;
}
#price .enterprise-box .text {
	text-align: center;
  padding: var(--fs24) var(--fs24) var(--fs16);
  margin: 0;
  border: var(--fs1) solid #352C5D;
  background-color: #FFF;
	font-weight: 700;
}
#price .enterprise-box .text span {
	font-size: var(--fs20);
}
#price .cta-section {
	text-align: center;
	margin: var(--fs48) 0;
}
#price .cta-section .title {
  position: relative;
  display: inline-block;
  background-color: #352C5D;
  text-align: center;
  font-size: var(--fs16);
	font-weight: 700;
  color: #FFF;
	line-height: 1.6;
	margin: 0 auto var(--fs12);
	padding: 0 0.6em;
}
#price .cta-section .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: var(--fs6) var(--fs4) 0 var(--fs4);
  border-color: #352C5D transparent transparent;
  translate: -50% 100%;
}
#price .cta-section .contact-link {
	color: #352C5D;
}
@media (min-width: 768px) {
	#price .content {
		max-width: 574px;
		margin: 0 auto;
	}
	#price .content picture {
		max-width: 477px;
		display: block;
		margin: 0 auto;
	}
}


#case {
	background: #FFF;
	z-index: 6;
	padding-top: var(--fs40);
}
#case::after {
	content: '';
	position: absolute;
	top: -260px;
	left: 0;
	right: 0;
	height: 300px;
	background: linear-gradient(135deg, #EFF2F7 0%, #EFF2F7 100%);
	border-radius: 50%;
	transform: scaleX(2);
	z-index: 0;
}
.case-items {
	display: flex;
	flex-direction: column;
	gap: var(--fs20);
}
.case-item {
	position: relative;
	background: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: var(--fs20);
}
.case-item .image {
  width: 100%;
  height: auto;
  aspect-ratio: 343 / 124;
	overflow: hidden;
}
.case-item .image img {
  object-fit: cover;
}
.case-item .label {
	display: inline-block;
	position: relative;
	top: calc( 0px - var(--fs8) );
	left: var(--fs24);
	background: transparent linear-gradient(113deg, #3EA6C1 0%, #4DC1B6 48%, #DA85F4 100%) 0% 0% no-repeat padding-box;
	color: white;
	padding: 0.2em 0.35em;
	font-size: var(--fs16);
	z-index: 2;
}
.case-item .content {
	padding: 0 var(--fs24) var(--fs24);
}
.case-item .title {
	font-size: var(--fs20);
	margin-bottom: var(--fs16);
}
@media (min-width: 768px) {
	.case-items {
		flex-direction: row;
		gap: var(--fs16);
	}
	.case-item {
		flex: 1;
		margin-bottom: 0;
	}
	.case-item .content {
		padding: 0 var(--fs20) var(--fs24);
	}
	.case-item .title {
		font-size: 20px;
	}
}


#flow {
	background: #EEF2F8;
}
#flow .flow-items {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 670px;
	margin: 0 auto;
}
#flow .flow-item {
	background: #FFF;
	padding: var(--fs24);
	border: var(--fs1) solid #E8E6F2;
	border-radius: var(--fs6);
	position: relative;
}
#flow .flow-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: var(--fs24);
	width: var(--fs28);
	height: var(--fs4);
	background: transparent linear-gradient(90deg, #4DD9FD 0%, #9AFEF5 48%, #DA85F4 100%) 0% 0% no-repeat padding-box;
}
#flow .flow-item:not(:last-child) {
	margin-bottom: var(--fs22);
}
#flow .flow-item:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: calc( 0px - var(--fs22) );
	left: 2.571rem;
	width: var(--fs2);
	height: var(--fs22);
	background-color: #352C5D;
}
#flow .flow-item .header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
#flow .flow-item svg {
	width: var(--fs28);
	height: var(--fs28);
	margin-right: 0.5rem;
}
#flow .flow-item .title {
	font-size: var(--fs18);
}
#flow .flow-item .description {
	font-size: var(--fs13);
}


#faq .faq-item {
	margin-bottom: var(--fs30);
	border-bottom: var(--fs1) solid #CECECE;
	padding-bottom: var(--fs30);
}
#faq .faq-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
#faq .faq-item .question-container {
	display: flex;
	align-items: center;
	margin-bottom: var(--fs20);
}
#faq .faq-item .question-icon {
	width: var(--fs48);
	height: var(--fs48);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
  position:relative;
	line-height: 1;
	font-size: var(--fs18);
  font-family: "Roboto Slab", serif;
	color: #352C5D;
	margin-right: var(--fs20);
	flex-shrink: 0;
}
#faq .faq-item .question-icon::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	border: var(--fs6) solid transparent;
	background: linear-gradient(180deg, #4DD9FD 0%, #9AFEF5 48%, #DA85F4 100%) border-box border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
	-webkit-mask-composite: destination-out;
	mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
	mask-composite: exclude;
}
#faq .faq-item .answer-icon {
	width: var(--fs48);
	height: var(--fs48);
	border-radius: 50%;
	background-color: #EEF2F8;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #352C5D;
	font-family: "Roboto Slab", serif;
	font-size: var(--fs18);
	margin-right: var(--fs20);
	flex-shrink: 0;
}
#faq .faq-item .question-text {
	font-size: var(--fs16);
	font-weight: 700;
}
#faq .faq-item .answer-container {
	display: flex;
	align-items: flex-start;
}
#faq .faq-item .answer-text {
	font-size: var(--fs14);
}


#form-ft {
	background-color: #2C305D;
  background-image: url(../img/form-ft-bg-sp.png);
  background-repeat: no-repeat;
	background-size: cover;
  background-position: top left;
	padding-top: 0;
	text-align: center;
}
#form-ft .free-circle {
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
  display: flex;
	justify-content: center;
	align-items: center;
  width: 130px;
  height: 60px;
  border-radius: 50% / 0 0 100% 100%;
  background: #FFF986;
	font-size: var(--fs20);
	font-weight: 700;
	padding: 0 0 0.3em;
	line-height: 1;
}
#form-ft h2 {
	padding: var(--fs40) 0 var(--fs20);
	color: #FFF;
	text-align: center;
	font-size: var(--fs30);
}
#form-ft h2 span {
	text-emphasis: filled;
	text-emphasis-position: under;
}
.ft-txt {
	color: #FFF;
	text-align: center;
	font-size: var(--fs16);
	font-weight: 700;
	margin: 0 0 var(--fs20);
}
.ft-txt .sup {
	font-size: var(--fs12);
}
.ft-txt .big {
	font-size: var(--fs20);
}
#form-ft .image {
	display: block;
	max-width: 660px;
	margin: 0 auto;
}


.recommend-box {
  color: #fff;
	text-align: center;
}
.recommend-title {
	position: relative;
  display: inline-block;
  padding: 0.3em 1em;
	background: #FFF;
  font-weight: 700;
	font-size: var(--fs20);
	border-radius: 3em;
	margin: var(--fs20) auto 0;
	color: #352C5D;
}
.recommend-title::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 3em;
	border: var(--fs6) solid transparent;
	background: linear-gradient(90deg, #4DD9FD 0%, #9AFEF5 48%, #DA85F4 100%) border-box border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
	-webkit-mask-composite: destination-out;
	mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
	mask-composite: exclude;
}
.recommend-item {
  display: flex;
  align-items: center;
	border: var(--fs1) solid #564C8680;
  padding: var(--fs8) var(--fs14);
  border-radius: var(--fs8);
  margin-top: var(--fs12);
}
.recommend-icon {
  margin-right: var(--fs18);
	display: block;
	width: var(--fs30);
	height: var(--fs30);
	background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2227%22%20height%3D%2227%22%20viewBox%3D%220%200%2027%2027%22%3E%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_120%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20120%22%20transform%3D%22translate(-32%20-12515)%22%3E%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_16%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2016%22%20cx%3D%2213.5%22%20cy%3D%2213.5%22%20r%3D%2213.5%22%20transform%3D%22translate(32%2012515)%22%20fill%3D%22%2325b8ee%22%2F%3E%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_76%22%20data-name%3D%22%E3%83%91%E3%82%B9%2076%22%20d%3D%22M56.765%2C12511.947l4.482%2C3.387%2C6.637-7.082%22%20transform%3D%22translate(-17.354%2016.473)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.recommend-line {
  border-left: var(--fs1) solid #564C8680;
  padding-left: var(--fs18);
	text-align: left;
}
.recommend-highlight {
  color: #FFF986;
  font-weight: bold;
}

#form-ft .form-box {
	background: transparent;
	margin-top: var(--fs40);
	padding: var(--fs20) var(--fs15) var(--fs40);
}
#form-ft .form-box .container {
	padding: var(--fs20) 0;
}
#form-ft .form-box .fukidashi {
	padding: 0;
}

@media (min-width: 768px) {
	#form-ft {
		background-image: url(../img/form-ft-bg-pc.png);
	}
	#form-ft .form-box {
		padding: 0;
	}
	#form-ft .form-box .container {
		padding: 0 0 80px;
	}
	#form-ft .container-box {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 36px;
	}
	#form-ft .container-box .form-img {
		max-width: 406px;
	}
	#form-ft .container-box p {
		margin-top: 0!important;
	}
	.recommend-box {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: var(--fs20);
	}

}

#footer {
	background: #EFF2F7;
	text-align: center;
	padding: var(--fs40) 0;
}
.contact-button {
  display: inline-block;
  background-color: #352C5D;
  color: #FFF;
	font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--fs8);
  text-decoration: underline;
	text-underline-offset: 0.25em;
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.contact-button {
		display: inline-block;
		margin-bottom: 0;
		margin-right: 20px;
	}
	.contact-button:last-child {
		margin-right: 0;
	}
}
.contact-button:hover {
	color: #94a3b8;
	text-underline-offset: 0em;
}
.footer-links {
	margin: var(--fs20) 0;
	text-align: center;
}

.footer-link {
	color: #352C5D;
	text-decoration: none;
	font-size: var(--fs14);
	margin: 0 var(--fs15);
	display: inline-block;
}

.footer-link:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.footer-link {
		display: block;
		margin: var(--fs8) 0;
	}
}

.copy {
	display: block;
	margin: var(--fs20) 0 0;
}