* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	height: 100%;
}

:root {
  --visual-viewport-height: 100%;
}

body {
	background-color: #FFFFFF;
	margin: 0;
	height: 100%;
	height: var(--visual-viewport-height);
	overflow-y: scroll;
	overflow-x: hidden;
	/*height: 100vh;
	height: -webkit-fill-available;*/
	/*min-height: 100vh;
	min-height: -webkit-fill-avalilable;*/
}

footer {
	position: sticky;
	top: 100vh;
	width: 100%;
	background: #5d5d5d;
	text-align: center;
	padding: 8px 0 10px;
	color: #ffffff;
	font-size: 12px;
	margin-top: 85px;
	/*z-index:1;*/
}

/* IE11用のスタイル */
/*@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	footer {
		position: fixed;
		bottom: 0;
	}
}*/

footer a {
	color:#ffffff;
	text-decoration: none;
	font-size: 12px;
	border-bottom: 1px dotted #ffffff;
	vertical-align: text-bottom;
}

_::-webkit-full-page-media, _:future, :root footer a {
	display: inline-block;
}

footer a:nth-of-type(2) {
	display: none!important;
}

footer.vFtr a:nth-of-type(2) {
	display: inline-block!important;
}

#pagetop {
	height:0;
	opacity:0;
	transition: 0.3s;
	visibility:hidden;
}

#pagetop.indicate {
	height:auto;
	opacity:.9;
	visibility:visible;
}

#pagetop a {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background: #52cec5;
	z-index: 1;
}

#pagetop a:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #ffffff;
	line-height: 1;
	width: 18px;
	height: 18px;
	border: 1px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
	position: absolute;
	left: 32%;
	top: 35%;
}

.navtop {
	background-color: #52cec5;
	height: 60px;
	width: 100%;
	border: 0;
}

.navtop div {
	display: flex;
	margin: 0 auto;
	width: 1000px;
	height: 100%;
}

.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}

.navtop div h1 a {
	padding: 0!important;
	font-weight: bold!important;
	color: #ffffff!important;
	font-size: 18px!important;
	/*border-top: 1px dashed #858585;
	border-bottom: 1px dashed #858585;*/
}

.navtop div h1 i {
	padding-right: 5px!important;
	color: #ffffff;
}

.navtop div h1 {
	flex: 1;
	font-size: 20px;
	padding: 0;
	margin: 0;
	color: #ebecee;
	font-weight: normal;
	text-shadow: 1px 1px 1px #23ab95;
}

.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #ffffff;
	font-weight: 700;
}

.navtop div a:last-of-type {
	padding-right:0px ;
}

.navtop div a i {
	padding: 2px 8px 2px 0;
}

.navtop div a:hover {
	color: #ebecee;
}

main .main {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.05s ease;
}

main .swiper-initialized.main {
	opacity: 1;
	pointer-events: auto;
}

main .swiper-container {
	overflow: hidden;
}

main .swiper {
	width: 100%;
	max-width: 1000px;
	overflow: visible!important;
}

main .swiper-slide {
	opacity: 0.5;
	transition: opacity 0.3s;
}

main .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

main .swiper-slide-active {
	opacity: 1;
}

main .swiper-pagination-bullet {
	background-color: #ffffff;
}

main .swiper-button-prev,
main .swiper-button-next,
main .swiper-pagination-bullet {
	color: #ffffff;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.content {
	width: 1000px;
	margin: 0 auto;
}

.content h2 {
	margin: 0;
	padding: 25px 0 10px 0;
	font-size: 22px;
	border-bottom: 1px solid #ebebeb;
	color: #555555;
}

.three-step {
	overflow: hidden;
}

.step-item {
	border: 1px solid #dfdfdf;
	border-radius: 11px;
	padding: 16px;
	width: 31%;
	float: left;
	margin-right: 35px;
	box-shadow: 0px 6px 9px -6px rgba(0, 0, 0, 0.2);
	margin-bottom: 15px;
}

