
@charset 'utf-8';
/* ----------------------------------------------------------------
Base
----------------------------------------------------------------- */
/*
SMP EmbeddedForm Default CSS
*/


.smpForm {
	position: relative;
	letter-spacing: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	padding: 10px;
	background: #fff;
	border: 1px solid #1A1A1A;
	max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="textarea"],
textarea {
	width: 100%;
}


#ss_name .ss_grid {
	display: flex;
	justify-content: space-between;
}
#ss_name .ss_grid input {
	width: 90%;
}



.ss_contents {
	text-align: left;
	width: 100%;
}
.ss_contents fieldset {
	margin: 0 0 20px;
}
.ss_contents input[type="number"]::-webkit-outer-spin-button,
.ss_contents input[type="number"]::-webkit-inner-spin-button,
.ss_contents input[type="date"]::-webkit-outer-spin-button,
.ss_contents input[type="date"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ss_privacy_field {
	background-color: #f9f9f9;
}
.ss_privacy_field .ss_grid {
	background-color: #ffffff;
	overflow: auto;
	word-break : break-all;
}


.ss_user_notnull {
	color: #F89406;
}

.ss_upComment, .ss_leftComment, .ss_rightComment {
	margin-left: 3px;
	margin-right: 3px;
	color: #333;
	font-size: 12px;
}

.ss_upComment a {
	font-size: 14px;
	text-decoration: underline;
}

.ss_bottomComment {
	margin-top: 3px;
	color: #777777;
	font-size: 12px;
}
.ss_btnArea {
	text-align: center;
}
.ss_btnArea p {
	max-width: 300px;
	color: #fff;
	position: relative;
}
.ss_btnArea p::before {
	margin-top: 1px;
	content: "\e315";
	font-family: 'Material Icons';
	position: absolute;
	font-size: 24px;
	line-height: 1;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
}
.ss_btnArea input {
	padding: .5em;
	text-decoration: none;
	background-color: #0097E0;
	box-shadow: 4px 4px 0 rgba(42,57,79,.2);
	color: #FFFFFF;
	cursor: pointer;
	border: solid 2px #0097E0;
	font-size: 22px;
	font-weight: bold;
	font-family: 'Noto Sans JP','Yu Gothic','Hiragino Kaku Gothic ProN','メイリオ','Meiryo',sans-serif;
	transition: .5s;
	max-width: 300px;
	width: 100%;
	text-align: center;
}
.ss_btnArea input:hover {
	background: #14b2ff;
}

.ss_warning_label {
	background-color: #f89406;
	border-radius: 3px;
	vertical-align: top;
	display: inline-block;
	padding: 2px 4px;
	font-size: 11.844px;
	line-height: 12px;
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	white-space: nowrap;
}
.ss_error_msg, .errorMsg {
	vertical-align: top;
	margin-left: 3px;
	font-size: 12px;
	color: #F89406;
}
.ss_complete_message {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* Spinner */
.ss_submit_loader {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.25);
}
.spinner::before {
	content: "";
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100px;
	width: 100px;
	margin-top: -50px;
	margin-left: -50px;
	border-radius: 50%;
	border: 0.5em solid #FFFFFF;
	border-top-color: rgba(0, 0, 0, 0);
	-webkit-animation: spinner 1s infinite infinite;
	animation: spinner 1s linear infinite;
}
@-webkit-keyframes spinner {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*
Responsive CSS
*/
/* PC */
@media screen and (min-width: 768px) {
	
	.ss_contents fieldset {
		margin: 0 0 40px;
		display: flex;
	}
	
	.ss_form_title {
		padding: 0 20px 0 0;
		font-size: 18px;
		font-weight: bold;
		width: 35%;
	}
	.ss_grid {
		display: flex;
		width: 65%;
	}
	
	#ss_name .ss_grid input {
		width: 80%;
	}
	#ss_zip .ss_grid input {
		width: 30%;
	}
	#ss_prefecture_master_id select {
		width: 30%;
	}
	
}

/* ipad */
@media screen and (max-width: 767px) {
	.ss_grid {
		word-break : break-all;
	}
	.ss_grid input:not([type="checkbox"]):not([type="radio"]):not([type="date"]):not([type="datetime-local"]) {
		width: 100%;
	}
}
/* Vertical Screen (Smartphone) */
@media screen and (max-width: 480px) {
	.ss_leftComment {
		display: block;
	}
	.ss_grid input:not([type="checkbox"]):not([type="radio"]) {
		width: 100%;
	}
}
/* 20210210ADD */
.ph {
	display: none;
}

.ss_input {
	width: 100%;
}

/* view_timer対策 20230602ADD */
.view_timer {
  display: none;
}
/* /view_timer対策 20230602ADD */




