*{
	margin: 0;
	padding: 0;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}

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

body{
	overflow: hidden;
}

main{
	overflow: hidden;

}

.header{
	width: 100%;
	height: 8.4rem;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	position: fixed;
	z-index: 1000;
	background-color: white;
}

.header-container{
	width: calc(100% - 4rem);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
}

.header-logobox{
	width: 23.3rem;
	height: 6.2rem;
}

.nav{
	display: flex;
	align-items: center;
}

.nav-item{
	padding-left: calc(100vw * calc(15 / 1280));
	padding-right:  calc(100vw * calc(15 / 1280));
	list-style: none;
}

.nav-anchor{
	color: #333333;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: bold;
	position: relative;
	transition-duration: 0.3s;
	transition-property: color;
}

.nav-anchor::after{
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 100%;
	position: absolute;
	opacity: 0;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1rem;
	transition-duration: 0.3s;
	transition-property: opacity transform;
}

.nav-anchor:hover::after{
	opacity: 1;
	bottom: -1rem;
}

.header-button{
	margin-left: 1.5rem;
	width: 19rem;
	height: 6.2rem;
	border-radius: calc(6.2rem / 2);
	border: 0px;
	background-color: #E494A4;
}

.header-button:hover{
	cursor: pointer;
	transform: translateY(0.5rem);
	transition-duration: 0.3s;
	transition-property: transform;
}

.header-button-inner{
	font-size: 1.6rem;
	color: white;
	font-weight: bold;
}
@media (max-width:960px) {

	.header{
		height: 6rem;
	}

	.header-container{
		width: calc(100% - 2rem);
	}

	.nav-item{
		display: none;
	}

	.header-button{
		width: 15rem;
		height: 5rem;
		border-radius: calc(5rem / 2);
	}

	.header-logobox{
		width: 15.8rem;
		height: 5rem;
	}
}

.header-container-above{
	width: 100%;
	height: 3rem;
	border-bottom: 1px solid #C7C7C7;
	display: none;
	align-items: center;
}

.sns-header-box{
	width: max-content;
	margin-left: auto;
	margin-right: 0;
	display: flex;
	align-items: center;
	padding-right: 1.1rem;
}

.sns-header-unit{
	margin-left: 0.9rem;
	margin-right: 0.9rem;
}

.sns-header-inner{
	font-size: 2.2rem;
	color: #838383;
	transition-duration: 0.3s;
	transition-property: color;
}

.sns-header-inner:hover{
	color: #333333;
}

@media (max-width:960px) {
	.header-container-above{
		height: 2.65rem;
	}

	.sns-header-inner{
		font-size: 1.972rem;
	}
}















.mv{
	padding-top: 8.4rem;
	box-sizing: border-box;
	height: 100vh;
	width: 100%;
	position: relative;
}

@media (max-width:1020px) {
	.mv{
		padding-top: 6rem;
	}
}

.mv-inner{
	object-fit: cover;
}

.catch-box{
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 10rem;
	padding-top: 4.2rem;
}

.catch{
	position: relative;
	font-size: 7rem;
	z-index: 1;
	width: max-content;
}

