/*
Theme Name: lp
*/

/* ============================================================ color ============================================================ */
:root {
    --bk: #222222;
    --wh: #FFFFFF;
	--navy: #003966;
    --light-navy: #4D7494;
	--bg-navy: #CCD7E0;
}

/* ============================================================ common ============================================================ */
html {
    font-size: 100%;
	scroll-behavior: smooth;
}
body {
    color: var(--bk);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	color: var(--bk);
	line-height: 1.4;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
li {
    list-style: none;
}
a {
    color: var(--bk);
    text-decoration: none;
	transition: 1s;
}
a:hover {
    opacity: 0.8;
	transition: 1s;
}
section {
	padding: 4.5rem 1rem;
}
.content-wrap {
    max-width: 1220px;
    margin: 0 auto;
}
h2 {
	font-size: 50px;
	text-align: center;
	margin-bottom: 2.5rem;
	font-weight: 700;
    color: var(--navy);
	line-height: 1.2;
}
h2 span {
    font-size: 40px;
}
h3 {
	font-size: 32px;
	font-weight: 700;
}
.btn {
	text-align: center;
}
.btn a {
	background: var(--navy);
	padding: 14px 40px;
	color: var(--wh);
	display: inline-block;
    border-radius: 99px;
	font-size: 24px;
}
.page-title-wrap {
	padding-top: 4rem;
}
.page-title {
	background: var(--dark-gray);
	color: var(--wh);
	padding: 80px 0;
}
.page-title h2 {
	margin-bottom: 0;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width:480px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	html {
		font-size: 14px;
	}
	h2 {
		font-size: 32px;
		margin-bottom: 24px;
	}
	h3 {
		font-size: 24px;
	}
	.page-title {
		padding: 40px 0;
	}
	section {
		padding: 4.5rem 1rem;
	}
}

/* ============================================================ header ============================================================ */
header {
  width: 100%;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
nav {
  background: #F5F5F5;
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1220px;
  margin: auto;
  padding: 8px 0;
}
nav ul li {
  width: 250px;
  text-align: center;
}
nav ul li a {
  position: relative;
  border-right: 1px solid #ccc;
  width: 100%;
  display: inline-block;
  padding: 1rem;
}
nav ul li:first-child a {
  border-left: 1px solid #ccc;
}


#menu-toggle {
  display: none;
}
.menu-btn {
  display: none;
}
@media (max-width: 480px) {
  .menu-btn {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-btn span,
  .menu-btn::before,
  .menu-btn::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transition: 0.4s;
  }
  .menu-btn span {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-btn::before {
    top: 0;
  }
  .menu-btn::after {
    bottom: 0;
  }

  #menu-toggle:checked + .menu-btn span {
    opacity: 0;
  }
  #menu-toggle:checked + .menu-btn::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  #menu-toggle:checked + .menu-btn::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    transition: 0.4s;
    padding: 60px 20px;
    z-index: 1000;
	  padding-top: 100px;
  }
  .nav ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav li {
    margin: 20px 0;
    width: auto;
  }
  .nav a {
    text-decoration: none;
    font-size: 18px;
    display: block;
	  border: none;
  }
	nav ul li:first-child a {
		border: none;
	}
  #menu-toggle:checked ~ .nav {
    right: 0;
  }
  .btn.pc {
    display: none;
  }
}