.step-item:last-of-type {
	margin-right: 0;
}

.step-item dt {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.step-item dd {
	margin: 0;
	text-align: center;
}

.step-item dd a {
	color:#23ab95;
}

.step-item dd a:hover {
	text-decoration: none;
}

.step-item dd img {
	display: block;
	text-align: center;
	margin: 0px auto 11px;
	border-radius: 110px;
	border: 5px solid #e5e5e5;
	pointer-events: none;
	max-width: 200px;
}

@media screen and (max-width: 1000px) {

	.step-item {
		width: 100%;
	}

	.step-item dd img {
		max-width: 100px;
		border: 2px solid #e5e5e5;
	}

}

.home h2 i {
	font-size: 20px;
}

.home .faq {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.home .faq dt {
	padding: 0 0 10px 48px;
	text-indent: -48px;
	font-weight: bold;
	font-size: 18px;
}

.home .faq dt:before {
	display: inline-block;
	color: #15a1ac;
	content: 'Q';
	height: 32px;
	width: 32px;
	border-radius: 50%;
	line-height: 32px;
	text-align: center;
	background: #ffffff;
	font-size: 18px;
	border: 2px solid #15a1ac;
	margin-right: 12px;
	text-indent: 0px;
	font-weight: bold;
}

.home .faq dd {
	font-size: 16px;
	color: #333333;
	padding: 0 0 25px 48px;
	text-indent: -48px;
	margin-left: 0px;
}

.home .faq dd strong {
	border-bottom: 1px dashed #555555;
}

.home .faq dd:before {
	display: inline-block;
	content: 'A';
	height: 32px;
	width: 32px;
	border-radius: 50%;
	line-height: 32px;
	text-align: center;
	background: #ffffff;
	font-size: 18px;
	border: 2px solid #eb85ae;
	color: #eb85ae;
	margin-right: 12px;
	text-indent: 0px;
	font-weight: bold;
}

.home .faq dd a {
	color: #23ab95;
}

.home .faq dd a:hover {
	text-decoration: none;
}

.home table {
	width: 100%;
	padding-top: 30px;
	border-collapse: collapse;
}

.home table thead {
	background-color: #ebeef1;
	border-bottom: 1px solid #d3dae0;
}

.home table thead td {
	padding: 10px;
	font-weight: bold;
	color: #767779;
	font-size: 14px;
}

.home table tbody tr {
	border-bottom: 1px solid #d3dae0;
}

.home table tbody tr:nth-child(even) {
	background-color: #fbfcfc;
}

.home table tbody tr td {
	padding: 10px;
}

.home table tbody tr td:nth-child(1) {
	color: #a5a7a9;
}

.home table tbody tr td.actions {
	padding: 8px;
	text-align: right;
	width: 100px;
}

.home table tbody tr td.actions .viewlink, .home table tbody tr td.actions .editlink {
	display: inline-flex;
	text-align: right;
	text-decoration: none;
	color: #FFFFFF;
	padding: 17px 13px;
	border-radius: 4px;
}

.home table tbody tr td.actions .editlink {
	background-color: #7d838b;
}

.home table tbody tr td.actions .editlink:hover {
	background-color: #70767e;
}

.home table tbody tr td.actions .viewlink {
	background-color: #417fd2;
}

.home table tbody tr td.actions .viewlink:hover {
	background-color: #2f72c9;
}

.create,
.edit {
	max-width: 400px;
}

.create form,
.edit form {
	padding: 15px 0;
	display: flex;
	flex-flow: column;
	width: 400px;
}

.create form span.errorMsg,
.edit form span.errorMsg {
	display: block;
	background-color: #ffdde3;
	border: 1px solid #dc8585;
	border-radius: 5px;
	padding: 1px 5px;
	font-size: 15px;
	color: #b44848;
}

.create form .inputWrap .invalid,
.create form .inputWrap span.errorMsg,
.edit form .inputWrap .invalid,
.edit form .inputWrap span.errorMsg {
	margin-bottom: 6px;
}

@media screen and (max-width: 1000px) {
	.create form .inputWrap span.errorMsg,
	.edit form .inputWrap span.errorMsg {
		margin-bottom: 1px;
	}

	.create form .add_answer,
	.edit form .add_answer {
		margin-top: 2px;
	}
}

.create form label,
.edit form label {
	display: inline-flex;
	width: 100%;
	padding: 10px 0 0 0;
	margin-right: 25px;
	margin-bottom: 2px;
}

.create form label span.required,
.edit form label span.required {
	background-color: #da3232;
	padding: 0px 3px;
	margin-left: 5px;
	margin-bottom: 5px;
	border-radius: 5px;
	font-size: 12px;
	color: #ffffff;
}

@media screen and (max-width: 1000px) {
	.create form label span.required,
	.edit form label span.required {
		margin-bottom: 2px;
		line-height: 20px;
	}
	.create form label,
	.edit form label {
		margin-bottom: 0;
	}
}

.create form input,
.create form textarea,
.edit form input,
.edit form textarea {
	padding: 10px;
	width: 100%;
	margin-right: 25px;
	margin-bottom: 15px;
	border: 1px solid #cccccc;
	border-radius: 5px;
}

.create form textarea,
.edit form textarea {
	height: 160px;
}

.create form input[type="submit"],
.edit form input[type="submit"] {
	display: block;
	background-color: #417fd2;
	border: 0;
	font-weight: 600;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
	max-width: 320px;
	margin: 15px auto 0;
	border-radius: 4px;
	padding: 9px 0;
}

.create form input[type="submit"]:hover,
.edit form input[type="submit"]:hover {
	background-color: #2f72c9;
}

.create form input[type="datetime-local"],
.edit form input[type="datetime-local"] {
	-webkit-appearance: none;
	min-width:95%;
	box-sizing: border-box;
	vertical-align: middle;
}

.create form #expires,
.edit form #expires {
	display: none;
}

.create form #expires_enabled,
.edit form #expires_enabled {
	/*width: auto;*/
	width: fit-content;
}