.catch-middle{
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.catch::after{
	content: "";
	width: 100%;
	height: 110%;
	background-color: white;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
	border-radius: 6px;
	padding-left: 2rem;
	padding-right: 2rem;
}

.scroll-down{
	width: 12rem;
	height: 3.6rem;
	background-color: #333333;
	position: absolute;
	bottom: 2.6rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: calc(3.6rem / 2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: 0.3s;
	transition-property: bottom;
	border: 0;
}

.scroll-down:hover{
	cursor: pointer;
	transform: translateY(0.5rem) translateX(-50%);
	transition-duration: 0.3s;
	transition-property: transform;
}

.arrow{
	position: absolute;
	width: 2.2rem;
	height: 2.2rem;
	background-color: white;
	border-radius: 100%;
	left: 0.6rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: bold;
}

.scroll-down-inner{
	color: white;
	font-size: 1.6rem;
	font-weight: bold;
	padding-left: 1rem;
}

@media (max-width:960px) {
	.catch{
		font-size: 3.8rem;
	}

	.catch-box{
		position: absolute;
		top: auto;
		bottom: 12.6rem;
		left: 2rem;
		padding-top: 4.2rem;
		transform: translateY(0);
	}

	.catch::after{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}





.archive-container{
	width: 86rem;
	margin: 0 auto;
	padding-top: 10rem;
}

.archive-unit{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 3rem;
	margin-bottom: 3rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}

.archive-unit-imagebox{
	width: 30rem;
	height: 25rem;
}

.archive-unit-anchor{
	transition: 0.3s;
}

.archive-unit-anchor:hover{
	opacity: 0.7;
}

.archive-unit-image{
	object-fit: cover;
}

.archive-unit-textbox{
	width: 40rem;
	padding-right: 2rem;
}

.archive-unit-text{
	font-size: 1.7rem;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
}

@media (max-width:960px) {
	.archive-container{
		width: 33.5rem;
		margin: 0 auto;
		padding-top: 10rem;
	}
	
	.archive-unit{
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-top: 3rem;
		margin-bottom: 3rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
		border-top: 1px solid black;
		border-bottom: 1px solid black;
	}
	
	.archive-unit-textbox{
		width: 100%;
		padding-top: 2rem;
		padding-right: 0;
	}
}



















.entry-fixed{
	width: 13.6rem;
	height: 13.2rem;
	border-top-left-radius: 51%;
	border-top-right-radius: 49%;
	border-bottom-left-radius: 45%;
	border-bottom-right-radius: 47%;
	position: fixed;
	bottom: 5rem;
	right: 5rem;
	z-index: 900;
	border: 0px;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	transition-duration: 0.2s;
	transition-property: opacity visibility;
	box-shadow: 0px 0px 10px 0.5px white;
}

.entry-fixed:hover{
	cursor: pointer;
	transform: translateY(0.5rem);
	transition-duration: 0.3s;
	transition-property: transform;
}

.entry-fixed-none{
	opacity: 0;
	visibility: hidden;
}

@media (max-width:960px) {
	.entry-fixed{
		width: 10rem;
		height: 9.5rem;
		bottom: 3rem;
		right: 2rem;
	}
}

.entry-fixed::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	filter: brightness(95%);
	left: 0%;
	top: -30%;
	border-radius: 100%;
}

.entry-fixed::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	filter: brightness(97%);
	bottom: -30%;
	left: -30%;
	z-index: 1;
	border-radius: 100%;
}

.entry-fixed-lg{
	position: relative;
	z-index: 1;
	font-size: 1.8rem;
	color: white;
	padding-top: 2rem;
}

.entry-fixed-lg-sm{
	font-size: 1.4rem;
	color: white;
}

.entry-fixed-med{
	position: relative;
	z-index: 1;
	font-size: 1.5rem;
	color: white;
}

.entry-fixed-arrow{
	position: relative;
	z-index: 1;
	font-size: 1.8rem;
	color: white;
}

@media (max-width:960px) {
	.entry-fixed-lg{
		font-size: 1.4rem;
		padding-top: 1rem;
	}
	
	.entry-fixed-lg-sm{
		font-size: 1.0rem;
	}
	
	.entry-fixed-med{
		font-size: 1.1rem;
	}
	
	.entry-fixed-arrow{
		font-size: 1.4rem;
	}
}






.loading{
	width: 100%;
	height: 100%;
	background-color: #F4F2EF;
	z-index: 5000;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
}

@keyframes loadingarea {
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		display: none;
	}
}

.loading-text{
	font-size: 2.6rem;
	font-weight: 600;
}

.loading-bar{
	width: 38.4rem;
	height: 1.4rem;
	margin-top: 2rem;
	background-color: white;
	border-radius: calc(1.4rem / 2);
	overflow: hidden;
	border: 2px solid white;
	box-sizing: border-box;
}

.loading-bar-inner{
	width: 0%;
	height: 100%;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
}

