@charset "UTF-8";
.container{
	height: 100dvh;
	background: #979985;
	position: relative;
	background: url(../img/limited/bg-premium.webp) no-repeat top center/ cover;
    @media screen and (max-width: 768px){
        background: url(../img/common/bg-dark.webp) no-repeat top center/ cover;
    }
}
.login-main{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.limited-heading{
	margin: 0 auto clamp(60px, 9vw, 90px);
	max-width: 475px;
	width: 90%;
}
.login .address-wrap,
.limited footer .inner{
	display: none;
}
.limited .address-wrap{
	padding-bottom: 32px;
	display: flex;
}
.login-item{
  margin: 0 auto;
  max-width: 900px;
}
.login-sub-text{
  font-size: 1.6rem;
  margin: 0 auto 16px;
  line-height: 1.6;
  @media screen and (max-width: 768px){
	margin: 0 auto 12px;
  }
}
.limited-parts .general-input{
	background: #fff;
	text-align: center;
	max-width: 385px;
	width: 70%;
	height: 48px;
	border: 1px solid #3e3a3c;
	-webkit-appearance: none;
	border-radius: 0;
}
input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{
    -webkit-appearance: none;
    border-radius: 0;
}
.login-btn{
	max-width: 232px;
	width: 100%;
    display: block;
	align-content: center;
}
.login-btn.btn{
	padding: 16px 10px 12px;
	background: url(../img/plan/bg-plan-btn.webp) no-repeat top center/ cover;
	color: #fff;
	border-radius: 50px;
	border: 1px solid #3e3a3c;
	transition: all .3s ease-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
	&::before{
		content: '';
		width: 100%;
		height: 100%;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: -100%;
		transform: translateY(-50%);
		border-radius: 50px;
		transition: all .3s ease-out;
		z-index: -1;
	}
	&:hover{
		color: #3e3a3c;
		&::before{
			left: 0;
		}
	}
	
}
.login-item-inner .login-btn.btn .arrow {
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-left: 10px solid #fff;
		border-right: 0;
		position: absolute;
		top: 53%;
		right: 7%;
		transform: translateY(-50%);
	}
.limited-parts {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.login-wrap form{
  	position: relative;
}
.login-wrap form .error-text{
	width: 100%;
	position: absolute;
	bottom: 63px;
	left: 50%;
	color: #c71c00;
	font-size: 1.6rem;
	text-align: center;
	transform: translateX(-50%);
}

@keyframes ripple {
  0% {
		box-shadow: 0 0 0 0 #865d17;
	}
  70% {
		box-shadow: 0 0 0 10px rgba(134, 93, 23, 0);
	}
  98% {
		box-shadow: 0 0 0 0 rgba(134, 93, 23, 0);
	}
  100% {
		box-shadow: 0 0 0 0 #865d17;
	}
}
@media screen and (max-width: 767px) {
	.container{
		&::before{
			background: url(../img/top/top6-sp.webp) no-repeat center center/ cover;
		}
	}
}

/* プラン ------------------ */
.main-section{
	background: url(../img/limited/bg-premium.webp) no-repeat top center/ cover;
}