@charset "utf-8";

:root {
	--color-base: #000;
	--color-theme: #72B12C;
	--color-sub: rgba(201, 191, 193, 0.1);
	--content-padding-desktop: 10px;
}

/* ===================================================================
RESET
=================================================================== */

input,
button,
textarea, 
select {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	outline: 0;
}

/* ===================================================================
COMMON
=================================================================== */

/* COMMON BODY
--------------------*/

body {
	color: var(--color-base);
	font-size: 15px;
}

/* COMMON DESC
--------------------*/

.desc {
	margin: 15px 0 0;
	padding: 15px 0 0;
	border-top: 1px solid #707070;
}

/* COMMON LAYOUT
--------------------*/

.ss-layout {
	margin: 0 0 20px;
}

.ss-small-layout {
	margin: 0 0 20px;
}

/* COMMON THREE DOTS
--------------------*/

.ss-threedots-1line {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

/* COMMON BEFORE MESSAGE
--------------------*/

.ss-form-before-message img {
	width: 100% !important;
	height: auto !important;
}

.ss-form-before-message ul li {
	position: relative;
	padding: 0 0 0 1.5em;
}

.ss-form-before-message ul li:before {
	content: '';
	position: absolute;
	top: .3em;
	left: 0;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: var(--color-theme);
}

/* COMMON ACCEPT
--------------------*/

.ss-accept {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ss-accept input[type=checkbox] {
	display: none;
}

.ss-accept input[type=checkbox] + label {
	position: relative;
	display: block;
	margin: 0;
	padding: 0 0 0 30px;
	line-height: 22px;
}

.ss-accept input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0;
	background: #FFF;
	border: 1px solid #9F9F9F;
	border-radius: 4px;
	transition: background-color .3s, border .3s;
}

.ss-accept input[type=checkbox] + label:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -60%) rotate(40deg);
	left: 7px;
	display: block;
	width: 4px;
	height: 9px;
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
	opacity: 0;
	transition: opacity .3s;
}

.ss-accept input[type=checkbox]:checked + label:before {
	background: var(--color-theme);
	border: 1px solid var(--color-theme);
}

.ss-accept input[type=checkbox]:checked + label:after {
	opacity: 1;
}

/* COMMON BUTTON
--------------------*/

.ss-btn-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.ss-btn {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.ss-btn:not(.none) + .ss-btn {
	margin-top: 25px;
}

.ss-btn button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 40px;
	padding: 5px;
	color: #1F1F1F;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	background: var(--color-theme);
	border: 2px solid var(--color-theme);
	border-radius: 6px;
	transition: color .3s, background-color .3s, opacity .3s;
}

#ss_form_btn_back button {
	color: var(--color-theme);
	background: #FFF;
}

.ss-btn button:hover {
	color: var(--color-theme);
	background: #FFF;
}

/* COMMON BUTTON NONE
--------------------*/

.ss-btn.none {
	display: none;
}

/* COMMON LOADING
--------------------*/

.ss-loading {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 150px;
}

.ss-loading-circle {
	width: 75px;
	height: 75px;
	padding: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--color-theme);
	background: linear-gradient(0deg, #FFF 33%, var(--color-theme) 100%);
	animation: spin .8s linear 0s infinite;
}
  
.ss-loading-core {
	width: 100%;
	height: 100%;
	background: #FFF;
	border-radius: 50%;
}

@keyframes spin {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(359deg);
	}
}

/* COMMON HIDDEN BODY
--------------------*/