.create form #expires_enabled:checked ~ #expires,
.edit form #expires_enabled:checked ~ #expires {
	display: block;
}

.create form .answers input,
.edit form .answers input {
	margin-bottom: 6px;
}

.create form .answers .input-container input,
.edit form .answers .input-container input {
	padding-right: 35px;
}

.create form .add_answer,
.edit form .add_answer {
	text-decoration: none;
	margin-bottom: 10px;
	font-size: 16px;
	color: #7d838b;
	font-weight: 600;
	display: block;
}

.create form .add_answer i,
.edit form .add_answer i {
	padding-right: 5px;
}

.create form .add_answer:hover,
.edit form .add_answer:hover {
	color: #70767e;
}

.create form input:disabled,
.edit form input:disabled {
	background-color: #c3c3c3;
}

.create form label.disabled::after,
.edit form label.disabled::after {
	background-color: #cfcfcf;
	cursor: default;
}

.edit p.backButton {
	width: 100%;
	max-width: 240px;
	background: #606c7e;
	text-align: center;
	border: 0;
	padding: 8px 0 9px;
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 0px;
	margin: 12px auto 0;
	border-radius: 4px;
}

.edit label[for="delete_page"] {
	color: #c62525;
	font-weight: bold;
}

.edit label[for="delete_page"] i {
	margin-top: 4px;
	margin-right: 4px;
}

_::-webkit-full-page-media, _:future, :root .edit label[for="delete_page"] i {
	margin-top: 2px;
	margin-right: 2px;
}

.edit p.backButton:hover {
	background: #555f6f;
}

.edit p.backButton a {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	display: block;
}

.edit p.backButton a i {
	font-size: 14px;
}

.poll-vote form {
	display: flex;
	flex-flow: column;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}