/* ============================================================ mv ============================================================ */
/*main {
    padding-top: 138px;
}*/
.mv {
    background: url(images/mv.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 640px;
	padding: 1rem;
}
.mv-content {
    max-width: 1220px;
    margin: auto;
}
.mv-title {
    text-align: left;
    padding-top: 48px;
}
.mv-sub-text {
    max-width: 566px;
}
.mv-point {
    display: flex;
    gap: 24px;
    margin-top: 40px;
	flex-wrap: wrap;
}
.mv-point img {
    max-width: 146px;
}
@media screen and (max-width:480px) {
	.pc {
		display: none;
	}
	.mv {
		background: url(images/mv-sp.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 600px;
	}
	.mv-content {
		padding-top: 230px;
	}
	.mv-sub-text {
		margin: 8px 0 16px;
	}
	.page-title-wrap {
		padding-top: 50px;
	}
}

/* ============================================================ cta ============================================================ */
.cta-content {
    background: var(--navy);
    padding: 48px 0;
    text-align: center;
}
.cta-content p {
    color: var(--wh);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-content .btn a {
    background: #FFDB49;
    color: var(--navy);
    font-size: 32px;
    font-weight: 700;
    padding: 20px 50px;
    display: inline-block;
}
.cta-sns {
    background: var(--bg-navy);
    padding: 48px 0;
    text-align: center;
}
.sns-list {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
	flex-wrap: wrap;
}
.sns-list li {
    display: flex;
    justify-content: center;
    background: var(--wh);
    align-items: center;
    border-radius: 99px;
    font-size: 24px;
    font-weight: 700;
}
.sns-list li a {
    width: 100%;
    padding: 10px;
    width: 249px;
}
.sns-list li img {
    margin-right: 12px;
}
@media screen and (max-width:480px) {
	.cta-content {
		padding: 32px 1rem;
	}
	.cta-content .btn a {
		font-size: 24px;
		padding: 20px 24px;
	}
	.cta-content p {
		font-size: 20px;
	}
	.cta-sns {
		padding: 24px 0;
	}
	.sns-list {
		gap: 16px;
		padding: 0 0 1rem;
	}
}

/* ============================================================ case ============================================================ */
.case-1 {
    text-align: center;
    background: url(images/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.case-1 .content {
    background: var(--wh);
    padding: 40px 40px 64px;
	max-width: 1220px;
}
.case-1 h2 {
    margin-bottom: 40px;
    color: var(--navy);
}
.country {
    font-weight: 700;
    font-size: 18px;
    margin: 40px auto;
}
.case-1-list {
    display: flex;
    gap: 1rem;
	flex-wrap: wrap;
    justify-content: center;
}
.case-1-list li {
    background: var(--bg-navy);
    border-radius: 12px;
    padding: 24px 12px;
    width: 273px;
}
.case-1-list li h3 {
    font-size: 60px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -5%;
}
.case-1-list li h3 span {
    font-size: 24px;
}
.case-2-list li {
    background: var(--navy);
    display: flex;
    gap: 24px;
    align-items: center;
    color: var(--wh);
    padding: 14px 24px;
    max-width: 875px;
    margin: 0 auto 24px;
    border-radius: 12px;
}
.case-2-list li:last-child {
    margin-bottom: 0;
}
.case-2-list li h3 {
    color: #FFDB49;
    font-size: 24px;
}
.case-2-list li h3 span {
    font-size: 40px;
}
@media screen and (max-width:480px) {
	.case-1 .content {
		padding: 24px 16px;
	}
	.case-1 h2 {
		margin-bottom: 24px;
	}
	.country {
		margin: 24px auto;
	}
	.case-1-list {
		flex-direction: column;
    	align-items: center;
	}
	.case-1-list li {
		width: 100%;
    	max-width: 273px;
	}
	.case-2 h2 {
		font-size: 40px;
		line-height: 1;
	}
	.case-2 h2 span {
		font-size: 30px;
	}
	.case-2-list li {
		flex-direction: column;
    	gap: 16px;
		padding: 24px;
        text-align: center;
		line-height: 1.2;
	}
	.case-2-list li h3 {
		margin-bottom: 16px;
	}
	.case-2-list li h3 span {
		font-size: 30px;
	}
}

/* ============================================================ worries ============================================================ */
.worries {
    background: var(--bg-navy);
	padding: 112px 1rem;
}
.worries-list li {
    background: var(--wh);
    padding: 32px;
    margin-bottom: 40px;
    position: relative;
}
.worries-list li:last-child {
    margin-bottom: 0;
}
.worries-list li::before {
    content: "";
    background: url(images/parentheses-1.svg) center center / contain no-repeat;
    width: 46px;
    height: 46px;
    position: absolute;
    top: -5px;
    left: -5px;
}
.worries-list li::after {
    content: "";
    background: url(images/parentheses-2.svg) center center / contain no-repeat;
    width: 46px;
    height: 46px;
    position: absolute;
    bottom: -5px;
    right: -5px;
}
.worries-list li div {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 1rem;
}
.worries h3 {
    color: var(--navy);
}
@media screen and (max-width:480px) {
	.worries {
		padding: 72px 1rem;
	}
	.worries-list li {
		padding: 24px 16px;
		margin-bottom: 32px;
	}
	.worries-list li div {
		flex-direction: column;
		margin-bottom: 8px;
		gap: 16px;
	}
	.worries h3 {
		font-size: 20px;
	}
}

/* ============================================================ about ============================================================ */
.about {
    background: var(--navy);
	text-align: center;
}
.about .content {
    background: var(--wh);
	padding: 0 64px 64px;
}
.about h2 {
	background: var(--bg-navy);
    padding: 72px 32px 32px;
	font-size: 38px;
}
.about h2 span {
	font-size: 56px;
	background: linear-gradient(transparent 70%, #FFDB49 30%);
}
.about-h2-top {
	display: inline-block;
  	background: var(--wh);
  	border: 3px solid var(--navy);
  	padding: 6px 64px;
  	max-width: 100%;
  	box-sizing: border-box;
	position: relative;
	font-size: 38px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0;
	top: 40px;
}
.about-h2-top::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 18px solid var(--wh); 
}
.about-h2-top::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -22px;
	width: 0;
  	height: 0;
  	border-left: 27px solid transparent;
  	border-right: 27px solid transparent;
  	border-top: 20px solid var(--navy);
}
.about-text {
	font-size: 18px;
}
.about-img {
	max-width: 1092px;
	margin: 40px auto 0;
}
@media screen and (max-width:480px) {
	.about .content {
		padding: 0 16px 24px;
	}
	.about-h2-top {
		font-size: 24px;
		top: 24px;
		padding: 2px 40px;
		border: 2px solid var(--navy);
	}
	.about-h2-top::before {
		bottom: -21px;
	}
	.about h2 {
		padding: 50px 16px 16px;
		font-size: 20px;
	}
	.about h2 span {
		font-size: 28px;
	}
	.about-text {
		font-size: 15px;
	}
}

/* ============================================================ feature ============================================================ */
.feature {
    padding: 112px 0 150px;
}
.feature .content-wrap {
    max-width: 1440px;
}
.feature h3 {
	color: var(--navy);
	line-height: 1.2;
}
.feature-text {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 782px;
}
.feature-text img {
    max-width: 67px;
}
.feature-content {
    display: flex;
    gap: 40px;
    justify-content: right;
	align-items: flex-start;
    margin-bottom: 116px;
}
.feature-content .feature-img {
	width: 100%;
    max-width: 508px;
}
.reverse {
    flex-direction: row-reverse;
    justify-content: left;
}
.feature-content h4 {
    color: var(--light-navy);
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 12px;
	line-height: 1.2;
}
@media screen and (max-width:992px) {
	.feature-content {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:480px) {
	.feature {
		padding: 72px 1rem 112px;
	}
	.feature-content {
		flex-direction: column;
    	gap: 24px;
	}
	.feature-text {
		gap: 12px;
	}
	.feature-text img {
		max-width: 48px;
	}
	.feature-content h4 {
		font-size: 18px;
	}
	.feature-content {
		margin-bottom: 64px;
	}
}

/* ============================================================ voice ============================================================ */
.voice {
    background: var(--bg-navy);
}
.voice h2 {
	display: inline-block;
  	background: var(--wh);
  	border: 3px solid var(--navy);
  	padding: 10px 1em;
  	max-width: 100%;
  	box-sizing: border-box;
	position: relative;
	font-size: 43px;
	margin-bottom: 0;
	top: -120px;
	left: 50%;
  	transform: translateX(-50%);
}
.voice h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 18px solid var(--wh); 
}
.voice h2::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -22px;
	width: 0;
  	height: 0;
  	border-left: 27px solid transparent;
  	border-right: 27px solid transparent;
  	border-top: 20px solid var(--navy);
}
.voice h3 {
    font-size: 30px;
}
.voice-name {
    font-size: 44px;
    margin: 8px 0 32px;
    font-weight: 700;
    color: var(--navy);
}
.voice-content {
    display: flex;
    gap: 64px;
	align-items: flex-start;
    margin-bottom: 116px;
}
.voice-content img {
	width: 100%;
    max-width: 330px;
}
.clients {
	padding: 112px 1rem;
}
.clients h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 112px;
}
.clients h2:before,
.clients h2:after {
    content: "";
    height: 2px;
    flex-grow: 1;
    background: var(--navy);
}
.clients h2:before {
    margin-right: 1rem;
}
.clients h2:after {
    margin-left: 1rem;
}
@media screen and (max-width:480px) {
	.voice h2 {
		font-size: 24px;
		top: -100px;
	}
	.voice-content {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 64px;
	}
	.voice .voice-wrap {
		margin-top: -60px;
	}
	.voice-content img {
		max-width: 100%;
	}
	.voice-name {
		font-size: 32px;
		margin: 0 0 16px;
	}
	.voice h3 {
		font-size: 24px;
	}
	.clients {
		padding: 72px 1rem;
	}
	.clients h2 {
		margin-bottom: 24px;
	}
	.clients h2:before,
	.clients h2:after {
		content: none;
	}
}

/* ============================================================ plan ============================================================ */
.plan {
    background: var(--bg-navy);
    text-align: center;
}
.plan-content {
    background: var(--wh);
    padding: 32px 32px 24px;
    max-width: 809px;
    margin: 0 auto 40px;
    border-radius: 12px;
}
.plan-content h3 {
    background: var(--navy);
    padding: 4px;
    width: 100%;
    color: var(--wh);
    font-size: 24px;
    margin-bottom: 1rem;
}
.plan-content hr {
    background: var(--bg-navy);
    margin: 1rem auto;
    height: 2px;
    border: none;
}
.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}
.price span {
    font-size: 40px;
}
.plan-text {
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
}
@media screen and (max-width:480px) {
	.plan {
		padding: 40px 1rem;
	}
	.plan-content {
		padding: 16px;
		margin-bottom: 24px;
	}
	.plan-content h3 {
		font-size: 20px;
	}
	.plan-text {
		font-size: 18px;
	}
	.price {
		font-size: 20px;
	}
	.price span {
		font-size: 36px;
	}
}

/* ============================================================ flow ============================================================ */
.flow {
    background: var(--navy);
}
.flow h2  {
    color: var(--wh);
}
.flow-list li {
    background: var(--wh);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 8px;
    max-width: 809px;
    margin: 0 auto 24px;
}
.flow-list li:last-child {
    margin-bottom: 0;
}
.flow-list li.bg-none {
    background: none;
    padding: 0;
    text-align: center;
}
.flow-list li.bg-none img {
    margin: auto;
}
.flow-list h3 {
    color: var(--navy);
    font-size: 26px;
}
@media screen and (max-width:480px) {
	.flow {
		padding: 40px 1rem;
	}
	.flow-list li {
		flex-direction: column;
		gap: 8px;
	}
	.flow-list h3 {
		color: var(--navy);
		font-size: 24px;
	}
}

/* ============================================================ faq ============================================================ */
.faq-content {
    border: 2px solid var(--navy);
    margin-bottom: 40px;
}
.faq-content-f {
    background: var(--navy);
    color: var(--wh);
    display: flex;
    gap: 24px;
    padding: 18px 24px;
}
.faq-content-a {
    display: flex;
    gap: 24px;
    padding: 18px 24px;
}
@media screen and (max-width:480px) {
	.faq-content {
		margin-bottom: 24px;
	}
	.faq-content-f, .faq-content-a {
		gap: 16px;
		padding: 16px;
	}
}

/* ============================================================ company ============================================================ */
.company {
	padding: 112px 1rem;
}
.company-table {
  	border-collapse: collapse;
  	width: 100%;
	max-width: 809px;
	margin: auto;
	border-top: 1px solid var(--bg-navy);
}
.company-table td {
	border: none;
	vertical-align: middle;
    padding: 24px 40px;
}
.company-table td:first-child {
	font-weight: 700;
	white-space: nowrap;
    color: var(--navy);
}
.company-table tr {
    border-bottom: 1px solid var(--bg-navy);
}
@media (max-width: 480px) {
	.company {
		padding: 72px 1rem;
	}
	.company-table td {
		padding: 1rem 24px 1rem 0;
	}
}
.last {
    margin-bottom: 0;
}

/* ============================================================ contact ============================================================ */
.contact {
	padding: 0 1rem 112px;
}
.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 28px;
  height: 28px;
  margin: 0 8px 0 0;
  vertical-align: middle;
  background: url('images/check-1.svg') no-repeat center center / contain;
  cursor: pointer;
  border: none;
}
.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked {
  background: url('images/check-2.svg') no-repeat center center / contain;
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wpcf7-form-control {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.wpcf7-list-item {
	white-space: nowrap;
}
.cf7-check {
	margin-bottom: 64px;
}
.cf7-check-text {
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 24px;
}
.wpcf7-list-item {
	margin: 0 40px 1rem 0;
}
.cf7-table {
	width: 100%;
}
.contact .content {
	max-width: 880px;
    margin: auto;
}
.cf7-table tr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}
.cf7-table td {
	width: 100%;
	max-width: 664px;
}
.cf7-table th p {
	white-space: nowrap;
}
.cf7-table th p, .page-contact textarea {
	font-weight: 700;
	color: var(--navy);
}
.wpcf7-form-control-wrap {
	width: 100%;
}
.cf7-table input, .cf7-table textarea {
	background: var(--bg-navy);
	width: 100%;
	border-radius: 4px;
	padding: 10px;
}
.required {
	color: red;
}
.wpcf7-submit {
	background: var(--navy);
	font-size: 24px;
	font-weight: 700;
    margin: 1rem auto 0;
	text-align: center;
	padding: 1rem;
	width: 300px;
	color: var(--wh);
	border-radius: 99px;
	transition: .5s;
}
.wpcf7-submit:hover {
	opacity: .8;
	transition: .5s;
}
.submit-area {
	text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border: none;
	font-size: 12px;
	margin: 0.5rem auto 0;
	padding: 0;
	text-align: center;
}
.wpcf7-not-valid-tip {
	font-size: 12px;
}
.wpcf7-spinner {
	display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
	border: none;
}
.submit-area .wpcf7-form-control {
	justify-content: center;
}
@media screen and (max-width:480px) {
	.contact {
		padding: 0 1rem 72px;
	}
	.wpcf7 {
		font-size: 16px;
	}
	.cf7-check-text {
		margin-bottom: 16px;
	}
	.cf7-check {
		margin-bottom: 40px;
	}
	.cf7-table tr {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.wpcf7-list-item {
		white-space: wrap;
	}
	.wpcf7-list-item {
		margin-right: 0;
	}
}

/* ============================================================ btn ============================================================ */
#floating-btn {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 1rem;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
	display: inline-block;
	width: 100%;
	text-align: center;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
#floating-btn.show {
  opacity: 1;
  visibility: visible;
}
#floating-btn .sns-list li {
	background: none;
}
#floating-btn .sns-list {
	margin-top: 0;
	gap: 20px;
}
#floating-btn .sns-list li a {
	width: 100%;
	padding: 0;
}
#floating-btn .btn a {
	padding: 14px 40px;
    font-size: 24px;
}
#floating-btn .sns-list li img {
	margin-right: 0;
}
@media screen and (max-width:480px) {
	#floating-btn {
		flex-direction: column;
		padding: 1rem;
		gap: 1rem;
	}
	#floating-btn .btn a {
		padding: 14px 24px;
	}
	#floating-btn .sns-list {
		padding: 0;
	}
}

/* ============================================================ footer ============================================================ */
footer {
	padding-bottom: 2rem;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 95%;
	margin: auto;
	padding: 1rem;
}
.footer-content-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.875rem;
}
footer p {
    padding: 1em 0;
	text-align: center;
	font-size: 13px;
}

/* ============================================================ thanks ============================================================ */
.thanks {
	padding: 72px 1rem;
	text-align: center;
}
.thanks h2 {
	margin-bottom: 72px;
}
.thanks .h2-top {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}
.thanks div {
	background: var(--bg-navy);
	padding: 48px 1rem;
	max-width: 809px;
	margin: 0 auto 72px;
	border-radius: 24px;
}
.thanks a {
	color: var(--wh);
	background: var(--navy);
	padding: 1rem 40px;
	display: inline-block;
	border-radius: 99px;
	width: 400px;
}
@media screen and (max-width:480px) {
	.thanks a {
		width: 100%;
	}
}