


/* 

font-family: 'Montserrat', sans-serif;
font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体";
font-family:'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', serif

red
#EC3E44

black
#1B1D1E

gray
#F7F7F7

green
#04A948


*/




















*{
	margin: 0;
	padding: 0;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

img{
	vertical-align: bottom;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

button{
	background-color: transparent;
	border: 0px;
	cursor: pointer;
}

li{
	list-style: none;
}

a{
	text-decoration: none;
}




.header{
	width: 100%;
	height: 8rem;
	display: flex;
	justify-content: center;
	background-color: white;
	position: fixed;
	top: 0;
	z-index: 1000;
}

.header-container{
	width: calc(100vw * calc(1220 / 1280));
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 995px;
}

@media (max-width:995px) {
	.header-container{
		width: calc(100vw * calc(355 / 375));
		min-width: auto;
	}
}

.header-logo{
	width: 30.2rem;
	height: 4.5rem;
	transition-duration: 0.3s;
}
.header-logo:hover{
	opacity: 0.7;
}
@media (max-width:520px) {
	.header-logo{
		width: 14.5rem;
		height: 3.2rem;
	}
}

.header-nav-container{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 calc(100vw / 40);
}

@media (max-width:1115px) {
	.header-nav-item{
		display: none;
	}

}

.header-nav-anchor{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1B1D1E;
	transition-duration: 0.3s;
}
.header-nav-anchor:hover{
	opacity: 0.7;
}

.header-button{
	width: 17.2rem;
	height: 5.4rem;
	background-color: #EC3E44;
	border-radius: calc(5.4rem / 2);
	transition-duration: 0.3s;
}
.header-button:hover{
	opacity: 0.7;
}

.header-button-above{
	font-size: 1.8rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: white;
	letter-spacing: 0.1em;
}

.header-button-below{
	font-size: 1rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
}

@media (max-width:960px) {
	/* .header-button{
		width: 14.783rem;
		height: 4.641rem;
		border-radius: calc(4.641rem / 2);
	}
	.header-button-above{
		font-size: 1.5rem;
	} */
	.header-logo{
		width: 15.1rem;
		height: 5.5rem;
	}
}










.font-color-red{
	color: #EC3E44;
}

.mv{
	width: 100%;
	height: calc(100vh - 8rem);
	position: relative;
	padding-top: 8rem;
	box-sizing: content-box;
}

.mv-image{
	width: 100%;
	height: 100%;
}

.mv-image-inner{
	object-fit: cover;
	object-position: right;
}

@media (max-width:960px) {
	.mv-image-inner{
		object-position: 80% 50%;
	}
}
.mv-catch{
	position: absolute;
	bottom: 8.6rem;
	left: 10rem;
}

.mv-catch-above{
	font-size: 11.7rem;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	position: relative;
	z-index: 1;
	width: max-content;
}
.mv-catch-above::before{
	content: "";
	position: absolute;
	width: 110%;
	height: 11.6rem;
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	z-index: -1;
	left: -2.5rem;
}
.mv-catch-below{
	font-size: 11.7rem;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	/* margin-top: 2rem; */
	margin-bottom: 2.6rem;
	position: relative;
	z-index: 1;
	width: max-content;
}
.mv-catch-below::before{
	content: "";
	position: absolute;
	width: 110%;
	height: 11.6rem;
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	z-index: -1;
	left: -2.5rem;
}
.mv-catch-small{
	font-size: 2.8rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 1;
	width: max-content;
}
.mv-catch-small::before{
	content: "";
	position: absolute;
	width: 110%;
	height: 100%;
	background-color: white;
	z-index: -1;
	left: -2.5rem;
}
@media (max-width:960px) {
	.mv-catch{
		left: 2.5rem;
	}
	.mv-catch-above{
		font-size: 5rem;
	}
	.mv-catch-above::before{
		left: -1rem;
		height: 80%;
	}
	.mv-catch-below{
		font-size: 5rem;
		margin-bottom: 1rem;
	}
	.mv-catch-below::before{
		left: -1rem;
		height: 80%;
	}
	.mv-catch-small{
		font-size: 2rem;
	}
	.mv-catch-small::before{
		left: -1rem;
	}
}






.subtitle-en{
	color: #EC3E44;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	width: max-content;
	margin: 0 auto;
	padding-bottom: 1.05rem;
}

.subtitle-ja{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: white;
	background-color: #EC3E44;
	width: max-content;
	margin: 0 auto;
	padding-left: 0.6rem;
	padding-right: 0.6rem
}

.br-sp-use{
	display: none;
}

@media (max-width:520px) {
	.br-sp-none{
		display: none;
	}
	.br-sp-use{
		display: block;
	}
}

.corp{
	width: 100%;
	position: relative;
}

.corp-title{
	padding-top: 6.9rem;
}

.pitch{
	width: 79.3rem;
	height: 51.235rem;
	margin: 0 auto;
	margin-top: 3.05rem;
	padding-bottom: 6.9rem;
}

@media (max-width:960px) {
	.pitch{
		width: calc(100vw * calc(335 / 375));
		height: calc(100vw * calc(216.44 / 375));
	}
}

.corp-image{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
}






.message{
	width: 100%;
	position: relative;
}

.message-title{
	padding-top: 10rem;
}

.message-container{
	width: calc(100vw - 2rem);
	padding-left: 2rem;
	margin: 0 auto;
	max-width: 126rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 1rem;
}

.message-text{
	flex: 1;
	max-width: 47.9rem;
	padding-top: 6.9rem;
	padding-left: 8rem;
}
@media (max-width:1080px) {
	.message-text{
		padding-left: 0;
	}
}

.message-catch{
	font-size: 2.3rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	color: #1B1D1E;
	letter-spacing: 0.1em;
	line-height: calc(37 / 23);
}

.message-script{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1B1D1E;
	line-height: calc(35 / 16);
	padding-top: 5rem;
}

.message-image{
	max-width: 64.1rem;
	max-height: 53.9rem;
	width: calc(100vw * calc(641 / 1280));
	height: calc(100vw * calc(539 / 1280));
	position: relative;
	top: 7rem;
	border-radius: 6px;
	overflow: hidden;
}

@media (max-width:960px) {
	.message-container{
		flex-direction: column-reverse;
		padding-left: 0;
		width: calc(100vw * calc(335 / 375));
		padding-top: 5rem;
		justify-content: center;
		padding-bottom: 10rem;
	}

	.message-text{
		padding-top: 3rem;
	}

	.message-image{
		top: 0;
		width: 47.9rem;
		height: auto;
	}
}
@media (max-width:520px) {
	.message-text{
		max-width: 33.5rem;
	}

	.message-image{
		top: 0;
		width: 33.5rem;
		height: 25.1rem;
	}
}







.work{
	background-color: #F7F7F7;
}

.work-container{
	width: calc(100vw * calc(1080 / 1280));
	margin: 0 auto;
	min-width: 91.6rem;
	max-width: 108rem;
}

.work-title{
	margin-left: 0;
	padding-top: 7.9rem;
}

.work-title-ja{
	margin-left: 0;
	margin-bottom: 5rem;
}

.work-wrapper{
	display: flex;
	justify-content: space-between;
	padding-bottom: 6.6rem;
	gap: 0 3rem;
}
@media (max-width:1280px) {
	.work-wrapper{
		gap: 0 calc(100vw * calc(30 / 1280));
	}
}

.work-unit{
	width: calc(100vw * calc(340 / 1280));
	min-width: 29rem;
}

.work-unit-image{
	max-width: 34rem;
	max-height: 22.8rem;
	position: relative;
	width: calc(100vw * calc(340 / 1280));
	height: calc(100vw * calc(228 / 1280));
	min-width: 28.9rem;
	min-height: 19.3797rem;
}

@media (max-width:960px) {
	.work-title{
		margin: 0 auto;
		padding-top: 3rem;
	}
	
	.work-title-ja{
		margin: 0 auto;
		margin-bottom: 5rem;
	}

	.work-container{
		width: calc(100vw * calc(335 / 375));
		min-width: auto;
	}

	.work-wrapper{
		flex-direction: column;
		align-items: center;
		gap: 3rem 0;
		padding-bottom: 3rem;
	}

	.work-unit{
		width: 33.5rem;
	}

	.work-unit-image{
		width: 33.5rem;
		height: 22.8rem;
	}
}

.work-unit-num1{
	width: 10.3rem;
	height: 12.2rem;
	position: absolute;
	bottom: -1.1rem;
}

.work-unit-num2{
	width: 12.4rem;
	height: 12.2rem;
	position: absolute;
	bottom: -1.1rem;
}

.work-unit-title{
	font-size: 2rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	color: #1B1D1E;
	padding-top: 3.2rem;
	padding-bottom: 2.1rem
}

.work-unit-text{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	color: #1B1D1E;
}















.numinfo{
	width: 100%;
}

.numinfo-title{
	padding-top: 10rem;
}

.numinfo-title-ja{
	padding-left: 3.6rem;
	padding-right: 3.6rem;
}

.numinfo-container{
	width: max-content;
	padding-top: 5rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: calc(100vw * calc(515 / 1280)) calc(100vw * calc(515 / 1280));
	grid-gap: 5rem 5rem;
}

@media (min-width:1280px) {
	.numinfo-container{
		grid-template-columns: 51.5rem 51.5rem;
	}
}

@media (max-width:960px) {
	.numinfo-container{
		grid-template-columns: calc(100vw * calc(335 / 375));
	}
}

.numinfo-unit{
	/* height: 22rem; */
	/* width: calc(100vw * calc(515 / 1280)); */
	border: 3px solid #EC3E44;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-top: 3rem;
	padding-bottom: 3rem;
	text-align: right;
}

.numinfo-unit-title{
	font-size: 2.3rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1B1D1E;
	letter-spacing: 0.1em;
}

.numinfo-unit-num{
	font-size: 3.5rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	color: #EC3E44;
	letter-spacing: 0.1em;
}

.numinfo-unit-inner{
	font-size: 10rem;
	font-style: italic;
	letter-spacing: 0;
	padding-right: 0.8rem;
	font-family: 'Montserrat', sans-serif;
}

@media (max-width: 960px) {
	.numinfo-container{
		grid-gap: 2rem 2rem;
	}
}







.recruit{
	width: 100%;
	padding-bottom: 10rem;
}

.recruit-title{
	padding-top: 10rem;
}

.recruit-explaintext{
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #1B1D1E;
	letter-spacing: 0.05em;
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.recruit-table{
	width: 77.9rem;
	margin: 0 auto;
	border-spacing: 0;
	margin-top: 7rem;
	box-shadow: 0 3px 3px rgba(70,73,75,0.16);
}

.recruit-table-toppage{
	margin-top: 0;
}

@media (max-width:960px) {
	.recruit-table{
		box-shadow: none;
	}
}

.recruit-container{
	display: flex;
	flex-direction: column;
	border-top: 1px solid #DBDBDB;
	border-left: 1px solid #DBDBDB;
	border-right: 1px solid #DBDBDB;
}

@media (max-width:960px) {
	.recruit-table{
		width: calc(100vw * calc(335 / 375));
	}

	.recruit-container{
		border-left: 0px solid #DBDBDB;
		border-right: 0px solid #DBDBDB;
	}
}

.recruit-unit{
	width: 100%;
	border-bottom: 1px solid #DBDBDB;
	display: flex;
	align-items: center;
	position: relative;
}

.recruit-unit-toppage{
	transition-duration: 0.2s;
	transition-property: opacity;
}

.recruit-unit-toppage:hover{
	opacity: 0.8;
}

.recruit-unit-toppage:hover .recruit-unit-toppage-arrow{
	transform: translateX(1rem);
}

.recruit-unit-toppage-arrow{
	position: absolute;
	right: 3rem;
	width: 1.2rem;
	height: 2.8rem;
	transition-duration: 0.2s;
	transition-property: transform;
}

.recruit-unit-toppage-arrow::after{
	content: "";
	position: absolute;
	width: 2px;
	height: 1.4rem;
	background-color: #EC3E44;
	transform: rotateZ(45deg);
	transform-origin: top;
	bottom: 0.5px;
	right: 0;
	border-radius: 1px;
}

.recruit-unit-toppage-arrow::before{
	content: "";
	position: absolute;
	width: 2px;
	height: 1.4rem;
	background-color: #EC3E44;
	transform: rotateZ(-45deg);
	transform-origin: bottom;
	top: 0.5px;
	right: 0;
	border-radius: 1px;
}

.recruit-unit-link{
	width: 100%;
	height: 100%;
}

@media (max-width:960px) {
	.recruit-unit{
		border-right: 0;
		border-left: 0;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}

.recruit-unit-tilte{
	font-size: 1.6rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1B1D1E;
	width: 26.2rem;
	background-color: #F1F1F1;
	text-align: left;
	padding-left: 4rem;
	padding-right: 4rem;
	box-sizing: border-box;
	line-height: calc(27 / 16);
	align-self: stretch;
	display: flex;
	align-items: center;
}

.recruit-unit-title-toppage{
	color: white;
	background-color: #EC3E44;
}

@media (max-width:960px) {
	.recruit-unit-tilte{
		background-color: transparent;
		padding: 0;
		color: #1B1D1E;
	}
}

.recruit-unit-content{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1B1D1E;
	padding-top: 2.3rem;
	padding-bottom: 2.1rem;
	padding-left: 3rem;
	padding-right: 3rem;
	word-break: break-word;
	box-sizing: border-box;
	line-height: calc(27 / 16);
	flex: 1;
}

.recruit-unit-content-toppage{
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

@media (max-width:960px) {
	.recruit-unit-content{
		padding: 0;
		padding-top: 2rem;
	}
}







.form{
	width: 100%;
	background-color: #F4F4F4;
	padding-bottom: 7rem;
}

.form-title{
	padding-top: 7rem;
}

.form-top-text{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: #494345;
	letter-spacing: 0.05em;
	line-height: calc(19 / 16);
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.form-container{
	width: 66.3rem;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding-bottom: 3rem;
}

@media (max-width:960px) {
	.form-container{
		width: calc(100vw * calc(335 / 375));
	}
}

.form-unit{
	width: 100%;
	padding-bottom: 3rem;
}

.form-unit-title{
	font-size: 1.6rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: #494345;
	padding-bottom: 1rem;
}

.req{
	font-size: 1.2rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
	padding-left: 0.9rem;
	padding-right: 0.9rem;
	position: relative;
	z-index: 1;
	margin-left: 1rem;
}

.req::after{
	content: "";
	width: 100%;
	height: 100%;
	background-color: #EC3E44;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 6px;
}

input{
	width: 100%;
	font-size: 1.6rem;
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
	padding-left: 1.5rem;
	border-radius: 6px;
	border: 1px solid #A8A8B4;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	box-sizing: border-box;
}

.privacy{
	width: 50.1rem;
	height: 14rem;
	background-color: white;
	margin: 0 auto;
	border: 1px solid #A8A8B4;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
}

.privacy-container{
	width: 100%;
	height:100%;
	overflow-x: hidden;
	overflow-y: scroll;
	box-sizing: border-box;
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 1.8rem;
	padding-right: 1.8rem;
}

.privacy-frame{
	width: 100%;
	height: auto;
}

.privacy-inner{
	font-size: 1.4rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: calc(27 / 14);
}

@media (max-width:520px) {
	.privacy{
		width: calc(100vw * calc(335 / 375));
	}	
}




.check-container{
	display: flex;
	margin: 0 auto;
	width: max-content;
	padding-top: 3rem;
}

.check-label{
	width: 2rem;
	height: 2rem;
	border: 1px solid #707070;
	background-color: white;
	cursor: pointer;
	position: relative;
}

.check-input{
	display: none;
}

.check-label_checked::after{
	content: "";
	position: absolute;
	width: 1rem;
	height: 0.5rem;
	border-bottom: 3px solid #EC3E44;
	border-left: 3px solid #EC3E44;
	transform: rotateZ(-45deg);
	top: 0.5rem;
	left: 0.4rem;
}

/* input[type="checkbox"]:checked + .wpcf7-list-item-labels:after {/*チェックアイコン
	content: "";
	position: absolute;
	width: 1rem;
	height: 0.5rem;
	border-bottom: 3px solid #EC3E44;
	border-left: 3px solid #EC3E44;
	transform: rotateZ(-45deg);
	top: 0.5rem;
	left: 0.4rem;
} */

.check-text{
	width: max-content;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	color: #494345;
	padding-left: 1rem;
}

.form-button{
	width: 22rem;
	height: 5.7rem;
	background-color: #EC3E44;
	border-radius: calc(5.7rem / 2);
	margin: 0 auto;
	display: block;
	margin-top: 5rem;
	transition-duration: 0.3s;
}
.form-button:hover{
	opacity: 0.7;
}

.form-button-inner{
	font-size: 1.6rem;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
	letter-spacing: 0.2em;
}

.fa-angle-right{
	padding-left: 1.86rem;
}



.footer{
	width: 100%;
	height: 24.1rem;
	background-color: #1B1D1E;
}

.footer-container{
	width: calc(100vw * calc(1080 / 1280));
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer-left{
	display: flex;
	flex-direction: column;
	padding-top: 3.8rem;
	height: max-content;
}

.footer-logo{
	width: 24.2rem;
	height: 8.3rem;
	transition-duration: 0.3s;
}
.footer-logo:hover{
	opacity: 0.7;
}

.corp-link{
	width: max-content;
	margin-top: 3rem;
	transition-duration: 0.3s;
}
.corp-link:hover{
	opacity: 0.7;
}

.corp-link-inner{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
}

.fa-up-right-from-square{
	margin-left: 1rem;
	width: max-content;
}

.copy{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: white;
	align-self: flex-end;
	padding-bottom: 1.8rem;
}

@media (max-width:960px) {
	.footer-container{
		flex-direction: column;
		align-items: center;
	}

	.copy{
		align-self: center;
	}
}

.wpcf7-not-valid{
	border: 1px solid red;
}

.wpcf7-form-control-wrap{
	position: relative;
}

.wpcf7-not-valid-tip{
	opacity: 0;
	text-align: right;
	font-size: 1.2rem;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	font-weight: 400;
	position: absolute;
	right: 0;
	bottom: -5rem;
}

.wpcf7-response-output{
	text-align: center;
	margin-top: 2rem;
	color: red;
	font-size: 1.3rem;
}


.mail-page-show{
	display: none;
}



.thanks{
	background-color: #F3F6F8;
	padding-top: 8rem;
	padding-bottom: 4.1rem;
}

.thanks-container{
	width: calc(100vw * calc(987 / 1280));
	margin: 0 auto;
}

.thanks-title{
	font-size: 4.9rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #E32E40;
	text-align: center;
	padding-top: 7.2rem;
}

.thanks-subtitle{
	font-size: 2.3rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: #494345;
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
	padding-top: 1.9rem;
	padding-bottom: 7.54rem;
}

.thanks-text{
	font-size: 1.6rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	color: #494345;
	line-height: calc(36 / 16);
	text-align: center;
}

.thanks-red-text{
	text-align: center;
	padding-top: 2.5rem;
	font-size: 2rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	color: #E32E40;
}

.thanks-itemizations{
	margin: 0 auto;
	width: max-content;
	max-width: 100%;
}

.thanks-itemizations .itemization{
	text-align: left;
	width: max-content;
	max-width: 100%;
	line-height: calc(27 / 16);
}

.thanks-box{
	padding-top: 5rem;
	padding-bottom: 5rem;
	width: 100%;
	background-color: white;
	margin: 0 auto;
	margin-top: 4.3rem;
	border-radius: 2.8rem;
	box-sizing: border-box;
	padding-left: 2rem;
	padding-right:2rem;
}

.sp-use{
	display: none;
}

@media (max-width:520px){
	.thanks-container{
		width: calc(100vw * calc(350 / 375));
	}

	.sp-use{
		display: block;
	}

}