.ss-hidden-body {
	height: 0;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.ss-hidden-body.is-visible {
	height: auto;
	opacity: 1;
	overflow: visible;
	visibility: visible;
}

/* COMMON BEFORE, AFTER
--------------------*/

.ss-after {
	display: none;
}

/* ===================================================================
FORM
=================================================================== */

/* FORM COMMON ATTENTION
--------------------*/

.ss-form-common-attention {
	display: none;
}

.ss-form-common-attention-inner {
	padding: 10px;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	background: var(--color-theme);
}

.ss-form-common-attention-inner span {
	display: inline-block;
	margin: 10px 0 0;
	padding: 10px 15px;
	font-family: sans-serif;
	color: var(--color-theme);
	font-size: 12px;
	background: rgba(255, 255, 255, .95);
	border-radius: 5px;
}

/* FORM CONFIRM
--------------------*/

.ss-form-confirm {
	display: none;
}

/* FORM CONTENT
--------------------*/

.ss-form-inner .ss-form-content,
.ss-form-inner .ss-form-content.pc-w100 {
	width: 100%;
}

.ss-form-content + .ss-form-content {
	margin: 40px 0 0;
}

/* FORM LABEL
--------------------*/

.ss-form-label-inner {
	display: flex;
	align-items: baseline;
	min-height: 20px;
	margin: 0 0 5px;
}

.ss-form-label {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
}

.ss-form-label + span {
	margin: 0 0 0 10px;
	font-size: 12px;
}

/* FORM SUB LABEL
--------------------*/

.ss-form-sub-label-inner {
	display: flex;
	align-items: baseline;
	min-height: 18px;
	margin: 0 0 5px;
}

.ss-form-sub-label {
	display: flex;
	align-items: center;
	font-size: 14px;
}

/* FORM REMARKS
--------------------*/

.ss-form-remarks {
	margin: 0 0 5px;
}

/* FORM REQUIRED ICON
--------------------*/

.ss-form-required-icon {
	flex: none;
	display: inline-block;
	margin: 0 0 0 5px;
	color: #E60012;
	font-weight: 700;
	line-height: 1;
}

/* FORM ITEM
--------------------*/

.ss-form-item ::placeholder {
	color: #D6D6D6;
}

/* FORM ITEM INPUT, SELECT
--------------------*/

.ss-form-item input,
.ss-form-item textarea,
.ss-form-item select {
	display: block;
	width: 100%;
	font: unset;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--color-base);
	font-size: 15px;
	font-weight: 400;
	background: #FFF;
	border: 1px solid #9F9F9F;
	border-radius: 4px;
	transition: background-color .3s, border .3s, box-shadow .3s;
}

.ss-form-item input,
.ss-form-item select {
	height: 40px;
}

.ss-form-item textarea {
	height: 120px;
	resize: none;
}

.ss-form-item input,
.ss-form-item textarea {
	padding: 5px 10px;
}

.ss-form-item select {
	padding: 5px 35px 5px 10px;
}

.ss-form-item .select {
	position: relative;
	display: block;
	height: auto;
	background: transparent;
	border-radius: unset;
	z-index: unset;
	cursor: initial;
}

.ss-form-item .select:after {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	transform: translate(0, -50%) rotate(45deg);
	right: 15px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--color-theme);
	border-bottom: 2px solid var(--color-theme);
	z-index: 1;
	pointer-events: none;
}

.ss-form-item input:focus,
.ss-form-item textarea:focus,
.ss-form-item select:focus {
	box-shadow: 0 0 0 0.25rem rgba(114, 177, 44, 0.25);
}

/* FORM ITEM INPUT, SELECT ERROR
--------------------*/

.ss-form-item.ss-form-error-item input,
.ss-form-item.ss-form-error-item select {
	background: var(--color-sub);
}

/* FORM ITEM RADIO
--------------------*/

.ss-form-item input[type=radio] {
	display: none;
}

.ss-form-item input[type=radio] + label {
	position: relative;
	display: block;
	margin: 10px 0 0;
	padding: 0 0 0 30px;
	line-height: 22px;
}

.ss-form-item input[type=radio] + label:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0;
	background: #FFF;
	border: 1px solid #9F9F9F;
	border-radius: 50%;
	transition: border .3s;
}

.ss-form-item input[type=radio] + label:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 5px;
	display: block;
	width: 12px;
	height: 12px;
	margin: 0;
	background: var(--color-theme);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .3s;
}

.ss-form-item input[type=radio]:checked + label:before {
	border: 1px solid var(--color-theme);
}

.ss-form-item input[type=radio]:checked + label:after {
	opacity: 1;
}

/* FORM ITEM CHECKBOX
--------------------*/

