@charset "EUC-JP";

/*------------------------------
¥Õ¥©¡¼¥à
--------------------------------*/
.form-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.form-section {
	background: white;
	padding: 30px;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
	font-size: 20px;
	font-weight: bold;
	color: #2c5282;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 3px solid #4299e1;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2d3748;
}

.required {
	color: #e53e3e;
	margin-left: 4px;
	font-size: 12px;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #cbd5e0;
	border-radius: 4px;
	font-size: 15px;
	transition: border-color 0.3s;
}
.form-select,.Users{
	width:300px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: #4299e1;
	box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.inline-group {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.inline-group .form-input,
.inline-group .form-select {
	flex: 1;
	min-width: 120px;
	max-width:300px;
}

.unit-label {
	color: #718096;
	white-space: nowrap;
}

.button-group {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 30px;
	flex-wrap: wrap;
}

input.btn_form {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input.btn-primary {
    background-color: #007bff;
    color: white;
}

input.btn-secondary {
    background-color: #6c757d;
    color: white;
}

input.btn-primary:hover {
	background-color: #3182ce;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

input.btn-secondary {
	background-color: #718096;
	color: white;
}

input.btn-secondary:hover {
	background-color: #4a5568;
	transform: translateY(-2px);
}

input.btn-success {
	background-color: #48bb78;
	color: white;
}

input.btn-success:hover {
	background-color: #38a169;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.confirmation-container {
	display: none;
}

.confirmation-item {
	padding: 15px;
	margin-bottom: 15px;
	background-color: #f7fafc;
	border-left: 4px solid #4299e1;
	border-radius: 4px;
}

.confirmation-label {
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 5px;
}

.confirmation-value {
	color: #4a5568;
	font-size: 15px;
}

#tflow {
	display: flex;
	display: -webkit-flex;
    margin: 20px 0;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    font-size: 1.14em;
    color: #005b88;
}
.sFlow {
    width: 25%;
    height: 71px;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid #005b88;
    margin: 10px;
    line-height: 1.25em;
    font-weight: bold;
}
.sF-icon {
    font-size: .75em;
    display: block;
}
.sFlow.active {
	background-color: #005b88;
	color: #fff;
}
.sFlow.active .sF-icon {
	color: #FFEB3B;
}

@media (max-width: 768px) {
	.form-container {
		padding: 0px;
	}

	.form-section {
		padding: 0px;
	}

	.section-title {
		font-size: 18px;
	}

	.inline-group {
		flex-direction: column;
		align-items: stretch;
	}

	.inline-group .form-input,
	.inline-group .form-select {
		width: 100%;
	}

	.button-group {
		flex-direction: column;
	}

	.btn_form {
		width: 100%;
		min-width: auto;
	}
	.sFlow {
		width: 32%;
		margin:5px;
		height:85px;
	}
}

