@charset "utf-8";
/* CSS Document */
:root {
	--color-success: #00cf5e;
	--color-error: #ff555d;
	--color-warning: #ffd822;
	--color-info: #00a3ff;
	--color-normal: #ccc;
}

* {
	margin: 0;
	padding: 0;
	color: #333;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

p {
	margin-bottom: 10px;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* margin & padding */
.mt20 {
	margin-top: 20px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

/* position */
.t_left {
	text-align: left !important;
}

.t_center {
	text-align: center !important;
}

.t_right {
	text-align: right !important;
}

/* body background-color pattern */
.bg1 {
	background-color: #6698d5;
}

/* footer */
footer {
	background-color: #333;
	display: block;
	width: 100%;
	height: 30px;
	text-align: center;
	position: fixed;
	bottom: 0; 
}

small {
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 80%;
	line-height: 1;
}

/* form parts */
form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* input */
input[type=text],
input[type=password] {
	font-family: "Roboto", sans-serif;
	border: none;
	background-color: #eee;
	width: 100%;
	padding: 10px 15px;
	border-radius: 5px;
	margin-bottom: 10px;
}

input[type=text]:focus,
input[type=password]:focus {
	outline: 0;
	border: none;
}

input[type=text]::placeholder,
input[type=password]::placeholder {
	font-family: "Roboto", sans-serif;
	color: #999;
	font-size: 80%;
}

input[type=text]:focus::placeholder,
input[type=password]:focus::placeholder {
	color: #ccc;
}

/* textarea */
textarea {
	border: none;
	border-radius: 6px;
	padding: 10px 15px;
	height: 240px;
	width: 100%;
	background: #eee;
	overflow: auto;
}

textarea:focus {
	outline: 0;
}

/* select */
select {
	height: 2.4em;
	width: 100%;
	padding: 0 8px;
	border-radius: 6px;
	border: none;
	box-shadow: 0 0 0 1px #ccc inset;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background: #eee;
}

select:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

/* button */
button {
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: #246fcc;
	width: 100%;
	border: 0;
	padding: 15px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3 ease;
	-webkit-transition: all 0.3 ease;
	cursor: pointer;
}

button:hover,
.login button:active,
.login button:focus {
	background: #1c5499;
}

.btn__yellow {
	width: 25%;
	height: auto;
	border-radius: 10px;
	font-weight: bold;
	background: #fff;
	border: 1px solid #707070;
	color: #333;
	margin: 0 auto 40px;
}

.btn__yellow:hover {
	background: #fcf6cd;
	border: 2px solid #f4d504;
	transition: all 0.3s 0s ease;
}

@media screen and (max-width: 767px) {
	.btn__yellow {
		width: 100%;
		height: auto;
	}
}

/* checkbox */
input[type="checkbox"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* checkbox */
input[type="checkbox"] {
	cursor: pointer;
	padding-left: 20px;
	vertical-align: middle;
	position: relative;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
	content: "";
	display: block;
	position: absolute;
}

input[type="checkbox"]::before {
	background-color: #ccc;
	border-radius: 4px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}

input[type="checkbox"]::after {
	border-bottom: 3px solid #1a549c;
	border-left: 3px solid #1a549c;
	opacity: 0;
	height: 6px;
	width: 11px;
	transform: rotate(-45deg);
	top: -4px;
	left: 4px;
}

input[type="checkbox"]:checked::after {
	opacity: 1;
}

/* radiobutton */
.form_radio label {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
}

.form_radio label::before,
.form_radio label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

.form_radio label::before {
	background-color: #ccc;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	left: 0;
}

.form_radio label::after {
	background-color: #1a549c;
	border-radius: 50%;
	opacity: 0;
	width: 10px;
	height: 10px;
	left: 4px
}

input:checked+label::after {
	opacity: 1;
}

.radiobutton_clear {
	position: absolute;
	white-space: nowrap;
	border: 0;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	overflow: hidden;
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
}

/* login -------------------------------*/
.login {
	position: relative;
}

.login footer {
	position: absolute;
	bottom: 0;
}

.login main {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login .box_wrapper {
	width: 25vw;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.login .box_login {
	max-width: 80vw;
	min-width: 25vw;
	background-color: #fff;
	display: flex;
	justify-content: center;
	padding: 20px;
	border-radius: 3px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 1000px) {
	.login {
		position: relative;
	}

	.login footer {
		position: absolute;
		bottom: 0;
	}

	.login main {
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.login .box_wrapper {
		width: calc(100% - 40%);
		box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	}

	.login .box_login {
		width: 100%;
		background-color: #fff;
		padding: 20px;
		border-radius: 3px;
		box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	}
}

/* Form -------------------------------*/
.wrapper {
	width: 100%;
	display: flex;
}

.container {
	width: calc(100% - 20%);
	margin: 0 auto;
	padding: 0 16px;
}

@media screen and (max-width: 767px) {
	.container {
		width: calc(100% - 10%);
		padding: 0;
	}
}

/* header -------------------------------*/
header {
	width: 100%;
	height: auto;
}

header .header__wrap {
	padding: 16px;
	border-bottom: 2px solid #ccc;
}

header .logo {
	display: flex;
	align-items: center;
}

header .logo img{
	width: 60px;
	height: auto;
}

header .logo h1 {
	font-size: 24px;
	padding-left: 16px;
	margin-right: 16px; 
	white-space: nowrap; 
}

header .box_user {
	text-align: right;
}

header .box_user p {
	margin: 0;
}

@media screen and (max-width: 767px) {
	header .logo img{
		width: 30px;
		height: auto;
	}

	header .header__wrap {
		padding: 8px;
	}

	header .logo h1 {
		font-size: 20px;
		padding-left: 8px;
	}

	header .box_user p {
		font-size: 16px;
	}
}

/* nav -------------------------------*/
.nav {
	width: 20%;
	min-height: calc(100vh - 132px);
	padding-top: 16px;
	border-right: 2px solid #ccc;
}

.nav__item a {
	display: flex;
}

.nav__item {
	background: #fff;
	padding: 16px 16px 16px 0;
	font-size: 16px;
	font-weight: bold;
}

.nav__item p {
	padding-left: 16px;
}

.nav__item:hover {
	background: #fcf6cd;
	border-left: 4px solid#f4d504;
	transition: all 0.3s ease;
}

.disable-hover {
	background: #ccc !important;
}

.disable-hover:hover {
	background: #ccc !important;
	border-left: none !important;
	pointer-events: none;
}

.nav__item span {
	padding-right: 16px;
}

@media screen and (max-width: 767px) {
	.nav {
		width: 60px;
	}
	.nav__item .nav__menu--text {
		display: none;
	}
}

/* main -------------------------------*/
.main {
	width: 100%;
	margin-top: 16px;
	margin-bottom: 70px;
}

.summary {
	width: 100%;
	height: auto;
	display: flex;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 30px;
}

.summary span {
	padding-right: 16px;
}

.feature h2 {
	font-size: 20px;
	margin-bottom: 16px;
}

.feature .req {
	width: 40px;
	height: auto;
	padding: 4px;
	background: #ec5f8f;
	color: #fff;
	border-radius: 5px;
	margin-left: 64px;
	font-size: 12px;
}

.element__wrap {
	width: 100%;
	height: auto;
}

.element__file {
	width: 100%;
	height: 250px;
	border: 3px dotted #57b8ff;
	margin-bottom: 10px;
	text-align:center;
	position:relative;
}

.element__file--inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

input[type="file"] {
	display: none;
}

.element__file--inner label {
	font-size: 16px;
	padding: 10px 40px;
	color: #fff;
	background-color: #57b8ff;
	border-radius: 3px;
	cursor: pointer;
}

.element__file--inner p {
	margin-top: 20px;
	font-size: 12px;
}

@media (max-width: 768px) {
	.element__file--inner label {
		font-size: 14px;
		padding: 10px;
	}
}

.group__wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.group__wrap .btn {
	width: 250px;
	height: 80px;
	border-radius: 10px;
	font-weight: bold;
	background: #fff;
	border: 1px solid #707070;
	color: #333;
}

.group__wrap .btn:hover {
	background: #fcf6cd;
	border: 2px solid #f4d504;
	transition: all 0.3s 0s ease;
}

@media screen and (max-width: 1200px) {
	.group__wrap .btn {
		width: 200px;
	}
}

@media screen and (max-width: 1000px) {
	.group__wrap .btn {
		width: 160px;
	}
}

@media screen and (max-width: 767px) {
	.group__wrap {
		display: block;
		margin-top: 50px;
	}

	.group__wrap .btn {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}
}

.element__result {
	width: 100%;
	height: 400px;
	border: 1px solid #ccc;
	margin-bottom: 80px;
	padding: 16px;
}

.form dt {
	font-weight: bold;
	margin-bottom: 5px;
}

.form dd {
	margin-bottom: 25px;
}

.textarea--large {
	width: 100%;
	height: auto;
}

.btn__copy  {
	display: block;
	margin-left: auto;
	border: none;
	background: #fff;
	width: 10%;
}

.btn__copy:hover  {
	background: #fff;
}

/* エラー */
.box_error {
	display: none;
	padding: 10px;
	background-color: #fff;
	margin-bottom: 40px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	border: solid 10px var(--color-error);
}

.box_error h2 {
	font-size: 18px;
	padding: 5px;
	margin: 0 0 10px;
	background-color: var(--color-error);
	color: #fff;
	border-radius: 5px;
	padding-left: 10px;
}

/* 情報 */
.box_info {
	display: none;
	padding: 10px;
	background-color: #fff;
	margin-bottom: 40px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	border: solid 10px #d4ecea;
}

.box_info h2 {
	font-size: 18px;
	padding: 5px;
	margin: 0 0 10px;
	background-color: #00f;
	color: #fff;
	border-radius: 5px;
	padding-left: 10px;
}

/* 出力結果 */
.box_export {
	display: none;
	padding: 10px;
	background-color: #fff;
	margin-bottom: 40px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	border: solid 3px #ccc;
}

.box_export h2 {
	font-size: 18px;
	padding: 5px;
	margin: 0 0 10px;
	background-color: #a5cfb8ad;
	color: #000;
	border-radius: 5px;
	padding-left: 10px;
}

.box_result h3 {
	border-bottom: dashed 1px #666;
	margin-bottom: 15px;
}

.box_result h4::before {
	content: "■";
	font-size: 80%;
	color: #8db9ce;
	margin-right: 5px;
}

.box_result span small {
	color: #333 !important;
}

.ex_active {
	display: block !important;
}

/* テーブル  */
.element__table {
	width: 100%;
}

.tb-01 {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.tb-01 th,
.tb-01 td {
	padding: 10px;
	border: solid 1px #ccc;
	text-align: center;
	box-sizing: border-box;
}

.tb-01 th {
	background: #f4d504;
}

@media screen and (max-width: 787px) {
	.tb-01 {
		width: 100%;
		/* text-align: left; */
	}

	.tb-01 thead {
		display:none;
	}

	.tb-01 tr {
		width: 100%;
	}

	.tb-01 td {
		display: block;
		width: 100%;
	}

	.tb-01 td:first-child {
		background: #f4d504;
		font-weight: bold;
	}

	.tb-01 td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		margin-right: 10px;
	}
}

/* 予約データカード型デザイン */
.card__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2%;
}

/* カード垂直方向 */
.card {
	width: 100%;
	height: auto;
	border: 2px solid #ccc;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 20px;
}

.card__item-vertical {
	width: 32%;
	height: auto;
	border: 2px solid #ccc;
	border-radius: 10px;
	margin-bottom: 20px;
	padding: 16px;
}

.card__item-vertical dl {
	display: flex;
	flex-wrap: wrap;
}

.card__item-vertical dt {
	width: 30%;
}

.card__item-vertical dd {
	width: 70%;
	padding-left: 1%;
	margin-inline-start: 0;
	margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
	.card__item-vertical {
		width: 49%;
	}
}

@media screen and (max-width: 1000px) {
	.card__item-vertical dl {
		display: block;
		/* flex-wrap: wrap; */
	}
	.card__item-vertical dt {
		width: 100%;
	}
	.card__item-vertical dd {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.card__item-vertical {
		width: 100%;
	}
}

/* summaryへステータス変化 */
.success {
	border: solid 10px var(--color-success);
}

.error {
	border: solid 10px var(--color-error);
}

.warning {
	border: solid 10px var(--color-warning);
}

.info {
	border: solid 10px var(--color-info);
}

.normal {
	border: solid 10px var(--color-normal);
}

.icon-success {
	color:var(--color-success);
}

.icon-error {
	color:var(--color-error);
}

.icon-warning {
	color:var(--color-warning);
}

.icon-info {
	color:var(--color-info);
}

.icon-normal {
	color:var(--color-normal);
}
