.applicationPopupWrap .applicationPopup {
	border: none;
	max-width: 700px;
	padding: 30px;
}
.applicationPopup .info {
	text-align: left;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
.linkCopyWrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 700px;
}
#linkCopy {
	width: 100%;
}
#linkCopy .inputWrap {
	display: flex;
	width: 100%;
	align-items: stretch;
}
#linkCopy .inputWrap input {
	flex: 1;
	min-width: 0;
	width: 100%;
	background-color: #fff;
	font-size: 16px;
	padding: 12px 20px;
	border: 1px solid #E1E2E4;
	border-right: none;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
#linkCopy .inputWrap button {
	width: 50px;
	flex-shrink: 0;
	background-color: #7b4712;
	color: #fff;
	font-size: 16px;
	border: 1px solid #E1E2E4;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	cursor: pointer;
}
#linkCopy .inputWrap button:hover {
	background-color: #986D41;
}
#linkCopy .inputWrap button img {
	width: 20px;
	height: auto;
}
.copy-message {
	margin-top: 8px;
	font-size: 14px;
	color: #7b4712;
	height: 1em;
	visibility: hidden;
}
.entryBtn.is-disabled {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}
.entryBtn.is-disabled a:hover {
	background: inherit;
	color: inherit;
}

@media (min-width: 1000px) {
	.linkCopyWrap {
		flex-wrap: nowrap;
	}
}
/* 非活性ボタン */
.btn.disabledBtn a {
    background-color: #ccc;
    color: #686868;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}
.btn.disabledBtn a:hover {
    background-color: #ccc;
    color: #686868;
}