.ss-form-item input[type=checkbox] {
	display: none;
}

.ss-form-item input[type=checkbox] + label {
	position: relative;
	display: block;
	margin: 10px 0 0;
	padding: 0 0 0 30px;
	line-height: 22px;
}

.ss-form-item input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0;
	background: #FFF;
	border: 1px solid #9F9F9F;
	border-radius: 4px;
	transition: background-color .3s, border .3s;
}

.ss-form-item input[type=checkbox] + label:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -60%) rotate(40deg);
	left: 7px;
	display: block;
	width: 4px;
	height: 9px;
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
	opacity: 0;
	transition: opacity .3s;
}

.ss-form-item input[type=checkbox]:checked + label:before {
	background: var(--color-theme);
	border: 1px solid var(--color-theme);
}

.ss-form-item input[type=checkbox]:checked + label:after {
	opacity: 1;
}

/* FORM ITEM FILE
--------------------*/

.ss-form-item input[type=file] {
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	visibility: hidden;
	opacity: 0;
}

.ss-form-item > .ss-form-file-label {
	display: flex;
	align-items: center;
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	font: unset;
	color: var(--color-base);
	font-weight: 400;
	background: #FFF;
	border: 1px solid #9F9F9F;
	border-radius: 4px;
	transition: background-color .3s, border .3s, box-shadow .3s;
}

.ss-form-item > .ss-form-file-label:hover {
	box-shadow: 0 0 0 0.25rem rgba(114, 177, 44, 0.25);
}

/* FORM ITEM BIRTHDAY
--------------------*/

.ss-form-content.birthday .ss-form-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.ss-form-content.birthday .ss-form-item .select:nth-child(1) {
	width: 34%;
}

.ss-form-content.birthday .ss-form-item .select:nth-child(3),
.ss-form-content.birthday .ss-form-item .select:nth-child(5) {
	width: 21%;
}

.ss-form-content.birthday .ss-form-item .year,
.ss-form-content.birthday .ss-form-item .month,
.ss-form-content.birthday .ss-form-item .day {
	width: 8%;
	font-size: 16px;
	text-align: center;
}

/* FORM ITEM POSTAL CODE
--------------------*/

.ss-form-content.postalCode .ss-form-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.ss-form-content.postalCode .ss-form-item .input:nth-child(1) {
	width: 35%;
}

.ss-form-content.postalCode .ss-form-item .input:nth-child(3) {
	width: 55%;
}

.ss-form-content.postalCode .ss-form-item .hyphen {
	width: 10%;
	font-size: 16px;
	text-align: center;
}

/* FORM ITEM ADDRESS
--------------------*/

.ss-form-content.address {
	margin: 0;
	padding: 0;
	font-size: inherit;
	border: unset;
	border-radius: unset;
}

/* FORM USERDATA NAME
--------------------*/

.ss-form-content.userdataname .ss-form-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ss-form-content.userdataname .ss-form-item .input {
	width: 48%;
}

/* FORM HR
--------------------*/

.ss-form-hr {
	width: 100%;
	height: 1px;
	margin: 0 0 20px;
	background: #9F9F9F;
	border: none;
}

/* FORM ERROR
--------------------*/

.ss-form-error-message-inner {
	margin: 0 0 40px;
}

.ss-form-error-message-inner.none {
	display: none;
}

.ss-form-error-message {
	color: #E60012;
}

/* FORM APPLY
--------------------*/

.ss-form-apply {
	display: none;
	word-break: break-all;
}

.ss-form-apply-reason {
	margin: 0 0 15px;
}

.ss-form-apply-detail {
	margin: 0 0 20px;
	border: 1px solid #E60F33;
}

.ss-form-apply-detail-head {
	padding: 15px;
	color: #FFF;
	font-weight: 700;
	text-align: center;
	background: #E60F33;
}

.ss-form-apply-detail-body {
	padding: 15px;
}

.ss-form-apply-terms {
	height: 200px;
	margin: 0 0 15px;
	padding: 15px;
	border: 1px solid #D6D6D6;
	overflow-y: auto;
}