@keyframes loading {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

@media (max-width:960px) {
	.loading-text{
		font-size: 2.2rem;
		font-weight: 600;
	}

	.loading-bar{
		width: 26rem;
		height: 1.2rem;
		margin-top: 2rem;
		background-color: white;
		border-radius: calc(1.2rem / 2);
	}
}








.sub-title{
	font-size: 6.2rem;
	text-align: center;
}

.sub-title-min{
	font-size: 1.6rem;
	text-align: center;
	padding-top: 1rem;
}

.accessory{
	height: 8px;
	width: 8px;
	background-color: #599BC9;
	border-radius: 50%;
	position: relative;
	margin: 0 auto;
	margin-top: 3rem;
}

@media (max-width:960px) {
	.accessory{
		margin-top: 2rem;
	}

	.sub-title-min{
		padding-top: 0.5rem;
	}
}

.accessory::after{
	content: "";
	position: absolute;
	height: 8px;
	width: 8px;
	background-color: #EC614C;
	border-radius: 50%;
	left: -2.4rem;

}

.accessory::before{
	content: "";
	position: absolute;
	height: 8px;
	width: 8px;
	background-color: #FDC851;
	border-radius: 50%;
	right: -2.4rem;
}

@media (max-width:960px) {
	.sub-title{
		font-size: 4.2rem;
		text-align: center;
	}
	
	.sub-title-min{
		font-size: 1.4rem;
		text-align: center;
	}
}

.pitch{
	padding-bottom: 10rem;
	padding-top: 10rem;
}

.pitch-title{
	font-size: 3.2rem;
	text-align: center;
}

.pitch-box{
	width: calc(100vw * calc(739 / 1280));
	height: calc(100vw * calc(545 / 1280));
	margin: 0 auto;
	margin-top: 4rem;
}

@media (max-width:960px) {
	.pitch{
		padding-bottom: 10rem;
		padding-top: 6rem;
	}
	
	.pitch-title{
		font-size: 2.6rem;
		text-align: center;
	}
	
	.pitch-box{
		width: calc(100vw * calc(335 / 375));
		height: calc(100vw * calc(215.03 / 375));
		margin: 0 auto;
		margin-top: 2rem;
	}
}





.message{
	padding-top: 10rem;
	padding-bottom: 10rem;
	position: relative;
	background-image: repeating-linear-gradient(45deg, transparent,transparent 6px,rgba(255, 255, 255, 0.1) 6px,rgba(255, 255, 255, 0.1) 8px);
}

.message-text{
	width: 92rem;
	margin: 0 auto;
	margin-top: 4rem;
	position: relative;
}

.message-text-inner{
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 10rem;
	padding-right: 10rem;
	background-color: white;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: calc(36 / 18);
	border-radius: 20px;
}

@media (max-width:960px) {
	.message{
		padding-top: 8rem;
		padding-bottom: 8rem;
		position: relative;
	}

	.message-text{
		width: calc(100% * calc(335 / 375));
		margin: 0 auto;
		margin-top: 3rem;
		position: relative;
	}

	.message-text-inner{
		padding-right: 4rem;
		padding-left: 4rem;
		font-size: 1.6rem;
	}
}

.message-dot1{
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: absolute;
	background-color: black;
	top: 20px;
	left: 20px;
}
.message-dot2{
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: black;
}
.message-dot3{
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: black;
}
.message-dot4{
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: absolute;
	bottom: 20px;
	right: 20px;
	background-color: black;
}

.border-top{
	width: 100%;
	top: 0.5rem;
	position: absolute;
}

.border-bottom{
	width: 100%;
	bottom: 0.5rem;
	position: absolute;
	transform: rotateZ(180deg);
}

.border-container{
	width: 100%;
	min-width: 1280px;
	display: flex;
	align-items: flex-end;
}

.one{
	width: calc(100vw / 16);
	height:  calc(100vw / 32);
	min-width: calc(1280px / 16);
	min-height: calc(1280px / 32);
	background-color: transparent;
	clip-path: circle(-10% at center);
	border-radius: 100%;
	box-shadow: 0px -1.25vw 0px 0.4vw white;
}

@media (max-width: 1280px) {
		.one{
			box-shadow: 0px -17px 0px 5px white;
		}
}


.work{
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.work-unit{
	width: 92rem;
	margin: 0 auto;
	padding-top: 3rem;
}

.work-item{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.--reversi{
	flex-direction: row-reverse;
	margin-top: 6rem;
	margin-bottom: 6rem;
}

.work-imagebox{
	width: 44rem;
	height: 30rem;
	border-radius: 20px;
	overflow: hidden;
}

.work-image{
	object-fit: cover;
	object-position: center;
}

.work-textbox{
	width: 40rem;
}

.work-unit-title{
	font-size: 2.8rem;
	font-weight: bold;
	color: #333333;
}

.work-unit-text{
	font-size: 1.6rem;
	font-weight: 400;
	line-height: calc(26 / 16);
	padding-top: 2.2rem;
	color: #333333;
}

@media (max-width:960px) {
	.work{
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.work-unit{
		width: calc(100vw * calc(335 / 375));
		margin: 0 auto;
		padding-top: 3rem;
	}

	.work-item{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.--reversi{
		margin-top: 4rem;
		margin-bottom: 4rem;
	}
	
	.work-imagebox{
		width: calc(100vw * calc(335 / 375));
		height: calc(100vw * calc(224 / 375));
		border-radius: 20px;
		overflow: hidden;
	}
	
	.work-image{
		object-fit: cover;
		object-position: center;
	}
	
	.work-textbox{
		width: 100%;
	}
	
	.work-unit-title{
		font-size: 2.8rem;
		font-weight: bold;
		color: #333333;
		padding-top: 2rem;
	}
	
	.work-unit-text{
		font-size: 1.6rem;
		font-weight: 400;
		line-height: calc(26 / 16);
		padding-top: 2.2rem;
		color: #333333;
	}
}







.num{
	padding-top: 10rem;
	padding-bottom: 10rem;
	position: relative;
	background-color: #fff;
	background-image:
		radial-gradient(rgba(255, 255, 255, 0.5) 10%, transparent 10%),
		radial-gradient(rgba(255, 255, 255, 0.5) 10%, transparent 10%);
	background-size: 40px 40px;
	background-position: 0 0, 20px 20px;
}

.num::after{
	content: "";
	width: 100%;
	height: 20px;
	position: absolute;
	background-color: white;
	top: -1px;
	clip-path: polygon(0% 0%,100% 0%,100% 50%,80% 0%,50% 50%,20% 30%,10% 0%,0% 10%);
}

.num::before{
	content: "";
	width: 100%;
	height: 20px;
	position: absolute;
	background-color: #FAFAFA;
	bottom: -1px;
	transform: rotateZ(180deg);
	clip-path: polygon(0% 0%,100% 0%,100% 50%,80% 0%,50% 50%,20% 30%,10% 0%,0% 10%);
}

.num-container{
	width: 92rem;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 7rem;
	justify-content: center;
	gap: 4rem 10rem;
	max-width: 92rem;
}

.num-box{
	width: 28rem;
	height: 27.1rem;
	background-color: white;
	position: relative;
	border-radius: 2rem;
}

.num-box-imagebox{
	width: 7rem;
	height: 6rem;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.num-box-image{
	object-fit: contain;
	object-position: center;
}

.num-box-title{
	font-size: 2.8rem;
	text-align: center;
	padding-top: 4.4rem;
	font-weight: bold;
	color: #333333;
}

.num-box-container{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.num-box-unit{
	font-size: 2.2rem;
	font-weight: 500;
}

.num-box-num{
	font-size: 10rem;
	font-weight: bold;
}

.num-color1{
	color: #98BAE8;
}

.num-color2{
	color: #E494A4;
}

.num-color3{
	color: #88C7C6;
}

.num-color4{
	color: #FDCE5B;
}

.num-color5{
	color: #97CFED;
}

.num-color6{
	color: #E6A5B2;
}

@media (max-width:960px){
	.num{
		padding-top: 6rem;
		padding-bottom: 6rem;
		background-color: beige;
		position: relative;
	}

	.num-container{
		width: 33.5rem;
		gap: 5rem 1.5rem!important;
		padding-top: 3rem;
	}

	.num-box{
		width: 16rem;
		height: 15rem;
	}

	.num-box-imagebox{
		width: 6rem;
		height: 5rem;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
	
	.num-box-image{
		object-fit: contain;
		object-position: center;
	}
	
	.num-box-title{
		font-size: 1.8rem;
		padding-top: 3rem;
	}
	
	.num-box-unit{
		font-size: 1.4rem;
	}
	
	.num-box-num{
		font-size: 5.8rem;
	}
}







.insta-area{
	width: 100%;
	padding-top: 10rem;
	padding-bottom: 10rem;
	background-color: #FAFAFA;
	position: relative;
}

.insta-area::before{
	content: "";
	width: 100%;
	height: 20px;
	position: absolute;
	background-color: white;
	bottom: -1px;
	transform: rotateZ(180deg);
	clip-path: polygon(0% 0%,100% 0%,100% 50%,80% 0%,50% 50%,20% 30%,10% 0%,0% 10%);
}

.insta-area-container{
	width: 92rem;
	height: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: 3rem;
	gap: 0rem 4rem;
}

.insta-area-block{
	width: 28rem;
	height: auto;
	overflow: hidden;
	position: relative;
}

iframe{
	max-width: 100%!important;
	max-height: 100%!important;
	min-width: auto!important;
	min-height: auto!important;
	box-sizing: border-box;
	width: 100%;
}

.instagram-media-registered{
	max-width: 100%!important;
	max-height: 100%!important;
	min-width: auto!important;
	min-height: auto!important;
	box-sizing: border-box;
	width: 100%;
}

@media (max-width:960px) {
	.insta-area{
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.insta-area-container{
		flex-direction: column;
		width: 100%;
	}

	.instagram-media{
		margin-bottom: 2rem!important;
	}
}








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

.recruit-unit{
	width: 72rem;
	margin: 0 auto;
	margin-top: 4rem;
	border-top: 1px solid #F4F2EF;
}

.recruit-item{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top: 3.4rem;
	padding-bottom: 3.4rem;
	border-bottom: 1px solid #F4F2EF;
	text-decoration: none;
	transition-duration: 0.3s;
	transition-property: color;
	color: #333333;
	gap: 0rem 3rem;
}

.recruit-item-title{
	width: 22.2rem;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: calc(26 / 18);
}

.recruit-item-container{
	display: flex;
}

.recruit-item-text{
	font-size: 1.6rem;
	font-weight: 400;
	line-height: calc(26 / 16);
	flex: 1;
}

.recruit-item-block{
	width: max-content;
}

@media (max-width:960px) {
	.recruit{
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	
	.recruit-unit{
		width: calc(100vw * calc(335 / 375));
		margin-top: 3rem;
	}
	
	.recruit-item{
		padding-top: 1.8rem;
		padding-bottom: 1.8rem;
		flex-direction: column;
	}
	
	.recruit-item-title{
		font-size: 1.4rem;
		line-height: calc(20 / 14);
		padding-bottom: 1rem;
	}
	
	.recruit-item-text{
		font-size: 1.4rem;
		line-height: calc(20 / 14);
	}
}







.form{
	position: relative;
	padding-top: 10rem;
	padding-bottom: 12.4rem;
	background-image: repeating-linear-gradient(45deg, transparent,transparent 6px,rgba(255, 255, 255, 0.1) 6px,rgba(255, 255, 255, 0.1) 8px);
}

.form-container{
	width: 92rem;
	margin: 0 auto;
	background-color: white;
	margin-top: 4rem;
	border-radius: 2rem;
}

@media (max-width:960px) {
	.form{
		padding-top: 6rem;
		padding-bottom: 8rem;
	}

	.form-container{
		width: calc(100vw * calc(335 / 375));
		margin-top: 3rem;
	}
}

.form-explain{
	text-align: center;
	font-size: 1.6rem;
	padding-top: 6rem;
	color: #333333;
	font-weight: bold;
}

.form-unit{
	padding-top: 4rem;
	width: 66rem;
	margin: 0 auto;
	padding-bottom: 6rem;
}

@media (max-width:960px) {
	.form-unit{
		width: calc(100vw * calc(305 / 375));
		padding-bottom: 4rem;
	}
}

.form-unit-titlebox{
	display: flex;
	padding-bottom: 1rem;
	align-items: center;
	margin-top: 2.5rem;
}

.--req{
	font-size: 1.3rem;
	position: relative;
	z-index: 2;
	width: max-content;
	font-weight: bold;
	color: white;
}

.--req::after{
	content: "";
	width: 120%;
	height: 120%;
	position: absolute;
	background-color: #EC614C;
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translateX(-50%) translateY(-50%);
	border-radius: 6px;
}

.form-unit-title{
	font-size: 1.8rem;
	color: #333333;
	padding-left: 1.2rem;
	font-weight: bold;
}

input{
	width: 100%;
	padding-top: 1.6rem;
	padding-bottom: 1.6rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: 1.6rem;
	border-radius: 10px;
	border: 0px;
	background-color: #F4F2EF;
	box-sizing: border-box;
}

.checkbox{
	margin: 0 auto;
	display: flex;
	margin-top: 3rem;
	width: max-content;
	align-items: center;
}

.label{
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 6px;
	background-color: #F4F2EF;
	cursor: pointer;
}

.label-active{
	position: relative;
}

.label-active::after{
	content: "";
	width: 3px;
	height: 15px;
	background-color: #EC614C;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) rotateZ(45deg);
}

.label-active::before{
	content: "";
	width: 3px;
	height: 7px;
	background-color: #EC614C;
	position: absolute;
	top: 55%;
	left: 30%;
	transform: translateY(-50%) rotateZ(-45deg);
}

.check{
	display: none;
}

.checkbox-text{
	white-space: nowrap;
	padding-left: 1rem;
	font-size: 1.6rem;
	font-weight: bold;
}

.form-button{
	width: 19rem;
	height: 6.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: 3rem;
	border-radius: calc(6.2rem / 2);
	border: 0px;
}

.form-button:hover{
	cursor: pointer;
	transform: translateY(0.5rem);
	transition-duration: 0.3s;
	transition-property: transform;
}

.form-submit{
	font-size: 1.6rem;
	font-weight: bold;
	color: white;
}







.bottom-block{
	width: 100%;
	height: 14.2rem;
	background-color: #1F1F1F;
}

.bottom-block-container{
	width: 92rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

.bottom-block-logo{
	width: 23.3rem;
	height: 6.2rem;
}

.small{
	font-size: 1.6rem;
	color: white;
}

@media (max-width:960px) {
	.bottom-block{
		height: auto;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.bottom-block-container{
		width: calc(100vw * calc(335 / 375));
		flex-direction: column;
	}

	.bottom-block-logo{
		width: 15.8rem;
		height: 5rem;
		margin-bottom: 3rem;
	}
}







.privacy-area{
	width: 100%;
	height: 100%;
	background-color: #3333338b;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
}

.privacy-container{
	background-color: white;
	width: 70%;
	height: 50%;
	border-radius: 20px;
}

.privacy-box{
	width: 80%;
	box-sizing: border-box;
	padding: 1.6rem 2rem;
	margin: 0 auto;
	margin-top: 5rem;
	height: 50%;
	border: 1px solid #F0EDE7;
	border-radius: 10px;
	overflow-y: scroll;
}

.privacy-text{
	font-size: 1.6rem;
}

.privacy-close{
	margin: 0 auto;
	margin-top: 6rem;
	display: block;
	cursor: pointer;
	width: 10rem;
	height: 4rem;
	border-radius: 2rem;
	border: 0px;
}

.privacy-close-inner{
	color: white;
	font-size: 1.5rem;
}

.privacy-toggle{
	text-decoration: underline;
}

.privacy-toggle:hover{
	opacity: 0.5;
	cursor: pointer;
}

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

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

	.privacy-container{
		width: calc(100vw * calc(335 / 375));
		height: 60%;
	}

	.privacy-box{
		width: 90%;
		height: 60%;
	}
}