.poll-vote form span.errorMsg {
	display: block;
	background-color: #ffdde3;
	border: 1px solid #dc8585;
	border-radius: 5px;
	padding: 1px 5px;
	font-size: 15px;
	color: #b44848;
}

.poll-vote form label {
	padding-bottom: 15px;
}

.poll-vote form label.disabled::after {
	background-color: #f1f1f1!important;
}

.poll-vote form input[type="radio"] {
	transform: scale(1.1);
}

.poll-vote form input[type="submit"], .poll-vote form a {
	display: inline-block;
	padding: 8px;
	border-radius: 4px;
	background-color: #417ac5;
	border: 0;
	font-weight: 600;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
	width: 130px;
	margin: 15px 0 0 5px;
}

.poll-vote form input[type="submit"]:hover, .poll-vote form a:hover {
	background-color: #2f72c9;
}

.poll-vote form a {
	text-align: center;
	text-decoration: none;
	background-color: #f6a52a;
	margin: 0px;
}

.poll-vote form a:hover {
	background-color: #eb9935;
}

.poll-vote form #VoteAndResultButton {
	width: auto;
	margin: 0px auto 25px;
	text-align: center;
}

.poll-result .wrapper a.openButton {
	background-color: #b83939;
}

.poll-result form span.errorMsg {
	display: block;
	background-color: #ffdde3;
	border: 1px solid #dc8585;
	border-radius: 5px;
	padding: 1px 5px;
	font-size: 15px;
	color: #b44848;
}

.poll-vote .clipboard {
	position: relative;
}

.poll-vote .clipboard input {
	padding: 10px;
	width: 100%;
	margin-bottom: 5px;
	border: 1px solid #cccccc;
	border-radius: 5px;
}

.poll-vote .clipboard input[type="text"]:focus {
	border: 1px solid #cccccc!important;
}

.poll-vote .clipboard button {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #cccccc;
}

.poll-vote .clipboard button.btn {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 43px;
	height: 40px;
	padding-top: 5px;
	padding-left: 10px;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
	cursor: pointer;
}

@-moz-document url-prefix() {
	.poll-vote .clipboard button.btn {
		height: 42px;
	}
}

_::-webkit-full-page-media, _:future, :root .poll-vote .clipboard button.btn {
	height: 40px;
	margin-top: 2px;
}

.iphone .poll-vote .clipboard button.btn {
	height: 42px;
	margin-top: 0px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .poll-vote .clipboard button.btn {
		height: 42px;
	}
}

.poll-vote .clipboard button.btn img {
	width: 25px;
}

.poll-vote .clipboard button.btn::after {
	/*content: 'copied!';*/
	content: 'OK!';
	font-size: 12px;
	border-radius: 3px;
	padding: 5px;
	background: #333333;
	color: #ffffff;
	position: absolute;
	top: 45px;
	right: 5px;
	transition: .1s;
	opacity: 0;
}

.poll-vote .clipboard button.btn.copied::after {
	opacity: 1;
}

.poll-vote .login-btn {
	padding: 5px 11px;
	background-color: #686b6a;
	box-shadow: 0 2px 0 #3a3a3a;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 14px;
}

.poll-vote .login-btn:hover {
	background-color: #777777;
}

.poll-vote .nullify {
	opacity: 0.3;
	cursor: not-allowed!important;
	background-color: #959595!important;
	color: #111111!important;
}

.poll-vote .alredyVoted,
.poll-vote .endVote {
	opacity: 1;
	background-color: #dbdbdb!important;
	color: #333333!important;
	pointer-events: none;
}

.poll-result .wrapper {
	margin-top: 4px;
}

.poll-result .wrapper a {
	display: inline-block;
	padding: 8px;
	border-radius: 4px;
	background-color: #7d838b;
	border: 0;
	font-weight: 600;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
	width: 130px;
	margin-top: 15px;
	text-decoration: none;
}

.poll-result .wrapper a.deleteButton {
	background-color: #b83939;
}

.poll-result .wrapper #BackAndEditButton {
	width: auto;
	margin: 0px auto 20px;
	text-align: center;
}

.poll-result .wrapper #BackAndEditButton a:hover {
	background-color: #777777;
}

.poll-result .wrapper #BackAndEditButton a:last-of-type {
	/*margin-left:5px;*/
}

.poll-result .wrapper .poll-title {
	color: #707985;
}

.poll-result .wrapper .poll-question {
	padding-bottom: 5px;
}

.poll-result .wrapper .poll-question .poll-txt {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 7px 0;
}

.poll-result .wrapper .poll-question .poll-txt span {
	color: #888f98;
	font-size: 14px;
}

.poll-result .wrapper .poll-question .result-bar-container {
	background-color: #f4f5f7;
}

.poll-result .wrapper .poll-question .result-bar-container .result-bar {
	display: flex;
	height: 25px;
	min-width: 8%;
	background-color: #417fd2;
	font-size: 14px;
	color: #FFFFFF;
	justify-content: center;
	align-items: center;
}

.create .password-container,
.edit .password-container,
.poll-vote  .password-container,
.poll-result .password-container,
.login .password-container,
.create .input-container,
.edit .input-container {
	position: relative;
}

.edit .password-container .password {
	margin-bottom: 3px;
}

.edit .password-container .password:read-only {
	background-color: #d1d1d1;
}

.edit .password-container .password:focus {
	border: 1px solid #cccccc!important;
}

.edit .password-container.readonly .togglePassword {
	display: none;
}

.create .password-container .password,
.edit .password-container .password,
.poll-vote .password-container .password,
.poll-result .password-container .password,
.login .password-container .password {
	padding-right: 32px;
}

.create .togglePassword,
.edit .togglePassword,
.poll-vote .togglePassword,
.poll-result .togglePassword,
.login .togglePassword,
.create .inputErase,
.edit .inputErase {
	position: absolute;
	right: 15px;
	top: 9px;
	border: none;
	background: transparent;
	cursor: pointer;
	margin-right: 0px;
	margin-top: 1px;
	touch-action: manipulation;
	width: 20px;
}

.create .answers .input-container .inputErase,
.edit .answers .input-container .inputErase {
	cursor: default;
}

.create .answers .input-container .inputErase i,
.edit .answers .input-container .inputErase i {
	cursor: pointer;
}

_::-webkit-full-page-media, _:future, :root .create .togglePassword,
_::-webkit-full-page-media, _:future, :root .edit .togglePassword,
_::-webkit-full-page-media, _:future, :root .create .inputErase,
_::-webkit-full-page-media, _:future, :root .edit .inputErase {
	top: 15px;
}

/*@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .create .togglePassword {
		top: 15px;
	}
}*/

.create .togglePassword i,
.edit .togglePassword i,
.poll-vote .togglePassword i,
.poll-result .togglePassword i,
.login .togglePassword i,
.create .input-container i,
.edit .input-container i {
	color:#959595;
	width: 20px;
}

.create .togglePassword i.fa-eye,
.edit .togglePassword i.fa-eye,
.poll-vote .togglePassword i.fa-eye,
.poll-result .togglePassword i.fa-eye,
.login .togglePassword i.fa-eye {
	margin-right: 1px;
}

.poll-list-2 {
	display: flex;
	flex-wrap: wrap;
}

.poll-list-2 .wrapper {
	width: 33%;
	padding-right: 20px;
}

.poll-list-2 .wrapper .poll-title {
	color: #707985;
}

.poll-list-2 .wrapper .poll-question {
	padding-bottom: 5px;
}

.poll-list-2 .wrapper .poll-question .poll-txt {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 5px 0;
	font-size: 14px;
}

.poll-list-2 .wrapper .poll-question .poll-txt span {
	color: #888f98;
	font-size: 14px;
}

.poll-list-2 .wrapper .poll-question .result-bar-container {
	background-color: #f4f5f7;
}

.poll-list-2 .wrapper .poll-question .result-bar-container .result-bar {
	display: flex;
	height: 25px;
	min-width: 8%;
	background-color: #417fd2;
	font-size: 14px;
	color: #FFFFFF;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1000px) {
	.navtop {
		/*height: auto;*/
		height: 98px;
	}
	.navtop div {
		flex-flow: wrap;
		width: 100%;
	}
	.navtop div h1 {
		display: block;
		flex-basis: 100%;
		padding: 15px 10px;
		text-align: center;
	}
	.navtop div > a {
		padding: 8px 5px;
		font-size: 15px;
		font-weight: 600;
		flex-basis: 33.3%;
		background-color: #52a8a2;
		border-bottom: 1px solid #43958f;
		border-top: 1px solid #43958f;
		text-align: center;
		display: block;
		border-right: 1px solid #43958f;
	}
	
	.navtop div > a:last-of-type {
		border-right: none;
	}
	.content {
		padding: 10px;
		width: 100%;
	}
	.content.password {
		padding: 0px;
	}
	.responsive-width-100 {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}
	.responsive-hidden {
		display: none;
	}
	.home table .actions .viewlink {
		margin-bottom: 0px;
		margin-right: 0 !important;
	}
	.create form,
	.edit form {
		width: 100%;
		flex-flow: column;
	}
	.create form select,
	.create form input,
	.create form textarea,
	.edit form select,
	.edit form input,
	.edit form textarea {
		margin: 5px 0 10px;
	}
	.edit form input[type="number"] {
		margin-bottom: 15px;
	}
	.create form .answers .input-container input,
	.edit form .answers .input-container input,
	.create .password-container .password,
	.edit .password-container .password,
	.poll-vote .password-container .password,
	.poll-result .password-container .password,
	.login .password-container .password {
		padding-right: 39px;
	}
	.create form div,
	.edit form div {
		display: flex;
		flex-flow: column;
	}
}

/* ラジオボタンとチェックボックスのカスタマイズ */
.poll-vote input[type=radio],
.poll-vote input[type=checkbox] {
	display: none;
}

.radio,
.checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 0 8px 0;
	padding: 15px 12px 12px 42px;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
}

@media screen and (min-width: 1000px) {
	.radio:hover,
	.checkbox:hover {
		background-color: #e4f1f5;
	}
}

@media screen and (max-width: 480px) {
	.radio:active,
	.checkbox:active {
		background-color: #e4f1f5!important;
	}
	
	.checkbox.disabled:active {
		background-color: #f1f1f1!important;
		user-select: none;
		-webkit-user-select: none;
		-webkit-touch-callout: none;
	}
}

.checkbox.disabled {
	background-color: #f5f5f5;
	color: #959595;
	opacity: 0.3;
	cursor: default;
}

.checkbox.disabled:hover {
	cursor: default;
}

.radio:hover:after,
.checkbox:hover:after {
	/* code */
}

.radio:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbbbbb;
	border-radius: 10px;
	content: '';
}

.create .checkbox:after,
.edit .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 0px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbbbbb;
	border-radius: 5px;
	content: '';
}

.poll-vote .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 14px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbbbbb;
	border-radius: 5px;
	content: '';
}

.create label.customcheck,
.edit label.customcheck {
	width: fit-content;
	margin-top: 10px;
	margin-bottom: 15px;
}

.create #expires_enabled,
.create #shuffle_function,
.create #ip_address_function,
.edit #expires_enabled,
.edit #shuffle_function,
.edit #ip_address_function,
.edit #viewer_password_reset,
.edit #editor_password_reset,
.edit #delete_page {
	display: none;
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #417ac5;
	content: '';
	opacity: 0;
}

input[type=radio]:checked + .radio:before {
	opacity: 1;
}

.create .checkbox:before,
.edit .checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 6px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #417ac5;
	border-bottom: 3px solid #417ac5;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.poll-vote .checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #417ac5;
	border-bottom: 3px solid #417ac5;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}

/* その他のカスタマイズ */
label,a,input,textarea,button {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="datetime-local"]:focus,
textarea:focus {
	border: 1px solid #417fd2!important;
	outline: none;
}

.alreadyVotedMessage {
	background-color: #cdf6d5;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #8adf83;
	margin: 8px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.awaitingApprovalMessage {
	background-color: #ffeebf;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e6d47e;
	margin: 0;
	text-align: center;
}

.renewalCompleteMessage {
	background-color: #bfffda;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #7ee6a3;
	margin: 12px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.votingClosedMessage {
	background-color: #fffcbf;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e4e67e;
	margin: 8px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.createdPendingApprovalMessage {
	background-color: #fffcbf;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e4e67e;
	margin: 0;
	text-align: center;
}

.publishedMessage {
	background-color: #fffcbf;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e4e67e;
	margin: 0px;
	text-align: center;
}

.notStartedMessage {
	background-color: #fffcbf;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e4e67e;
	margin: 8px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.viewerPasswordMessage,
.deletePasswordMessage,
.loginErrorMessage {
	background-color: #ffdde3;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #dc8585;
	margin: 8px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.loginErrorMessage {
	margin-top: 15px;
}

.thanksForMessage {
	background-color: #bfeeff;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #83cbe5;
	margin: 8px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.notSelectedMessage {
	background-color: #ffd5bf;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #e6b47e;
	margin: 8px 0 0 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-out;
	position: relative;
}

.edit .show,
.poll-vote .show,
.poll-result .show,
.login .show {
	opacity: 1;
}

.edit .fade,
.poll-vote .fade,
.poll-result .fade,
.login .fade {
	opacity: 0;
}

@media screen and (max-width: 1000px) {
	.create form input:disabled,
	.edit form input:disabled {
		background-color: #919191;
	}

	.create form input:disabled::placeholder,
	.edit form input:disabled::placeholder  {
		color:#ffffff;
	}
}

.login form {
	display: flex;
	flex-flow: column;
	width: 300px;
	align-self: center;
	margin: 0 auto;
}

.login form input {
	border: 1px solid #c3c6c9;
	padding: 10px 10px;
	margin-bottom: 15px;
	border-radius: 5px;
}

.login form input[type="submit"] {
	background: #606c7e;
	border: 0;
	color: #FFFFFF;
	width: 100%;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 5px;
	margin-bottom: 0px;
}

.login form input[type="submit"]:hover {
	background: #555f6f;
}

.login .readingPassword {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100px;
	margin: -50px 0 0 -150px!important;
	padding-top: 0!important;
	/*transform: translate(-50%, -50%);*/
}

.login .readingPassword input {
	width: 100%;
}

.login .readingPassword span {
	margin-top: 11px;
}

.login .readingPassword span i {
	font-size: 11px;
}

.login .readingPassword span a {
	color: #333333;
	font-size: 14px;
}

.login .readingPassword span a:hover {
	text-decoration: none;
}

@media screen and (max-width: 1000px) {
	.readingPassword {
		padding-top: 31px!important;
	}
}

.terms p {
	line-height: 1.7;
}

.terms h3 {
	padding: 0.5em;
	color: #484848;
	background: #f5f5f5;
	border-left: solid 5px #394555;
}

#NotFound {
	margin-top: 0px;
}

#animation {
	display: table;
	width: 100%;
	height: calc(100vh - 200px);
}

.anim-icon {
	display: table-cell;
	vertical-align: middle;
	margin: 0px auto;
}

@media screen and (max-width: 1000px) {
	#animation {
		flex: 1;
		display: flex;
		height: calc(100vh - 250px);
	}

	.anim-icon {
		height: auto;
	}
}