@charset "UTF-8";

/* ログイン画面 */
.login {
	position: relative;
	margin: 30px auto;
	padding: 20px;
	max-width: 700px;
	background: white;
	border-radius: 3px;
	box-shadow: 0 0 200px rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.3);
	text-align: center;
}

.login:before {
	content: '';
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
	z-index: -1;
	background: rgba(0,0,0,0.08);
	border-radius: 4px;
}

.login h1 {
	margin: -20px -20px 21px;
	padding: 12px 8px 7px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #555;
	text-align: center;
	text-shadow: 0 1px white;
	background: linear-gradient(to bottom, #fff, #eef2f5);
	border-bottom: 1px solid #cfcfcf;
	border-radius: 3px 3px 0 0;
	box-shadow: 0 1px whitesmoke;
}

.login p:first-child {
	margin-top: 0;
}

.login input[type="text"], .login input[type="password"] {
	padding: 0 10px;
	width: 100%;
	max-width: 300px;
	height: 34px;
	color: #404040;
	background: white;
	border: 1px solid;
	border-color: #c4c4c4 #d1d1d1 #d4d4d4;
	border-radius: 2px;
	outline: 5px solid #eff4f7;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.12);
	margin: 5px auto;
	box-sizing: border-box;
}

.login input[type="text"]:focus, .login input[type="password"]:focus {
	border-color: #7dc9e2;
	outline-color: #dceefc;
	outline-offset: 0;
}

.login-page {
	max-width: 980px;
	margin: 60px auto 0;
	padding: 46px 20px 70px;
	background:
		radial-gradient(circle at 88% 0, rgba(49, 140, 235, 0.26) 0 160px, transparent 161px),
		linear-gradient(180deg, #f7fbff 0, #fff 52%, #f9fcff 100%);
	color: #052a66;
	text-align: center;
}

body:has(.login-page) #contents {
	max-width: 1200px;
}

body:has(.login-page) #main > h3,
body:has(.login-page) #main form > h3 {
	display: none;
}

.login-page h1 {
	position: relative;
	margin: 0 0 34px;
	padding-bottom: 18px;
	color: #073477;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
}

.login-page h1:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 46px;
	height: 2px;
	background: #147ddf;
	transform: translateX(-50%);
}

.login-page__lead,
.login-page__help {
	margin: 0 0 16px;
	color: #063273;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
}

.login-page__help a {
	color: #075bd6;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.login-page .login {
	position: relative;
	max-width: 840px;
	margin: 34px auto 40px;
	padding: 30px 38px 40px;
	background: rgba(255,255,255,0.92);
	border: 2px solid #d8e8fb;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(43, 87, 130, 0.16);
	text-align: left;
}

.login-page .login:before {
	content: none;
}

.login__row {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr);
	align-items: center;
	gap: 28px;
	padding: 10px 0;
	border-bottom: 1px solid #d8e1ec;
}

.login__row label {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
	margin: 0;
	padding: 14px 18px;
	border-radius: 6px;
	background: linear-gradient(135deg, #eef7ff 0%, #e0efff 100%);
	color: #062e70;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
}

.login p.remember_me {
  line-height: 31px;
}

.login p.remember_me label,
.login p.remember_me span {
  font-size: 1.2rem;
  color: #777;
  cursor: pointer;
}

.login p.remember_me span i {
    font-size: 1.4rem;
    margin-right:0.3em;
    color: #FC8731;
}


.login p.remember_me input {
  position: relative;
  bottom: 1px;
  margin-right: 4px;
  vertical-align: middle;
}

.login-page .login p.submit {
	text-align: right;
}

:-moz-placeholder {
  color: #c9c9c9 !important;
  font-size: 1.3rem;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-size: 1.3rem;
}

.login-page .login input[type="text"], .login-page .login input[type="password"] {
	width: 100%;
	max-width: none;
	height: 56px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid #aebed4;
	border-radius: 5px;
	outline: none;
	background: #fff;
	box-shadow: inset 0 1px 2px rgba(8, 36, 78, 0.08);
	color: #062e70;
	font-size: 1.7rem;
	font-weight: 700;
	box-sizing: border-box;
}

.login-page .login input[type="text"]:focus, .login-page .login input[type="password"]:focus {
	border-color: #147ddf;
	box-shadow: 0 0 0 3px rgba(20,125,223,0.14), inset 0 1px 2px rgba(8,36,78,0.08);
}

.login__actions {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin: 36px 0 0;
}

.login__actions input[type="submit"],
.login__actions input[type="reset"] {
	width: 200px;
	height: 52px;
	padding: 0 18px;
	border-radius: 6px;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	cursor: pointer;
}

.login__actions input[type="submit"] {
	border: 1px solid #0754c9;
	background: linear-gradient(180deg, #086fe1 0%, #0054c8 100%);
	color: #fff;
	box-shadow: 0 3px 8px rgba(0,84,200,0.22);
}

.login__actions input[type="reset"] {
	border: 2px solid #075bd6;
	background: #fff;
	color: #075bd6;
	box-shadow: none;
}

.login__actions input:hover {
	opacity: 0.88;
}

.entry-form .login__actions button.btn01,
.entry-form .login__actions button.btn02 {
	flex: 0 1 200px;
	width: 200px;
	max-width: 100%;
}

.pass-actions {
	flex-wrap: wrap;
	gap: 22px;
}

.entry-form .pass-actions button.btn01,
.entry-form .pass-actions button.btn02 {
	flex-basis: 180px;
	width: 180px;
}

.login-notice {
	max-width: 840px;
	margin: 0 auto;
	padding: 22px 32px;
	border: 2px solid #d0e6ff;
	border-radius: 8px;
	background: rgba(248,252,255,0.92);
	color: #064097;
	text-align: left;
}

.login-notice p {
	margin: 0 0 12px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.7;
}

.login-notice ul {
	margin: 0;
	padding-left: 1.4em;
}

.login-notice li {
	margin: 6px 0;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.6;
}

.login-notice li::marker {
	color: #075bd6;
}

@media screen and (max-width: 767px) {
	.login-page {
		margin-top: 24px;
		padding: 30px 12px 46px;
	}
	.login-page h1 {
		font-size: 2.3rem;
	}
	.login {
		padding: 22px 18px 28px;
	}
	.login__row {
		display: block;
		padding: 0 0 18px;
		border-bottom: 0;
	}
	.login__row + .login__row {
		margin-top: 14px;
	}
	.login__row label {
		min-height: 48px;
		margin-bottom: 10px;
		font-size: 1.45rem;
	}
	.login__actions {
		gap: 14px;
	}
	.login__actions input[type="submit"],
	.login__actions input[type="reset"] {
		width: 48%;
		min-width: 0;
	}
	.login-notice {
		padding: 18px;
	}
}

.error-page {
	max-width: 980px;
	margin: 46px auto 0;
	padding: 42px 20px 70px;
	background:
		radial-gradient(circle at 88% 0, rgba(49,140,235,0.18) 0 160px, transparent 161px),
		linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
	color: #052a66;
	text-align: center;
}

.error-card {
	max-width: 860px;
	margin: 0 auto;
	padding: 34px 42px 40px;
	border: 2px solid #d8e8fb;
	border-radius: 8px;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 8px 18px rgba(18,64,118,0.14);
}

.error-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, #17b6bd 0%, #075bd6 100%);
	color: #fff;
	font-size: 2.8rem;
	box-shadow: 0 8px 16px rgba(7,91,214,0.18);
}

.error-card__icon:before {
	content: "!";
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
}

.error-card h1 {
	position: relative;
	margin: 0 0 28px;
	padding-bottom: 16px;
	color: #073477;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.error-card h1:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 54px;
	height: 3px;
	margin-left: -27px;
	background: #147ddf;
}

.error-card__body {
	color: #10294e;
	font-size: 1.55rem;
	font-weight: 600;
	line-height: 1.8;
}

.error-card__body > p {
	margin: 0 0 18px;
}

.error-card__body .box02 {
	margin: 24px auto;
	padding: 22px 28px;
	border: 2px solid #d0e6ff;
	border-radius: 8px;
	background: rgba(248,252,255,0.94);
	color: #064097;
	text-align: left;
}

.error-card__body .box02 p {
	margin: 0;
}

.error-card__body a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 52px;
	margin-top: 4px;
	padding: 10px 24px;
	border: 2px solid #075bd6;
	border-radius: 6px;
	background: #fff;
	color: #075bd6;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	box-shadow: 0 5px 12px rgba(7,91,214,0.1);
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.error-card__body a:hover {
	background: #f1f8ff;
	color: #0049b8;
	box-shadow: 0 7px 15px rgba(7,91,214,0.16);
}

@media screen and (max-width: 767px) {
	.error-page {
		margin-top: 24px;
		padding: 30px 12px 46px;
	}
	.error-card {
		padding: 26px 18px 30px;
	}
	.error-card h1 {
		font-size: 2.2rem;
	}
	.error-card__body {
		font-size: 1.4rem;
	}
	.error-card__body .box02 {
		padding: 18px;
	}
	.error-card__body a {
		width: 100%;
		min-width: 0;
	}
}

.entry_btn_area {
	display:flex;
	justify-content:center;
	gap: 20px 30px;
	margin: 5em 0;
}
.entry_btn_area a {
	width: 35%;
	text-decoration: none;
}
.entry_btn_area a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
.entry_btn_area div.font {
	font-size: 3.6rem;
}
.entry_btn_area div.text {
	font-size: 2.4rem;
	text-align: center;
	font-weight: bold;
}
.entry_btn_area div.text span {
	font-size: 2.2rem;
	font-weight: bold;
}
.entry_btn {
	width:100%;
	border-radius:.5rem;
	line-height:1.8em;
	display:flex;
	justify-content:center;
	align-items:center;
	gap: 10px 20px;
	padding: 30px 20px;
}
a.entry_btn01 {
	background-color:#E6F4F7;
	border: 2px solid #369cb8;
	-webkit-box-shadow:0 3px #2A7A91;
	box-shadow:0 3px #2A7A91;
	color: #369cb8;
}
a.entry_btn02 {
	background-color:#FEF1DF;
	border: 2px solid #F79201;
	-webkit-box-shadow:0 3px #D27C00;
	box-shadow:0 3px #D27C00;
	color: #F79201;
}
a.entry_btn03 {
	background-color:#e6f7f0;
	border: 2px solid #36b88b;
	-webkit-box-shadow:0 3px #2a9172;
	box-shadow:0 3px #2a9172;
	color: #36b895;
}

.entry-top-page {
	max-width: 980px;
	margin: 42px auto 0;
	padding: 36px 20px 18px;
	background:
		radial-gradient(circle at 88% 0, rgba(49, 140, 235, 0.18) 0 160px, transparent 161px),
		linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
	color: #052a66;
}

.entry-top-page .entry_btn_area {
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 300px));
	justify-content: center;
	gap: 30px;
	margin: 34px auto 56px;
}

.entry-top-page .entry_btn_area--single {
	grid-template-columns: minmax(220px, 300px);
}

.entry-top-form {
	width: 100%;
}

.entry-form.entry-top-form button.btn01,
.entry-form.entry-top-form button.btn02 {
	min-height: 58px;
	border-radius: 6px;
	font-size: 1.7rem;
}

.entry-form.entry-top-form button.btn01 {
	border: 1px solid #0754c9;
	background: linear-gradient(180deg, #086fe1 0%, #0054c8 100%);
	color: #fff;
	box-shadow: 0 3px 8px rgba(0,84,200,0.22);
}

.entry-form.entry-top-form button.btn01::after,
.entry-form.entry-top-form button.btn02::after {
	content: none;
}

.entry-form.entry-top-form button.btn01:hover {
	background: linear-gradient(180deg, #0d78ec 0%, #075bd6 100%);
	color: #fff;
}

.entry-form.entry-top-form button.btn02 {
	border: 2px solid #075bd6;
	background: #fff;
	color: #075bd6;
	box-shadow: none;
}

.entry-form.entry-top-form button.btn02:hover {
	background: #f3f8ff;
	color: #075bd6;
}

.entry-top-page .waku_gray01.form_area_s {
	max-width: 760px;
	margin: 0 auto 18px;
	padding: 18px 24px;
	border: 2px solid #d0e6ff;
	border-radius: 8px;
	background: rgba(248,252,255,0.92);
	color: #064097;
}

@media screen and (max-width: 767px) {
	.entry-top-page {
		margin-top: 24px;
		padding: 28px 12px 10px;
	}
	.entry-top-page .entry_btn_area {
		grid-template-columns: 1fr;
		gap: 16px;
		margin: 24px auto 34px;
	}
}

/* 管理者トップ */
.admin-dashboard {
	max-width: 1040px;
	margin: 28px auto 32px;
	padding: 28px;
	border: 1px solid #d8e8fb;
	border-radius: 8px;
	background: linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
	box-shadow: 0 6px 18px rgba(43, 87, 130, 0.1);
	color: #052a66;
}

.admin-dashboard--seminar {
	margin-top: 20px;
}

.admin-dashboard-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid #d6e4f6;
}

.admin-dashboard-head h2 {
	margin: 0;
	color: #073477;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.35;
}

.admin-dashboard-head p {
	margin: 0;
	color: #4a668e;
	font-size: 1.35rem;
	font-weight: 700;
}

.admin-dashboard-db {
	margin: 0 0 22px;
	padding: 13px 16px;
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: rgba(248,252,255,0.95);
	color: #244b80;
	font-size: 1.3rem;
	line-height: 1.7;
	text-align: left;
}

.admin-dashboard-db span {
	display: inline-block;
	margin-right: 12px;
	padding: 3px 10px;
	border-radius: 999px;
	background: #e4f1ff;
	color: #075bd6;
	font-weight: 700;
}

.admin-menu-section {
	margin: 0 0 24px;
	text-align: left;
}

.admin-menu-section:last-child {
	margin-bottom: 0;
}

.admin-menu-section h3 {
	margin: 0 0 12px;
	padding: 0 0 0 12px;
	border-left: 5px solid #075bd6;
	color: #073477;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.admin-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 14px;
}

.admin-menu-grid--compact {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-menu-grid--settings {
	grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.admin-menu-grid--uploads {
	grid-template-columns: repeat(3, minmax(230px, 1fr));
}

.admin-menu-grid--seminar {
	grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.admin-menu-btn {
	width: 100%;
	min-height: 54px;
	margin: 0;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	box-shadow: none;
}

.admin-menu-btn--long {
	min-height: 64px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 1.4rem;
	line-height: 1.35;
	white-space: normal;
}

.admin-menu-btn--primary,
.admin-menu-btn--upload {
	border: 1px solid #075bd6;
	background: #075bd6;
	color: #fff;
	box-shadow: 0 4px 10px rgba(7,91,214,0.22);
}

.admin-menu-btn--primary:hover,
.admin-menu-btn--upload:hover {
	border-color: #0049b8;
	background: #0049b8;
	color: #fff;
}

.admin-menu-btn--secondary,
.admin-menu-btn--download {
	border: 1px solid #0aa5b0;
	background: #0aa5b0;
	color: #fff;
	box-shadow: 0 4px 10px rgba(10,165,176,0.22);
}

.admin-menu-btn--secondary:hover,
.admin-menu-btn--download:hover {
	border-color: #078b96;
	background: #078b96;
	color: #fff;
}

.admin-menu-btn--tertiary,
.admin-menu-btn--clear {
	border: 1px solid #149c82;
	background: #149c82;
	color: #fff;
	box-shadow: 0 4px 10px rgba(20,156,130,0.22);
}

.admin-menu-btn--tertiary:hover,
.admin-menu-btn--clear:hover {
	border-color: #0f806b;
	background: #0f806b;
	color: #fff;
}

.admin-menu-item--manual {
	display: grid;
	grid-column: 1 / -1;
	justify-self: center;
	width: 100%;
	max-width: 360px;
	gap: 8px;
}

.admin-menu-item--manual .admin-menu-btn {
	padding-right: 14px;
	padding-left: 14px;
	white-space: nowrap;
}

.admin-menu-item--manual a {
	color: #075bd6;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.admin-result-page {
	max-width: 1180px;
	margin: 28px auto 36px;
	color: #052a66;
}

.admin-result-card {
	padding: 28px;
	border: 1px solid #d8e8fb;
	border-radius: 8px;
	background: linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
	box-shadow: 0 6px 18px rgba(43,87,130,0.1);
}

.admin-result-head {
	margin-bottom: 20px;
}

.admin-result-toolbar {
	margin: 0 0 20px;
}

.admin-result-search {
	margin: 0;
	padding: 18px 20px;
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: rgba(248,252,255,0.95);
}

.admin-result-search > p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 12px;
	margin: 0 0 14px;
}

.admin-result-condition {
	margin: 0 0 12px;
	padding: 14px 16px;
	border: 1px solid #d0e6ff;
	border-radius: 6px;
	background: #fff;
	color: #244b80;
	line-height: 1.7;
	text-align: left;
}

.admin-result-count {
	margin: 0;
	color: #073477;
	font-size: 1.45rem;
	font-weight: 700;
	text-align: center;
}

.admin-result-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	max-width: 980px;
	margin: 0 auto 14px;
}

.admin-result-actions--sub {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-result-actions--print {
	grid-template-columns: minmax(180px, 260px);
	justify-content: center;
}

.admin-result-btn,
.admin-result-actions button.btn12 {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 9px 16px;
	border-radius: 6px;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	box-shadow: 0 4px 10px rgba(7,91,214,0.18);
}

.admin-result-btn--primary {
	border: 1px solid #075bd6;
	background: #075bd6;
}

.admin-result-btn--primary:hover {
	border-color: #0049b8;
	background: #0049b8;
	color: #fff;
}

.admin-result-btn--download {
	border: 1px solid #0aa5b0;
	background: #0aa5b0;
	box-shadow: 0 4px 10px rgba(10,165,176,0.2);
}

.admin-result-btn--download:hover {
	border-color: #078b96;
	background: #078b96;
	color: #fff;
}

.admin-result-btn--mail {
	border: 1px solid #138ed8;
	background: #138ed8;
}

.admin-result-btn--mail:hover {
	border-color: #0b74b7;
	background: #0b74b7;
	color: #fff;
}

.admin-result-btn--clear,
.admin-result-actions button.btn12 {
	border: 1px solid #149c82;
	background: #149c82;
}

.admin-result-btn--clear:hover,
.admin-result-actions button.btn12:hover {
	border-color: #0f806b;
	background: #0f806b;
	color: #fff;
}

/* dual horizontal scroll
-----------------------------------------------------*/
.dual-scroll {
	width: 100%;
}

.dual-scroll-top,
.dual-scroll-body {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

.dual-scroll-top {
	height: 16px;
	margin: 12px 0 0;
}

.dual-scroll-top::-webkit-scrollbar,
.dual-scroll-body::-webkit-scrollbar {
	height: 12px;
}

.dual-scroll-spacer {
	height: 1px;
}

.admin-result-dual-scroll .admin-result-table-wrap {
	margin-top: 0;
}

.admin-summary-scroll .dual-scroll-body {
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(24,78,132,0.08);
}

.admin-summary-scroll table.admin-summary-table {
	min-width: 1100px;
	margin: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.admin-result-table-wrap {
	width: 100%;
	margin: 16px 0 18px;
	overflow-x: auto;
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}

.admin-result-table-wrap table.admin-result-table {
	min-width: 1280px;
	margin: 0;
	border-collapse: collapse;
	border: 1px solid #d0e6ff;
	table-layout: fixed;
}

.admin-result-table-wrap table.admin-result-table th {
	background: #075bd6;
	color: #fff;
	border: 1px solid #d0e6ff;
	padding: 8px 6px;
	font-size: 1.25rem;
	line-height: 1.35;
	text-align: center;
	vertical-align: middle;
	white-space: normal;
}

.admin-result-table-wrap table.admin-result-table td {
	background: #fff;
	border: 1px solid #d0e6ff;
	padding: 8px 6px;
	font-size: 1.25rem;
	line-height: 1.55;
	vertical-align: top;
	overflow-wrap: break-word;
}

.admin-result-table-wrap table.admin-result-table td.bg_gray02 {
	background: #f4f9ff;
}

.admin-result-table-wrap table.admin-result-table tr:nth-child(3n+4) td {
	border-top: 2px solid #b7d5f5;
}

.admin-result-table-wrap table.admin-result-table .radiobox01 {
	display: inline-block;
	line-height: 1;
}

.admin-result-table-wrap table.admin-result-table .radiobox01 label {
	margin-left: 10px;
	padding: 3px 8px;
}

.admin-result-table .admin-result-col-check { width: 32px; }
.admin-result-table .admin-result-col-no { width: 38px; }
.admin-result-table .admin-result-col-name { width: 150px; }
.admin-result-table .admin-result-col-contact { width: 58px; }
.admin-result-table .admin-result-col-job { width: 145px; }
.admin-result-table .admin-result-col-date { width: 128px; }
.admin-result-table .admin-result-col-entry { width: 150px; }
.admin-result-table .admin-result-col-seminar { width: 155px; }
.admin-result-table .admin-result-col-mail { width: 158px; }

.admin-result-table-wrap table.admin-result-table .admin-result-seminar-cell {
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
	text-align: left;
}

.admin-result-table-wrap table.admin-result-table .nowrap {
	white-space: normal;
}

.admin-result-table-wrap table.admin-result-table .width030 {
	text-align: right;
}

.admin-history-table-wrap {
	width: 100%;
	margin: 16px 0 18px;
	overflow-x: auto;
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}

.admin-history-table-wrap table.admin-history-table {
	width: 100%;
	min-width: 900px;
	margin: 0;
	border-collapse: collapse;
	border: 1px solid #d0e6ff;
	table-layout: fixed;
}

.admin-history-table-wrap table.admin-history-table th {
	padding: 9px 8px;
	border: 1px solid #d0e6ff;
	background: #075bd6;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.35;
	text-align: center;
	vertical-align: middle;
}

.admin-history-table-wrap table.admin-history-table td {
	padding: 8px;
	border: 1px solid #d0e6ff;
	background: #fff;
	font-size: 1.25rem;
	line-height: 1.55;
	vertical-align: top;
	overflow-wrap: break-word;
}

.admin-history-table-wrap table.admin-history-table tr:nth-child(even) td {
	background: #f4f9ff;
}

.admin-history-table .admin-history-col-date { width: 150px; }
.admin-history-table .admin-history-col-user { width: 120px; }
.admin-history-table .admin-history-col-function { width: 110px; }
.admin-history-table .admin-history-col-result { width: 80px; }
.admin-history-table .admin-history-col-detail { width: auto; }

.admin-history-table-wrap table.admin-history-table .nowrap {
	white-space: normal;
}

.admin-history-table-wrap table.admin-history-table .admin-history-detail {
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.admin-history-actions {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr));
	gap: 10px;
	max-width: 980px;
	margin: 18px auto 22px;
}

.admin-history-btn {
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

.admin-history-btn--danger {
	border: 1px solid #075bd6;
	background: #075bd6;
	color: #fff;
}

.admin-history-btn--danger:hover {
	border-color: #0049b8;
	background: #0049b8;
	color: #fff;
}

.admin-history-btn--back {
	grid-column: 2 / span 2;
	border: 1px solid #075bd6;
	background: #fff;
	color: #075bd6;
}

.admin-history-btn--back:hover {
	background: #eef7ff;
	color: #0049b8;
}

.admin-payment-page {
  max-width: 980px;
  margin: 28px auto 40px;
  color: #052a66;
}
.admin-payment-card {
  padding: 28px;
  border: 1px solid #d8e8fb;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
  box-shadow: 0 6px 18px rgba(43,87,130,0.1);
}
.admin-payment-content {
  text-align: left;
}
.admin-payment-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 0;
}
.admin-payment-actions--top {
  margin-top: 0;
  margin-bottom: 20px;
}
.admin-payment-actions .admin-history-btn {
  max-width: 260px;
}
.admin-payment-search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid #d0e6ff;
  border-radius: 8px;
  background: rgba(248,252,255,0.95);
  color: #244b80;
  font-size: 1.35rem;
  font-weight: 700;
}
.admin-payment-search-row input[type="text"] {
  box-sizing: border-box;
  width: 130px;
  min-height: 42px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cbd9ef;
  border-radius: 6px;
  background: #fff;
  color: #122b58;
  font-size: 1.45rem;
  box-shadow: inset 0 1px 2px rgba(16,64,120,0.06);
}
.admin-payment-search-row span {
  color: #5b7194;
  font-size: 1.25rem;
}
.admin-payment-groups {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.admin-payment-group {
  overflow: hidden;
  border: 1px solid #d0e6ff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(43,87,130,0.08);
}
.admin-payment-group-title {
  padding: 12px 16px;
  border-left: 5px solid #075bd6;
  border-bottom: 1px solid #d0e6ff;
  background: #edf6ff;
  color: #073477;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.5;
}
.admin-history-table-wrap table.admin-payment-table,
.admin-payment-table {
  width: 100%;
  min-width: 0;
  margin: 0;
  border-collapse: collapse;
  border: 0;
  table-layout: fixed;
}
.admin-payment-table th,
.admin-payment-table td {
  padding: 11px 14px;
  border: 1px solid #d0e6ff;
  background: #fff;
  color: #122b58;
  font-size: 1.35rem;
  line-height: 1.55;
  vertical-align: middle;
}
.admin-payment-table th {
  background: #075bd6;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.admin-payment-table tr:nth-child(even) td {
  background: #f4f9ff;
}
.admin-payment-table .admin-payment-col-date,
.admin-payment-table .admin-payment-col-amount {
  width: 50%;
}
.admin-payment-empty {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid #d0e6ff;
  border-radius: 8px;
  background: #fff;
  color: #244b80;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
}
.admin-payment-download {
  margin-top: 22px;
}
.admin-upload-page {
	max-width: 920px;
	margin: 28px auto 40px;
}

.admin-upload-error {
	max-width: 920px;
	margin: 20px auto -10px;
	padding: 12px 16px;
	border: 1px solid #efb6c1;
	border-left: 4px solid #c54b62;
	border-radius: 6px;
	background: #fff6f8;
	color: #a52f46;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.admin-upload-card {
	padding: 28px;
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(43,87,130,0.1);
}

.admin-upload-head {
	margin-bottom: 22px;
	text-align: center;
}

.admin-upload-head h2 {
	margin: 0 0 10px;
	color: #073477;
	font-size: 2rem;
	line-height: 1.4;
	letter-spacing: 0;
}

.admin-upload-head p {
	margin: 0;
	color: #244b80;
	font-size: 1.35rem;
	line-height: 1.7;
}

.admin-upload-template {
	margin: 0 0 18px;
	text-align: center;
}

.admin-upload-template a {
	display: inline-block;
	padding: 11px 18px;
	border: 1px solid #0aa5b0;
	border-radius: 6px;
	background: #eefbfc;
	color: #087d86;
	font-size: 1.3rem;
	font-weight: 700;
	text-decoration: none;
}

.admin-upload-template a:hover {
	background: #dff6f8;
	color: #066871;
}

.admin-upload-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	table-layout: fixed;
}

.admin-upload-table th,
.admin-upload-table td {
	padding: 16px;
	border: 1px solid #d0e6ff;
	font-size: 1.3rem;
	vertical-align: middle;
}

.admin-upload-table th {
	width: 140px;
	background: #eef7ff;
	color: #073477;
	text-align: center;
}

.admin-upload-table td {
	background: #fff;
	text-align: left;
}

.admin-upload-file {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 10px;
	border: 1px solid #9ebfea;
	border-radius: 5px;
	background: #f8fbff;
	color: #122b58;
}

.admin-upload-file::file-selector-button {
	margin-right: 12px;
	padding: 8px 14px;
	border: 0;
	border-radius: 4px;
	background: #075bd6;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.admin-upload-option {
	margin-bottom: 12px;
}

.admin-upload-notice {
	margin: 18px 0;
	padding: 16px 18px;
	border: 1px solid #d7e7f8;
	border-left: 4px solid #138ed8;
	border-radius: 6px;
	background: #f7fbff;
	color: #244b80;
	font-size: 1.2rem;
	line-height: 1.85;
	text-align: left;
}

.admin-upload-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 260px));
	justify-content: center;
	gap: 14px;
	margin-top: 22px;
}

.admin-upload-btn {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 9px 16px;
	border-radius: 6px;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

.admin-upload-btn--primary {
	border: 1px solid #0aa5b0;
	background: #0aa5b0;
	color: #fff;
}

.admin-upload-btn--primary:hover {
	border-color: #078b96;
	background: #078b96;
	color: #fff;
}

.admin-upload-btn--secondary {
	border: 1px solid #075bd6;
	background: #fff;
	color: #075bd6;
}

.admin-upload-btn--secondary:hover {
	background: #eef7ff;
	color: #0049b8;
}

.admin-upload-result-table {
	width: 100%;
	margin: 18px 0;
	border-collapse: collapse;
	border: 1px solid #d0e6ff;
}

.admin-upload-result-table th {
	padding: 8px 6px;
	border: 1px solid #d0e6ff;
	background: #075bd6;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: center;
	white-space: normal;
}

.admin-upload-result-table td {
	padding: 8px 6px;
	border: 1px solid #d0e6ff;
	background: #fff;
	font-size: 1.2rem;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.admin-upload-result-table tr:nth-child(even) td {
	background: #f4f9ff;
}

.admin-upload-result-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 260px));
	justify-content: center;
	gap: 14px;
	margin: 22px auto;
}

.admin-upload-result-actions--single {
	grid-template-columns: minmax(220px, 320px);
}

.admin-result-page .mm_btm05,
.admin-result-page .mm_top05 {
	margin: 14px 0;
	padding: 10px 12px;
	border-radius: 6px;
	background: #eef7ff;
	color: #073477;
	text-align: center;
}

.admin-result-page .mm_btm05 a,
.admin-result-page .mm_top05 a {
	color: #075bd6;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media screen and (max-width: 767px) {
	.admin-dashboard {
		padding: 20px 14px;
	}
	.admin-dashboard-head {
		display: block;
	}
	.admin-dashboard-head p {
		margin-top: 8px;
	}
	.admin-menu-grid,
	.admin-menu-grid--compact,
	.admin-menu-grid--settings,
	.admin-menu-grid--uploads,
	.admin-menu-grid--seminar {
		grid-template-columns: 1fr;
	}
	.admin-menu-item--manual {
		max-width: none;
	}
	.admin-result-card {
		padding: 20px 12px;
	}
	.admin-result-search {
		padding: 16px 12px;
	}
	.admin-result-actions,
	.admin-result-actions--sub,
	.admin-result-actions--print {
		grid-template-columns: 1fr;
	}
	.admin-history-actions,
	.admin-upload-actions,
	.admin-upload-result-actions,
	.admin-upload-result-actions--single {
		grid-template-columns: 1fr;
	}
	.admin-history-btn--back {
		grid-column: auto;
	}
	.admin-upload-card {
		padding: 20px 14px;
	}
	.admin-upload-table,
	.admin-upload-table tbody,
	.admin-upload-table tr,
	.admin-upload-table th,
	.admin-upload-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	.admin-upload-table th {
		border-bottom: 0;
		text-align: left;
	}
}
.exp {
	font-size: 1.3rem;
	color: #CE006C;
	font-weight: bold;
}

table.table00,
table.table01,
table.table01a,
table.table02 {
  border-collapse: collapse;
	border: 2px solid #B2D9F2;
}
table.table03 {
  border-collapse: collapse;
	border: 1px solid #c9c9c9;
}
/*テーブルを親要素の幅いっぱいに伸ばす*/
table.table01,
table.table01a,
table.table02,
table.table03 {
	width: 100%;
}
table.table00 {
	margin: 0 auto;
}
/* table01, table01a */
table.table00 th,
table.table01 th,
table.table01a th,
table.table01 td,
table.table01a td {
	padding: 0.5em;
	border-top: 2px solid #B2D9F2;
  border-bottom: 2px solid #B2D9F2;
}
table.table03 th,
table.table03 td {
	padding: 0.5em;
	border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
table.table00 td,
table.table01 td,
table.table01a td {
	border-left: 2px solid #B2D9F2;
}
table.table03 td {
	border-left: 1px solid #c9c9c9;
	line-height: 2em;
	font-size: 1.6rem;
}
table.table00 th,
table.table01 th,
table.table01a th {
	background: #7CBDE8;
}
table.table03 th {
	background: #dfdfdf;
}
table.table00 th,
table.table01 th,
table.table03 th {
	width: 30%;
	min-width:100px;
	text-align: right;
}
table.table01a th {
	min-width:150px;
	padding: 0.7em 3em 0.7em 1em;
	position: relative;
	background-clip: padding-box; /* FireFoxでposition:relativeを指定したthやtdのボーダーが消えるのを防ぐ */	
	text-align: left;
	vertical-align: top;
}
/* table02 */
table.table02 th,
table.table02 td {
	padding: 0.8em 0.4em;
	border: 1px solid #B2D9F2;
}
table.table02 th {
	text-align: center;
	background: #7CBDE8;
	white-space: nowrap;
}
table.table02_left th {
	text-align: left;
}

/* セミナー参加登録 */
table.tbl7,
table.tbl7a {
	width: 100%;
	border-spacing: 4px;
	background: #fff;
	empty-cells: show;
}
table.tbl7 a {
	text-decoration: none;
}
.tbl7 th,
.tbl7a th {
	white-space: nowrap;
}
.tbl7 th {
	padding: 0.2em;
	color: #fff;
	text-align: center;
	background: #60BF00;
	border-right: 1px solid #509F00;
	border-bottom: 1px solid #509F00;
}
.tbl7a th {
	padding: 0.3em 0.2em 0.2em 0.5em;
	text-align: left;
	vertical-align: middle;
	background: #F3E6EF;
	border-left: 5px solid #E9CEDF;
}
.tbl7 td {
	padding: 0.2em;
}
.tbl7a td {
	padding: 0.45em 0;
	line-height: 1.9;
}
th.tbl7_td_t1,
td.tbl7_td_t1 {
	width: 20%;
	text-align: center;
	white-space: nowrap;
}
td.tbl7_td_t2 {
	border-bottom: 1px dotted #B8C3CC;
}
td.tbl7_td_t3 {
	margin-bottom: 1em;
	border-bottom: 1px solid #B8C3CC;
}
.tbl7a th.left {
	text-align: left;
}
.seminar_ttl {
	text-align: left !important;
	line-height: 1.7;
}
.seminar_note {
	line-height: 1.9;
	margin: 0.7em 0 1em;
}
.tbl7a td,
.table01 td,
.table01a td,
.table01_sp td,
.table01a_sp td {
	line-height: 1.8;
}
.tbl7a input[type="radio"],
.tbl7a input[type="checkbox"],
.table01 input[type="radio"],
.table01 input[type="checkbox"],
.table01a input[type="radio"],
.table01a input[type="checkbox"],
.table01_sp input[type="radio"],
.table01_sp input[type="checkbox"],
.table01a_sp input[type="radio"],
.table01a_sp input[type="checkbox"] {
	-moz-appearance: auto;
	-webkit-appearance: auto;
	appearance: auto;
	box-shadow: none;
	border: revert;
	margin: 0 0.3em 0.25em 0;
	vertical-align: middle;
}
.table01 input[type="button"]:not([class]),
.table01a input[type="button"]:not([class]),
.table01_sp input[type="button"]:not([class]),
.table01a_sp input[type="button"]:not([class]) {
	-moz-appearance: auto;
	-webkit-appearance: auto;
	appearance: auto;
	border: 1px solid #999;
	padding: 0.15em 0.45em;
	background: buttonface;
	color: buttontext;
	font-size: 1.4rem;
	line-height: 1.2;
	cursor: pointer;
}

table.table04,
table.table04a {
	border-spacing:4px;
	background-color:#ffffff;
	empty-cells:show;
	width: 100%;
}
table.table04 a {
	text-decoration: none;
}
.table04 th,
.table04a th {
	white-space: nowrap;
}
.table04a th {
	border-left:5px solid #E9CEDF;
	background:#F3E6EF;
	padding:0.3em 0.2em 0.2em 0.5em;
	text-align:left;
}
.table04 th {
	border-right:1px solid #60a81d;
	border-bottom:1px solid #60a81d;
	color:#FFFFFF;
	background:#76c42e;
	padding:0.5em 1em;
	text-align:left;
	line-height:1em;
}
.table04 td {
	padding:0.2em;
}
.table04a td {
	padding:0.3em 0;
}

table.table04 .td01 {
	text-align:center;
	width: 20%;
	white-space: nowrap;
}
table.table04 .td02 {
	border: none;
	border-bottom:1px dotted #B8C3CC;
}
table.table04 .td3 {
	border-bottom:1px solid #B8C3CC;
	margin-bottom: 1em;
}

/* 修正箇所のセルを黄色に */
.bg_yelw01 { 
	background: #FF9;
}
.bg_gray01 { 
	background: rgb(218, 218, 218);
}
.nowrap {
	white-space: nowrap;
}

/* admin summary table
-----------------------------------------------------*/
table.admin-summary-table {
	width: 100%;
	margin: 16px auto 24px;
	border-collapse: collapse;
	border: 1px solid #d0e6ff;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(24, 78, 132, 0.08);
}

table.admin-summary-table th,
table.admin-summary-table td {
	padding: 9px 10px;
	border: 1px solid #d0e6ff;
	font-size: 1.3rem;
	line-height: 1.55;
	vertical-align: middle;
	word-break: break-word;
}

table.admin-summary-table th {
	background: #075bd6;
	color: #fff;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

table.admin-summary-table td {
	background: #fff;
	color: #082650;
}

table.admin-summary-table tr:nth-child(even) td {
	background: #f4f9ff;
}

table.admin-summary-table th.th_imp {
	width: 40px;
	text-align: right;
}
.ime_active { ime-mode: active; }    /* ONにする */
.ime_disabled { ime-mode: disabled; } /* 無効にする */

/* 必須マーク */
.form_waku03,
.form_waku03_gray {
	font-size: 1.2rem;
	padding: 0.3em 0.3em 0.2em;
	margin-left: 2px;
	color: #FFF;
	display: inline-block;	/* 角丸の指定 */
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
table.table01a th .form_waku03,
table.table01a th .form_waku03_gray {
	position: absolute;
	top: 20%;
	right: 5px;
}
.form_waku03 {
	background: #FF7E00;
}
.form_waku03_gray {
	background: #828282;
}

/* エラーメッセージ */
.form_waku04 {
  background: #F00;
  font-weight:bold;
  padding: 0 0.3em;
  color: #FFF;
}

/* ---------------------------------------
 *ここから入力欄のスタイル指定
--------------------------------------- */

/* デフォルトのスタイルを無効にする */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
input[type="button"],
select,
textarea,
button {
  -moz-default-appearance: none;
  -webkit-default-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

button, input, select, textarea {
	font-family : inherit;
	font-size : 100%;
}

input[type="submit"],
input[type="button"],
button {
	font-size: 1.6rem;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  background: #e9f5fb;
	border: 1px solid #7CBDE8;
	padding: 0.3em 0.5em;
	margin: 0.2em 0;
	transition: 0.8s;
}
textarea {
	display: inline-block;
  width: 100%;
}
/*入力欄にフォーカスしたら変化*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
	background: #FFFFCC;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="text"]:disabled {
	cursor: default;
	border: 1px solid #CCC;
	background: #e8e8e8;
}

input[type="text"].back_gray,
input[type="text"]:focus.back_gray {
	cursor: default;
	border: 1px solid #CCC;
	background: #FFF;
	transition: 0s;
	box-shadow: none;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - .5em);
  right: 1rem;
}
.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
}

/* セレクトボックス */
select {
	padding: 2px 8px 1px 10px;
	-webkit-appearance: menulist;
	-moz-appearance: auto;
	appearance: auto;
	border: 1px solid #7CBDE8;
	border-radius: 3px;
	background: #f8f8f8;
	margin: 0.2em 0;
	max-width: 100% !important;
}
select:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
option {
	max-width:8em;
	white-space:normal;
}

/* ラジオボタン */
.radiobox01 input[type="radio"] {
	display: none !important;
}
.radiobox01 label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin-left: 15px;
	padding: 3px 15px;
	color: #122b58;
	line-height: 1.5em;
}
.radiobox01 label.only {
	padding: 3px 8px;
}

.radiobox01 label:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -10px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	border: 2px solid #9eb1d6;
	border-radius: 50%;
	background: #fff;
}
.radiobox01 input[type="radio"]:checked + label:before {
	border-color: #1a5be8;
}
.radiobox01 input[type="radio"]:disabled + label {
	cursor: default;
}
.radiobox01 input[type="radio"]:disabled + label:before {
  border: 2px solid #CCC;
	cursor: default;
}
.radiobox01 input[type="radio"]:checked + label:after {
	position: absolute;
	content: "";
	top: 50%;
	left: -6px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-radius: 50%;
	background: #1a5be8;
}

/* チェックボックス */
.checkbox01 input[type="checkbox"] {
	display:none !important;
	cursor: pointer;
} /* to hide the checkbox itself */
.checkbox01 label {
	color: #122b58;
}
.checkbox01 input[type="checkbox"] + label:before {
	content: "\f096";
	font-family: FontAwesome;
	font-size: 2.4rem;
	letter-spacing: 5px;
	color: #9eb1d6;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.checkbox01 input[type="checkbox"]:checked + label:before {
	content: "\f046";
	color: #1a5be8;
}
.checkbox01 input[type="checkbox"]:disabled + label {
	cursor: default;
}
.checkbox01 input[type="checkbox"]:disabled + label:before {
	color: #CCC;
	cursor: default;
}
.checkbox01 label:hover {
   cursor: pointer;
}

.checkbox_view input[type="checkbox"] + label:after {
  content: "しない";
}
.checkbox_view input[type="checkbox"]:checked + label:after {
  content: "する";
}

.checkbox_appro input[type="checkbox"] + label:after {
  content: "不可";
}
.checkbox_appro input[type="checkbox"]:checked + label:after {
  content: "可";
}

.checkbox_requi input[type="checkbox"] + label:after {
  content: "非必須";
}
.checkbox_requi input[type="checkbox"]:checked + label:after {
  content: "必須";
}

/* 画像アップボタン */
.form__file input[type="file"] {
   display: none;
}
.form__file label {
	background: #CCC;
	padding: 10px 15px;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.form__file label:hover {
   background: #DCDCDC;
}
/*.form__file label::after {
   content: "選択されていません";
   font-size: 14px;
   height: 20px;
   line-height: 20px;
   position: absolute;
   right: -140px;
   top: calc(50% - 10px);
}
.form__file label.changed::after {
   content: "";
}
*/
.form__file i {
	color: #666;
	font-size: 2.0rem;
}

/* ボタン */
input[type="submit"].btn00,
input[type="button"].btn00,
button.btn00 {
	border: 2px solid #89BDDE;
	padding: 0.5em 4em;
	border-radius: 5px;
	background: #006599;
	color: #fff;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}
input[type="submit"].btn00:hover,
input[type="button"].btn00:hover,
button.btn00:hover {
	box-shadow: none;
	background: #2679B4;
	cursor: pointer;
}

input[type="submit"].btn03,
input[type="button"].btn03,
button.btn03 {
	border: 1px solid #CCCCCC;
	padding: 0.5em 4em;
	background: #1e85901e;
	color: #39505A;
	position: relative;
	font-size: 2.0rem;
}
input[type="submit"].btn03:hover,
input[type="button"].btn03:hover,
button.btn03:hover {
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
	background: #FFF;
	cursor: pointer;
}

input[type="submit"].btn04,
input[type="button"].btn04,
button.btn04 {
	background: #E87400;
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 0.8em 4em;
	color: #FFF;
	transition: 0.3s ease-in-out;
	font-size: 2.0rem;
	font-weight: 500;
	cursor: pointer;
}
input[type="submit"].btn04:before,
input[type="button"].btn04:before,
button.btn04:before {
    font-family: "Font Awesome 7 Pro";
    font-weight: 700;
    content: "\f013";
    position: relative;
    margin-right: 8px;
    color: #FFF;
		font-size: 2.4rem;
}
input[type="submit"].btn04:hover,
input[type="button"].btn04:hover,
button.btn04:hover {
    background: #F79F01;
    color: #FFF;
}

button.btn01,
button.btn02,
button.btn02dis,
button.btn11,
button.btn12,
button.btn21,
button.btn31,
button.btn32,
button.btn33,
button.btn41,
button.btn51,
button.btn63 {
    cursor: pointer;
    border: 0;
    color: #fff;
    font-weight: 400;
}
button.btn01,
button.btn02,
button.btn02dis,
button.btn41,
button.btn51,
a.btn51 {
	min-width: 150px;
}

button.btn01,
button.btn11,
button.btn21,
button.btn31 {
		background: #369cb8;
}
button.btn02,
button.btn12,
button.btn32 {
  background: #A8A8A8;
}
button.btn33 {
	background: #82C91E;
}
button.btn41 {
	background: #3ca381;
}
button.btn51,
a.btn51 {
  color: #505252;
  text-shadow: 0px 1px 0px #fafafa;
  background: #fbfaf4;
  background: -webkit-gradient(linear, left top, left bottom, from(#fbfaf4), to(#ece8e6));
  background: -moz-linear-gradient(top,  #fbfaf4,  #ece8e6);
  background: -o-linear-gradient(top,  #fbfaf4,  #ece8e6);
  background: -ms-linear-gradient(top,  #fbfaf4,  #ece8e6);
  background: linear-gradient(top,  #fbfaf4,  #ece8e6);
  border: 1px solid #dcd9d8;
  border-bottom: 1px solid #c1c1bd;
  -webkit-box-shadow:  0 0 1px #c7c5c1;
  -moz-box-shadow:  0 0 1px #c7c5c1;
  box-shadow:  0 0 1px #c7c5c1;
  -webkit-border-radius: 5px; 
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

button.btn63 {
	background:#FF9999;
}

button.btn01,
button.btn02,
button.btn02dis,
button.btn41 {
	padding: 10px 30px;
	font-size: 1.6rem;
	margin: 10px 0;
}

button.btn11,
button.btn12,
button.btn51,
a.btn51
 {
	padding: 5px 20px;
	font-size: 1.4rem;
}
a.btn51 {
	display: inline-block;
	text-decoration: none;
}
button.btn21 {
	padding: 5px;
	font-size: 1.2rem;
}
button.btn31,
button.btn32,
button.btn33,
button.btn63 {
	padding: 20px 10px;
	min-width: 300px;
	font-size: 1.6rem;
	margin: 10px 0;
}

button.btn01:hover,
button.btn11:hover,
button.btn21:hover,
button.btn31:hover {
	background: #6dbed4;
}
button.btn02:hover,
button.btn12:hover,
button.btn32:hover {
	background: #8D8D8D;
}
button.btn33:hover {
	background: #76AD24;
}
button.btn41:hover {
	background: #57af92;
}
button.btn51:hover,
a.btn51:hover {
  background: #fbfbf9;
}
button.btn63:hover {
	background:#FF7171;
}
button.btn61,
button.btn62 {
  padding:15px 25px;
	width: 100%;
	max-width: 450px;
  text-decoration: none;
  line-height: 40px;
  font-size:2.6rem;
	font-weight: bold;
  -webkit-box-shadow: 1px 1px 2px #ccc;
  -moz-box-shadow: 1px 1px 2px #ccc;
  box-shadow: 1px 1px 2px #ccc;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  border-radius: 5px;
}
button.btn61 {
	color: #fff;
  text-shadow: 0px -1px 0px #af6d01;
  border: 1px solid #ff9900;
  background: #fe9902;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffae13), to(#fe9902));
  background: -moz-linear-gradient(top,  #ffae13,  #fe9902);
  background: -o-linear-gradient(top,  #ffae13,  #fe9902);
  background: -ms-linear-gradient(top,  #ffae13,  #fe9902);
  background: linear-gradient(top,  #ffae13,  #fe9902);
	cursor: pointer;
}
button.btn61:hover {
  opacity: 0.8;
}
button.btn62  {
  color: #fff;
  text-shadow: 0px -1px 0px #aaaaaa;
  border: 1px solid #cccccc;
  background: #cccccc;
  background: -webkit-gradient(linear, left top, left bottom, from(#d1d0d0), to(#cccccc));
  background: -moz-linear-gradient(top,  #d1d0d0,  #cccccc);
  background: -o-linear-gradient(top,  #d1d0d0,  #cccccc);
  background: -ms-linear-gradient(top,  #d1d0d0,  #cccccc);
  background: linear-gradient(top,  #d1d0d0,  #cccccc);
	cursor: no-drop;
}

button.btn02dis {
	background: #cccccc;
	cursor: no-drop;
}

/* 表示領域が767.98x以下の場合に適用するスタイル
-----------------------------------------------------*/
@media screen and (max-width : 767.98px ){
	/* table01 */
	table.table01_sp,
	table.table01a_sp,
	table.table03_sp {
		border-top: none;
	}
	/* thとtdをブロック化して幅100％にして、縦積み */
  table.table01_sp th,
	table.table01_sp td,
	table.table01a_sp th,
	table.table01a_sp td,
	table.table03_sp th,
	table.table03_sp td {
		width: 100%;
		display: block;
	}
	/* th（項目名）欄の不要な余白削除・テキスト左寄せ */
	table.table01_sp th,
	table.table01a_sp th,
	table.table03_sp th {
		text-align: left;
		padding-left: 1em; 
	}
	table.table01a_sp th,
	table.table03_sp th {
		padding-top: 0.6em;
		padding-bottom: 0.6em;
}
	table.table01_sp td,
	table.table01a_sp td,
	table.table03_sp td {
		border: none;
		padding-right: 10px; 
		padding-left: 10px; 
	}
	/*不要な最終行の左のthを非表示にする*/
	table.table01_sp .empty,
	table.table01a_sp .empty,
	table.table03_sp .empty {
		display: none;
	}

	/* table02 */
  table.table02_sp thead { 
		display: none;
  }

  table.table02_sp td { 
    display: block;
  }
	table.table02_sp td::before {
    content: attr(data-label);
    font-size: 1.4rem;
    color: #2387CA;
    display: block;
    margin-bottom: 0.25rem;
		text-align: left;
		font-weight: bold;
		background: #EEE;
		padding: 3px 13px;
		border-left: 3px solid #7CBDE8;
  }
	table.table02_sp td.num {
		background: #7CBDE8;
		color: #FFF;
  }
	table.table02_sp td.num::before {
		padding: 0;
	}
	table.table02_sp td.nottl::before {
		padding: 0;
	}
	table.table02_sp td.text-center {
		text-align: left;
	}
	/* フォーム関係 */
	table.table01_sp input[type="text"],
	table.table01_sp input[type="email"],
	table.table01_sp input[type="password"],
	table.table02_sp input[type="text"],
	table.table02_sp input[type="email"],
	table.table02_sp input[type="password"],
	table.table03_sp input[type="text"],
	table.table03_sp input[type="email"],
	table.table03_sp input[type="password"],
	textarea {
		padding: 0.5em;
		margin: 0.2em 0;
	}
	
	button.sw100 {
		width: 49%;
    padding: 15px 20px;
	}
}

input.f01 {
	width: 100%;
	max-width:1em;
	text-align: center;
}

input.f03 {
	width: 100%;
	max-width:3em;
	text-align: center;
}

input.f04 {
	width: 100%;
	max-width:4em;
	text-align: center;
}

input.f10 {
	width: 100%;
	max-width:6em;
}

input.f15 {
	width: 100%;
	max-width:8em;
}

input.f20 {
	width: 100%;
	max-width:10em;
}
input.f25 {
	width: 100%;
	max-width:12em;
}

input.f30 {
	width: 100%;
	max-width:15em;
}

input.f35 {
	width: 100%;
	max-width:18em;
}

input.f40 {
	width: 100%;
	max-width:20em;
}

input.f50 {
	width: 100%;
	max-width:25em;
}

input.f60 {
	width: 100%;
	max-width:30em;
}
input.f80 {
	width: 100%;
	max-width:40em;
}
input.f100 {
	width: 100%;
	max-width:50em;
}
input.f00 {
	width: 100%;
}
input.form01_memberid {
	position: absolute;
	left: 490px;
}

select[name="app"] {
	width:300px;
	height:3em;
}

textarea.f70 {
	width: 100%;
	max-width:600px;
	height:15em;
}

textarea.f00 {
	width: 100%;
}

textarea.f01 {
	width: 100%;
	max-width:420px;
	height: 5em;
}
textarea.f02 {
	width: 100%;
	max-width:420px;
	height: 15em;
}
textarea.f10 {
	width: 100%;
	height: 8em;
}
textarea.f11 {
	width: 100%;
	height: 4em;
}

/* 管理者画面メニューボタン、検索画面ボタン */
.ul_btn02_admn,
.ul_srch01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	width: 100%;
	margin: 0;
	box-sizing: border-box;
}

/* 管理者画面メニューボタン */
.ul_btn02_admn {
	border-bottom: 1px solid #CCC;
	padding: 20px 0;
}
.ul_btn02_admn li {
	margin: 10px;
	width: 100%;
	max-width: 350px;
}
.ul_btn02_admn button {
	display: block;
	text-align: center;
	padding: 25px;
	background: linear-gradient(#FEFEFE, #F3F5F5);
	background: -o-linear-gradient(#FEFEFE, #F3F5F5);
	background: -ms-linear-gradient(#FEFEFE, #F3F5F5);
	background: -moz-linear-gradient(#FEFEFE, #F3F5F5);
	background: -webkit-linear-gradient(#FEFEFE, #F3F5F5);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #F3F5F5), color-stop(0.00, #FEFEFE));
	border: 1px solid #CCC;
	border-radius: 10px;
	line-height: 1em;
	transition: .3s;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	color: #e971b3;
	font-weight: 900;
	font-size: 1.6rem;
}
.ul_btn02_admn button i {
	display: block;
	margin-bottom: 10px;
	font-size: 8rem;
	color: #57858a;
}
.ul_btn02_admn button:hover {
	cursor: pointer;
	opacity: 0.6;
}

/* 検索画面 */
.ul_srch01 {
	align-items: center;
	padding: 0;
	margin: 15px 0;
}
.ul_srch01_in {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
}
.ul_srch01 li,
.ul_srch01_in li {
	margin: 0 5px;
	padding: 0;
}
.ul_srch01 button.btn01 {
	background: #369cb8;
	color: #fff;
	padding: 5px 10px;
	font-size: 1.4rem;
	min-width: inherit;
	width: 100px;
}
.ul_srch01 button:hover {
	color : #fff;
	background : #6dbed4;
	cursor: pointer;
}

/* 選挙投票画面 */
.btn_area_vote,
.btn_area_vote_in {
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
}
.btn_area_vote div {
	margin: 5px;
}

.vote_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.vote_list div {
	padding: 5px 10px;
	width: 25%;
}


/* 表示領域が767.98px以下の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (max-width: 767.98px) {
	.entry_btn_area {
		flex-direction: column;
		max-width: 400px;
		margin: 3em auto;
	}
	.entry_btn_area a {
		width: 100%;
	}

	/* 管理者画面メニューボタン */
	.ul_btn02_admn,
	.ul_srch01,
	.ul_srch01_in {
		flex-direction: column;
	}
	.ul_btn02_admn,
	.ul_srch01 {
		margin: 30px auto;
	}
	.ul_btn02_admn li {
		width: 75%;
		margin: 10px auto;
	}
	.ul_srch01_in li {
		width: 100%;
	}

	/* 検索画面 */	
	.ul_srch01 button.btn01 {
		width: 350px;
	}

	input[type="submit"].btn03,
	input[type="button"].btn03,
	button.btn03 {
		font-size: 1.6rem;
		padding: 0.5em 2em;
		width: 100%;
	}
}


/* c_register legacy form adjustments */
.table01 th.seminar_ttl,
.table01_sp th.seminar_ttl,
.seminar_ttl {
  text-align: left !important;
  line-height: 1.7;
}
.tbl7a th {
  text-align: left !important;
}
.tbl7a td,
.tbl7a label,
.table01 td,
.table01 label,
.table01_sp td,
.table01_sp label {
  line-height: 1.9;
}
.tbl7a tr,
.table01 tr,
.table01_sp tr {
  margin-bottom: 0.35em;
}

/* user_index dashboard */
.user-dashboard {
  max-width: 1180px;
  margin: 0 auto 40px;
  color: #12305f;
}
.user-dashboard-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0 22px;
  padding: 24px 24px;
  background: linear-gradient(120deg, #10b8bf 0%, #0b8bd9 65%, #1476c8 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 100, 180, 0.18);
  position: relative;
  overflow: hidden;
}
.user-dashboard-hero::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: -24px;
  width: 280px;
  height: 110px;
  border: 18px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.user-dashboard-hero__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #10aebd;
  font-size: 2.2rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.16);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.user-dashboard-hero h2 {
  margin: 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.user-dashboard-lead {
  margin: 0 0 16px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.user-dashboard-actions {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.user-dashboard-pill {
  min-width: 280px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 24px;
  border: 1px solid #c6dbf5;
  border-radius: 10px;
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(24, 78, 132, 0.16);
  transition: transform .15s ease, box-shadow .15s ease;
}
.user-dashboard-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(24, 78, 132, 0.2);
}
.user-dashboard-pill--blue { color: #075bd6; }
.user-dashboard-pill--green { color: #168f28; }
.user-dashboard-qr {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 40px;
  margin: 0 0 18px;
  padding: 26px 34px;
  border: 1px solid #b8d5f6;
  border-left: 14px solid #0d6fd4;
  border-radius: 12px;
  background: linear-gradient(155deg, #fff 0%, #fff 68%, #e9fbfd 100%);
  box-shadow: 0 6px 18px rgba(29, 104, 172, 0.14);
}
.user-dashboard-qr__code {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d5e3f4, 0 4px 12px rgba(0,0,0,0.12);
}
.user-dashboard-qr__code canvas {
  display: block;
  width: 150px;
  height: 150px;
}
.user-dashboard-qr__code span {
  color: #6e8bb8;
  font-weight: 700;
}
.user-dashboard-qr__body {
  min-width: 0;
}
.user-dashboard-badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 22px;
  border-radius: 999px;
  background: #0967d8;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.user-dashboard-qr h3 {
  display: inline-block;
  margin: 0 0 8px 14px;
  color: #075bd6;
  font-size: 2.8rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.user-dashboard-qr p {
  margin: 0 0 14px;
  font-size: 1.7rem;
  font-weight: 700;
}
.user-dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 18px;
}
.user-dashboard-card {
  position: relative;
  min-height: 250px;
  padding: 24px 22px 18px;
  border: 1px solid #c3dafa;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 14px rgba(28, 84, 152, 0.12);
  overflow: hidden;
}
.user-dashboard-card::before {
  content: "";
  position: absolute;
  left: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  transform: rotate(45deg);
  opacity: .86;
}
.user-dashboard-card--blue::before { background: #0d6fd4; }
.user-dashboard-card--green::before { background: #39a833; }
.user-dashboard-card--cyan::before { background: #13aeb8; }
.user-dashboard-card--orange::before { background: #fe9306; }
.user-dashboard-card--purple::before { background: #7b45d9; }
.user-dashboard-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-size: 3.2rem;
  background: #f8fbff;
  border: 1px solid currentColor;
}
.user-dashboard-card--blue { color: #075bd6; }
.user-dashboard-card--green { color: #208d27; }
.user-dashboard-card--cyan { color: #0798a6; }
.user-dashboard-card--orange { color: #fe7300; }
.user-dashboard-card--purple { color: #7237d5; }
.user-dashboard-card h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0;
}
.user-dashboard-card > p {
  margin: 0 0 12px;
  color: #263f66;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .user-dashboard-card > h3 + p {
    min-height: 3em;
  }
}
.user-dashboard-card__actions {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
}
.user-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 10px rgba(19, 88, 170, 0.18);
}
.user-dashboard-btn--blue { background: #075bd6; }
.user-dashboard-btn--green { background: #279c2d; }
.user-dashboard-btn--cyan { background: #0aa5b0; }
.user-dashboard-btn--orange { background: #fe7300; }
.user-dashboard-btn--purple { background: #7237d5; }
.user-dashboard-btn--gray { background: #c0c0c0; }
.user-dashboard-btn:hover {
  color: #fff;
  filter: brightness(1.06);
}
.user-dashboard-card__done {
  margin: 0;
  color: #37536d;
  font-weight: 700;
}
.user-dashboard-card__note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 8px 0 0 !important;
  color: #e63232 !important;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.5;
}
.user-dashboard-card__note i {
  margin-top: 2px;
}
.user-dashboard-lunch {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 16px 26px;
  border: 1px solid #f1cfdf;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff4f8 0%, #fffafd 100%);
  box-shadow: 0 5px 14px rgba(216, 74, 140, 0.08);
}
.user-dashboard-lunch__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fbe0ec;
  color: #d84a8c;
  font-size: 2.8rem;
}
.user-dashboard-lunch__body {
  min-width: 0;
}
.user-dashboard-lunch__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0 0 7px;
}
#main .user-dashboard-lunch__head h3 {
  margin: 0;
  color: #d84a8c;
  font-size: 2rem;
  line-height: 1.35;
}
.user-dashboard-lunch__head .user-dashboard-lunch__status {
  margin: 0;
  padding: 5px 14px;
  border-radius: 6px;
  background: #d84a8c;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}
.user-dashboard-lunch__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 14px;
  color: #12305f;
}
.user-dashboard-lunch__meta p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.user-dashboard-lunch__meta p span {
  font-weight: 700;
}
.user-dashboard-lunch__divider {
  color: #d8a5bd;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .user-dashboard-lunch {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 18px 20px;
  }
}
@media screen and (max-width: 520px) {
  .user-dashboard-lunch {
    grid-template-columns: 1fr;
  }
  .user-dashboard-lunch__icon {
    display: none;
  }
  .user-dashboard-lunch__meta {
    display: grid;
    gap: 4px;
  }
  .user-dashboard-lunch__divider {
    display: none;
  }
}
.user-dashboard-info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 0 18px;
}
.user-dashboard-notice,
.user-dashboard-profile,
.user-dashboard-payment {
  border: 1px solid #c7dbf5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(28, 84, 152, 0.1);
}
.user-dashboard-notice {
  padding: 18px 22px;
}
.user-dashboard-notice h3,
.user-dashboard-payment h3 {
  margin: 0 0 8px;
  color: #174f9c;
  font-size: 1.8rem;
  letter-spacing: 0;
}
.user-dashboard-notice p {
  margin: 0 0 8px;
  font-weight: 700;
}
.user-dashboard-notice ul {
  margin: 0;
  padding-left: 1.4em;
  line-height: 1.7;
}
.user-dashboard-profile {
  position: relative;
  min-height: 110px;
  padding: 18px 122px 16px 28px;
}
.user-dashboard-profile p {
  margin: 0 0 6px;
  font-weight: 700;
}
.user-dashboard-profile h3 {
  margin: 0 0 8px;
  color: #075bd6;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0;
}
.user-dashboard-profile h3 span {
  color: #12305f;
  font-size: 1.6rem;
}
.user-dashboard-profile__icon {
  position: absolute;
  right: 28px;
  top: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #9fc7fa;
  color: #10aebd;
  font-size: 3.2rem;
}
.user-dashboard-payment {
  position: relative;
  margin: 0 0 18px;
  padding: 24px 26px;
  overflow: hidden;
  border-color: #b9d5f8;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 58%);
}
.user-dashboard-payment::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(180deg, #075bd6 0%, #0aa5b0 100%);
}
.user-dashboard-payment__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
}
.user-dashboard-payment__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid #9fc7fa;
  border-radius: 50%;
  background: #fff;
  color: #075bd6;
  font-size: 2.5rem;
  box-shadow: 0 4px 12px rgba(17, 83, 150, 0.1);
}
.user-dashboard-payment__head h3 {
  margin: 0 0 4px;
  color: #0753b8;
  font-size: 2rem;
}
.user-dashboard-payment__head p {
  margin: 0;
  color: #263f66;
  font-size: 1.6rem;
  font-weight: 700;
}
.user-dashboard-payment__action {
  margin: 0 0 10px;
  padding-left: 72px;
}
button.user-dashboard-payment__btn {
  position: relative;
  min-width: 280px;
  cursor: pointer;
  min-height: 50px;
  padding: 11px 48px 11px 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(120deg, #075bd6 0%, #0b78dc 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 6px 14px rgba(7, 91, 214, 0.24);
  transition: background-color .2s, box-shadow .2s, transform .2s;
}
button.user-dashboard-payment__btn::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: FontAwesome;
  font-weight: normal;
  transform: translateY(-50%);
}
button.user-dashboard-payment__btn:hover {
  background: linear-gradient(120deg, #064db5 0%, #086bc8 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 91, 214, 0.3);
  transform: translateY(-1px);
}
.user-dashboard-payment__notice > .mm_btm10 {
  margin: 0;
}
.user-dashboard-payment__notice .waku_pink_l02 {
  margin: 0;
  padding: 16px 20px;
  border: 1px solid #f0cfd5;
  border-left: 5px solid #e64a5d;
  border-radius: 7px;
  background: #fff8f9;
  color: #263f66;
  line-height: 1.75;
}
.user-dashboard-payment__notice .waku_pink_l02 p {
  margin: 0 0 10px;
}
.user-dashboard-payment__notice .waku_pink_l02 p:last-child {
  margin-bottom: 0;
}
.user-dashboard-payment__notice .waku_pink_l02 .txt_red:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d9273d;
  font-size: 1.5rem;
}
.user-dashboard-payment__notice .waku_pink_l02 .txt_red:first-child::before {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 1.7rem;
}
.user-dashboard-session-list {
  margin: 12px 0 0;
  border: 1px solid #c7dbf5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(17, 83, 150, 0.08);
  overflow: hidden;
}
.user-dashboard-session-list h3 {
  margin: 0;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(120deg, #075bd6 0%, #0b78dc 100%);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.user-dashboard-session-list h3 span {
  margin-left: 8px;
  font-size: 1.3rem;
  font-weight: 700;
}
.user-dashboard-session-list__body {
  display: grid;
}
.user-dashboard-session-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-top: 1px solid #dbe8f8;
}
.user-dashboard-session-item:first-child {
  border-top: 0;
}
.user-dashboard-session-item__category,
.user-dashboard-session-item__title {
  margin: 0;
  color: #12305f;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .user-dashboard-hero {
    padding: 22px;
  }
  .user-dashboard-qr,
  .user-dashboard-info-row {
    grid-template-columns: 1fr;
  }
  .user-dashboard-qr {
    justify-items: center;
    text-align: center;
  }
  .user-dashboard-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .user-dashboard-session-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
  .user-dashboard-profile {
    padding-right: 24px;
  }
  .user-dashboard-profile__icon {
    position: static;
    transform: none;
    margin-top: 14px;
  }
}
@media screen and (max-width: 520px) {
  .user-dashboard-hero {
    gap: 14px;
  }
  .user-dashboard-hero h2 {
    font-size: 2.4rem;
  }
  .user-dashboard-pill {
    min-width: 0;
    width: 100%;
  }
  .user-dashboard-card-grid {
    grid-template-columns: 1fr;
  }
  .user-dashboard-payment {
    padding: 20px 18px 20px 22px;
  }
  .user-dashboard-payment__head {
    align-items: flex-start;
    gap: 12px;
  }
  .user-dashboard-payment__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    font-size: 2.1rem;
  }
  .user-dashboard-payment__action {
    padding-left: 0;
  }
  button.user-dashboard-payment__btn {
    width: 100%;
    min-width: 0;
  }
  .user-dashboard-payment__notice .waku_pink_l02 {
    padding: 14px 15px;
  }
  .user-dashboard-qr h3 {
    display: block;
    margin-left: 0;
    font-size: 2.2rem;
  }
}

/* c_register entry form redesign */
.entry-form {
  max-width: 1160px;
  margin: 0 auto 46px;
  color: #102b62;
}
.entry-form-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  margin: 0 0 22px;
  padding: 18px 34px;
  background: linear-gradient(120deg, #075bd6 0%, #0877da 55%, #12b8c0 100%);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(20, 105, 190, 0.18);
  overflow: hidden;
  position: relative;
}
.entry-form-hero::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -34px;
  width: 340px;
  height: 130px;
  border: 14px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.entry-form-hero span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.entry-form > .lh20 {
  margin: 0 0 18px;
  color: #082b94;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.9;
}
.entry-form > .lh20 p {
  margin: 0;
}
.entry-form table.table01 {
  overflow: hidden;
  border: 1px solid #c8daf8;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(17, 83, 150, 0.08);
}
.entry-form table.table01 th,
.entry-form table.table01 td {
  border-top: 0;
  border-bottom: 1px solid #d8e5f7;
  padding: 18px 22px;
  vertical-align: middle;
}
.entry-form table.table01 tr:last-child th,
.entry-form table.table01 tr:last-child td {
  border-bottom: 0;
}
.entry-form table.table01 th {
  width: 230px;
  min-width: 190px;
  color: #0736a5;
  background: #f8fbff;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
}
.entry-form table.table01 td {
  border-left: 1px solid #d8e5f7;
  background: #fff;
  color: #122b58;
  line-height: 1.85;
}
.entry-form table.table01 td .txt_blue02,
.entry-form table.table01 td .txt_blue,
.entry-form table.table01 td .fw-bolder {
  color: #0736a5;
}
.entry-form .form_waku03,
.entry-form .form_waku03_gray {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  border: 1px solid #ff4f57;
  border-radius: 4px;
  background: #fff;
  color: #ff2d35;
  font-size: 1.3rem;
  line-height: 1.4;
}
.entry-form table.table01 th .form_waku03,
.entry-form table.table01 th .form_waku03_gray {
  position: static;
  vertical-align: middle;
}
.entry-form input[type="text"],
.entry-form input[type="email"],
.entry-form input[type="password"],
.entry-form select,
.entry-form textarea {
  max-width: 100%;
  min-height: 42px;
  margin: 4px 3px;
  padding: 8px 12px;
  border: 1px solid #cbd9ef;
  border-radius: 6px;
  background: #fff;
  color: #122b58;
  font-size: 1.5rem;
  line-height: 1.45;
  box-shadow: inset 0 1px 2px rgba(16, 64, 120, 0.06);
}
.entry-form textarea {
  width: 100%;
  min-height: 84px;
}
.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus {
  border-color: #2c7be5;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.16);
}
.entry-form .radiobox01 label,
.entry-form .checkbox01 label {
  margin: 4px 24px 4px 15px;
  font-weight: 700;
  line-height: 1.7;
}
.entry-form table.tbl7a {
  overflow: hidden;
  margin: 12px 0 0;
  border: 1px solid #c8daf8;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  background: #fff;
}
.entry-form .tbl7a th {
  padding: 12px 18px;
  border-bottom: 1px solid #d8e5f7;
  background: #f8fbff;
  color: #0736a5;
  font-size: 1.7rem;
}
.entry-form .tbl7a td {
  padding: 10px 18px;
  border-bottom: 1px solid #d8e5f7;
  color: #122b58;
}
.entry-form .tbl7a tr:last-child td {
  border-bottom: 0;
}
.entry-form table.seminar-select-table tr:last-child td.tbl7_td_t3 {
  border-bottom: 1px solid #bcd4f6;
}
.entry-form .seminar_note {
  margin: 8px 0 12px;
  padding: 10px 16px;
  border-left: 4px solid #1a5be8;
  background: #f4f8ff;
  color: #0736a5;
  line-height: 1.8;
}
.entry-form table.seminar-select-table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 14px;
  background: transparent;
}
.entry-form .seminar-select-list table.seminar-select-table:last-child {
  margin-bottom: 0;
}
.entry-form .seminar-select-table > tbody > tr {
  background: #fff;
}
.entry-form .seminar-select-table .seminar-session-head {
  padding: 0;
  border: 0;
  background: transparent;
}
.entry-form .seminar-session-card-head {
  padding: 14px 18px;
  border: 1px solid #bcd4f6;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #f4f8ff 0%, #eaf6ff 100%);
  color: #0736a5;
  font-size: 1.7rem;
  line-height: 1.6;
}
.entry-form .seminar-select-table > tbody > tr:not(:first-child) .seminar-session-card-head {
  margin-top: 0;
}
.entry-form .seminar-select-table .tbl7_td_t3 {
  padding-bottom: 14px;
  border: 1px solid #bcd4f6;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: #fff;
  position: relative;
  box-shadow: 0 5px 16px rgba(17, 83, 150, 0.08);
}
.entry-form .seminar-select-table .tbl7_td_t3::after {
  content: none;
}
.entry-form table.seminar-choice-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-bottom: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
}
.entry-form .seminar-choice-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #d8e5f7;
  vertical-align: middle;
}
.entry-form .seminar-choice-table tr:last-child td {
  border-bottom: 0;
}
.entry-form .seminar-choice-head td {
  background: #f8fbff;
  color: #0736a5;
  font-weight: 700;
}
.entry-form .seminar-choice-none {
  white-space: normal;
}
.entry-form .seminar-choice-row:hover td {
  background: #f8fbff;
}
.entry-form .seminar-choice-name {
  width: 170px;
  color: #0736a5;
  font-weight: 700;
}
.entry-form .seminar-choice-detail {
  min-width: 0;
}
.entry-form .seminar-choice-theme {
  display: inline-block;
  color: #102b62;
  font-size: 1.55rem;
  line-height: 1.65;
}
.entry-form .seminar-choice-capacity,
.entry-form .seminar-choice-fee {
  width: 90px;
  white-space: nowrap;
  color: #102b62;
  font-weight: 700;
}
.entry-form .seminar-choice-fee {
  color: #075bd6;
}
.entry-form .btn_area_entry {
  display: grid;
  grid-template-columns: minmax(140px, 210px) minmax(260px, 430px) minmax(140px, 210px);
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 900px;
  margin: 30px auto 0;
}
.entry-form .btn_area_entry > div:first-child {
  grid-column: 1;
}
.entry-form .btn_area_entry > div:last-child {
  grid-column: 2;
}
.password-page {
  max-width: 760px;
  margin: 0 auto 40px;
}
.password-page__head {
  margin: 0 0 18px;
  text-align: center;
}
.password-page__head h3.ttl03 {
  margin: 0 auto 14px;
  padding: 13px 18px;
  border: 1px solid #c8daf8;
  border-left: 6px solid #075bd6;
  border-radius: 8px;
  background: #f4f8ff;
  color: #0736a5;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.password-page__head p {
  margin: 0;
  color: #12305f;
  font-weight: 700;
  line-height: 1.8;
}
.password-page__form {
  width: 100%;
  max-width: 680px;
  margin-bottom: 20px;
}
.entry-form .password-page__form table.table01 {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}
.entry-form .password-page__form table.table01 th {
  width: 250px;
  min-width: 250px;
}
.password-page__form input[type="password"] {
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}
.password-page__actions {
  margin-top: 22px;
}
.entry-form .password-page__actions {
  max-width: 680px;
}
.entry-form button.btn01,
.entry-form button.btn02 {
  width: 100%;
  min-height: 56px;
  margin: 0;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}
.entry-form button.btn01 {
  border: 0;
  background: linear-gradient(120deg, #0d64df 0%, #6e35e8 100%);
  box-shadow: 0 8px 18px rgba(74, 70, 210, 0.26);
}
.entry-form button.btn01::after {
  content: "\f105";
  font-family: FontAwesome;
  margin-left: 18px;
  font-weight: normal;
}
.entry-form button.btn02 {
  border: 1px solid #2b75e8;
  background: #fff;
  color: #075bd6;
  box-shadow: none;
}
.entry-form button.btn01:hover {
  background: linear-gradient(120deg, #075bd6 0%, #5b2dd4 100%);
}
.entry-form button.btn02:hover {
  background: #f3f8ff;
  color: #075bd6;
}
.entry-form .login__actions button.btn01 {
  border: 1px solid #0754c9;
  background: #0054c8;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0,84,200,0.22);
}
.entry-form .login__actions button.btn01::after {
  content: none;
}
.entry-form .login__actions button.btn01:hover {
  background: #075bd6;
  color: #fff;
}
.entry-form .login__actions button.btn02 {
  border: 2px solid #075bd6;
  background: #fff;
  color: #075bd6;
  box-shadow: none;
}
.entry-form .login__actions button.btn02:hover {
  background: #f3f8ff;
  color: #075bd6;
}
.entry-form input.f03,
.entry-form input[name="zip1"],
.entry-form input[name="zip2"] {
  width: 72px;
  max-width: 72px;
  text-align: center;
}
.entry-form input.f04,
.entry-form input[name="tel1"],
.entry-form input[name="tel2"],
.entry-form input[name="tel3"],
.entry-form input[name="tel4"],
.entry-form input[name="fax1"],
.entry-form input[name="fax2"],
.entry-form input[name="fax3"] {
  width: 86px;
  max-width: 86px;
  text-align: center;
}
.entry-form input[name="zip1"],
.entry-form input[name="zip2"] {
  width: 72px;
  max-width: 72px;
}
.entry-form input.f10 {
  width: 120px;
  max-width: 120px;
}
.entry-form input.f15,
.entry-form input[name="name1"],
.entry-form input[name="name2"],
.entry-form input[name="kana1"],
.entry-form input[name="kana2"],
.entry-form input[name="furi1"],
.entry-form input[name="furi2"] {
  width: 220px;
  max-width: 220px;
}
.entry-form input.f20,
.entry-form input[name="member_id"] {
  width: 250px;
  max-width: 250px;
}
.entry-form input.f25,
.entry-form input[name="password"],
.entry-form input[name="email1"],
.entry-form input[name="email2"] {
  width: 310px;
  max-width: 310px;
}
.entry-form input.f30 {
  width: 360px;
  max-width: 360px;
}
.entry-form input.f40,
.entry-form input[name="email"],
.entry-form input[name="iatena1"],
.entry-form input[name="iatena2"] {
  width: 520px;
  max-width: 100%;
}
.entry-form input.f60,
.entry-form input[name="org"],
.entry-form input[name="part"],
.entry-form input[name="add1"],
.entry-form input[name="add2"] {
  width: 620px;
  max-width: 100%;
}
.entry-form button.btn21 {
  min-height: 42px;
  margin: 4px 0 4px 8px;
  padding: 8px 18px;
  border: 1px solid #2b75e8;
  border-radius: 6px;
  background: #fff;
  color: #075bd6;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 3px 8px rgba(24, 78, 132, 0.12);
}
.entry-form button.btn21:hover {
  background: #f3f8ff;
  color: #075bd6;
}
/* 管理者マスタ設定 */
.master-settings-page {
  box-sizing: border-box;
  max-width: 1180px;
  margin: 24px auto 40px;
  padding: 28px;
  border: 1px solid #d8e8fb;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
  box-shadow: 0 6px 18px rgba(43, 87, 130, 0.1);
  color: #122b58;
}
.master-settings-page form {
  overflow-x: auto;
  padding: 2px 2px 10px;
}
.master-settings-page .btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 26px;
}
.master-settings-page .btn_area > div {
  width: min(100%, 260px);
  margin: 0;
}
.entry-form.master-settings-page .btn_area button.btn01,
.entry-form.master-settings-page .btn_area button.btn02 {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}
.entry-form.master-settings-page .btn_area button.btn01 {
  border: 1px solid #075bd6;
  background: #075bd6;
  color: #fff;
  box-shadow: 0 4px 10px rgba(7, 91, 214, 0.22);
}
.entry-form.master-settings-page .btn_area button.btn01::after,
.entry-form.master-settings-page .btn_area button.btn02::after {
  content: none;
}
.entry-form.master-settings-page .btn_area button.btn01:hover {
  border-color: #0049b8;
  background: #0049b8;
  color: #fff;
}
.entry-form.master-settings-page .btn_area button.btn02 {
  border: 2px solid #075bd6;
  background: #fff;
  color: #075bd6;
  box-shadow: none;
}
.entry-form.master-settings-page .btn_area button.btn02:hover {
  background: #f3f8ff;
  color: #075bd6;
}
.entry-form.master-settings-page button.btn11 {
  min-height: 38px;
  margin: 6px 0 0;
  padding: 7px 14px;
  border: 1px solid #2b75e8;
  border-radius: 6px;
  background: #fff;
  color: #075bd6;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(24, 78, 132, 0.12);
}
.entry-form.master-settings-page button.btn11:hover {
  border-color: #075bd6;
  background: #f3f8ff;
  color: #075bd6;
}
.master-settings-page .ttl01 {
  margin: 28px 0 12px;
  padding: 10px 14px;
  border-left: 5px solid #075bd6;
  border-radius: 0 4px 4px 0;
  background: #edf6ff;
  color: #073477;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.5;
}
.entry-form.master-settings-page table.table01 {
  margin-bottom: 24px;
}
.master-settings-page table.master-items-table {
  table-layout: fixed;
}
.master-settings-page .master-items-table .width040 {
  width: 44px;
}
.master-settings-page .master-items-table th:nth-child(2) {
  width: 136px;
}
.master-settings-page .master-items-table .master-items-display {
  width: 322px;
}
.master-settings-page .master-items-table .master-items-title {
  width: 150px;
}
.master-settings-page .master-items-table .width180 {
  width: 110px;
}
.master-settings-page .master-items-table .width090 {
  width: 76px;
}
.master-settings-page table.table02 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  table-layout: fixed;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid #c8daf8;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(17, 83, 150, 0.07);
}
.master-settings-page table.table02 th,
.master-settings-page table.table02 td {
  padding: 11px 10px;
  border: 0;
  border-right: 1px solid #d8e5f7;
  border-bottom: 1px solid #d8e5f7;
  vertical-align: middle;
}
.master-settings-page table.table02 th:last-child,
.master-settings-page table.table02 td:last-child {
  border-right: 0;
}
.master-settings-page table.table02 tr:last-child > th,
.master-settings-page table.table02 tr:last-child > td {
  border-bottom: 0;
}
.master-settings-page table.table02 th {
  background: #eaf4ff;
  color: #073477;
  font-weight: 700;
  text-align: center;
}
.master-settings-page table.table02 td {
  background: #fff;
  color: #122b58;
  line-height: 1.65;
}
.master-settings-page table.table02 tr.bg_gray01 td {
  background: #f4f7fb;
  color: #60718e;
}
.master-settings-page table.table02 tbody tr:hover td {
  background: #f8fbff;
}
.master-settings-page table.table02 input[type="text"],
.master-settings-page table.table02 select,
.master-settings-page table.table02 textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.master-settings-page table.table02 input.f03,
.master-settings-page table.table02 input.f04,
.master-settings-page table.table02 input.f10 {
  width: 100%;
  max-width: 120px;
}
.master-settings-page table.master-mail-table {
  table-layout: fixed;
}
.master-settings-page table.master-mail-table col.master-mail-col-label {
  width: 220px;
}
.master-settings-page table.master-mail-table col.master-mail-col-body {
  width: auto;
}
.master-settings-page table.master-mail-table th.width200 {
  width: 220px;
  min-width: 0;
}
.master-settings-page table.master-mail-table td {
  width: auto;
}
.master-settings-page table.master-mail-table textarea {
  min-height: 118px;
}
.master-settings-page table.table02 input.f15,
.master-settings-page table.table02 input.f20,
.master-settings-page table.table02 input.f25,
.master-settings-page table.table02 input.f30,
.master-settings-page table.table02 input.f40,
.master-settings-page table.table02 input.f60 {
  width: 100%;
  max-width: 100%;
}
.master-settings-page table.master-price-table--sanka {
  min-width: 0;
  table-layout: fixed;
}
.master-settings-page .master-price-table--sanka .width030 {
  width: 44px;
}
.master-settings-page .master-price-table--sanka .master-price-amount {
  width: 170px;
}
.master-settings-page .master-price-table--sanka .master-price-tax {
  width: 210px;
}
.master-settings-page .master-price-table--sanka .master-price-flag {
  width: calc((100% - 424px) / 3);
  white-space: normal;
}
.master-settings-page .master-price-table--sanka td {
  overflow-wrap: anywhere;
}
.master-settings-page .master-price-table--sanka .master-price-sub-row > td:last-child {
  border-right: 1px solid #d8e5f7;
}
.master-settings-page table.master-price-table--sanka th.master-price-tax,
.master-settings-page table.master-price-table--sanka th.master-price-tax:last-child {
  border-right: 1px solid #d8e5f7;
}
.master-settings-page .master-price-table--abst th.width130,
.master-settings-page .master-price-table--konshin th.width130 {
  width: 170px;
}
.master-settings-page .master-price-table--abst input.f10,
.master-settings-page .master-price-table--konshin input.f10 {
  max-width: 140px;
}
.master-settings-page .master-price-table--douhan .master-option-name,
.master-settings-page .master-price-table--bento .master-option-name,
.master-settings-page .master-price-table--kifu .master-option-name {
  width: 20%;
}
.master-settings-page .master-price-table--douhan .master-option-display,
.master-settings-page .master-price-table--bento .master-option-display,
.master-settings-page .master-price-table--kifu .master-option-display {
  width: 38%;
}
.master-complete-page {
  box-sizing: border-box;
  max-width: 880px;
  margin: 40px auto 54px;
  padding: 0 20px;
}
.master-complete-card {
  position: relative;
  padding: 42px 36px 38px;
  overflow: hidden;
  border: 1px solid #d8e8fb;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fbff 0, #fff 58%, #f9fcff 100%);
  box-shadow: 0 8px 22px rgba(43, 87, 130, 0.12);
  color: #122b58;
  text-align: center;
}
.master-complete-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #13b6c3 0%, #075bd6 100%);
}
.master-complete-card--error::before {
  background: linear-gradient(90deg, #ff6b78 0%, #d9364d 100%);
}
.master-complete-title {
  margin: 0 0 14px;
  color: #073477;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.35;
}
.master-complete-card--error .master-complete-title {
  color: #b9273d;
}
.master-complete-message {
  margin: 0;
  color: #244b80;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
}
.master-complete-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.master-complete-actions button.btn02 {
  min-width: 220px;
  min-height: 50px;
  margin: 0;
  border: 2px solid #075bd6;
  border-radius: 6px;
  background: #fff;
  color: #075bd6;
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(7, 91, 214, 0.1);
}
.master-complete-actions button.btn02:hover {
  background: #f3f8ff;
  color: #075bd6;
}
.password-complete-error .error-card {
  padding-top: 34px;
}
.password-complete-error__message {
  margin-bottom: 0 !important;
}
.password-complete-error__message p {
  margin: 0;
  color: #073477;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.8;
}
.password-complete-error__message .txt_red,
.password-complete-error__message .txt_red.fw-bolder {
  color: #073477 !important;
}
.password-complete-error__actions {
  margin-top: 28px;
}
.password-complete-error__actions button.btn02 {
  min-width: 280px;
  min-height: 52px;
  border: 2px solid #075bd6;
  border-radius: 6px;
  background: #fff;
  color: #075bd6;
  font-size: 1.5rem;
  box-shadow: 0 5px 12px rgba(7,91,214,0.1);
}
.password-complete-error__actions button.btn02:hover {
  background: #f1f8ff;
  color: #0049b8;
  box-shadow: 0 7px 15px rgba(7,91,214,0.16);
}@media screen and (max-width: 767.98px) {
  .entry-form {
    margin-bottom: 32px;
  }
  .entry-form-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 20px;
    font-size: 2.2rem;
  }
  .entry-form table.table01 th,
  .entry-form table.table01 td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }
  .entry-form table.table01 th {
    min-width: 0;
  }
  .entry-form .password-page__form table.table01 th {
    width: 100%;
    min-width: 0;
  }
  .entry-form table.table01 td {
    border-left: 0;
  }
  .entry-form .btn_area_entry {
    display: flex;
    flex-direction: column-reverse;
    max-width: 420px;
  }
  .entry-form .btn_area_entry > div {
    width: 100%;
  }
  .entry-form input.f15,
  .entry-form input.f20,
  .entry-form input.f25,
  .entry-form input.f30,
  .entry-form input.f40,
  .entry-form input.f60,
  .entry-form input[name="name1"],
  .entry-form input[name="name2"],
  .entry-form input[name="kana1"],
  .entry-form input[name="kana2"],
  .entry-form input[name="furi1"],
  .entry-form input[name="furi2"],
  .entry-form input[name="email"],
  .entry-form input[name="email1"],
  .entry-form input[name="email2"],
  .entry-form input[name="iatena1"],
  .entry-form input[name="iatena2"],
  .entry-form input[name="org"],
  .entry-form input[name="part"],
  .entry-form input[name="add1"],
  .entry-form input[name="add2"] {
    width: 100%;
    max-width: 100%;
  }
  .entry-form button.btn21 {
    display: block;
    width: 100%;
    max-width: 260px;
    margin-left: 0;
  }
  .master-settings-page {
    margin: 18px 0 32px;
    padding: 18px 14px;
  }
  .master-settings-page .btn_area {
    flex-direction: column;
  }
  .master-settings-page .btn_area > div {
    width: 100%;
    max-width: none;
  }
  .master-settings-page form {
    margin-right: -4px;
    margin-left: -4px;
  }
  .entry-form .seminar-select-table .seminar-session-head {
    white-space: normal;
  }
  .entry-form table.seminar-choice-table,
  .entry-form .seminar-choice-table tbody,
  .entry-form .seminar-choice-table tr,
  .entry-form .seminar-choice-table td {
    display: block;
    width: 100%;
  }
  .entry-form .seminar-choice-head td:not(.seminar-choice-none) {
    display: none;
  }
  .entry-form .seminar-choice-name,
  .entry-form .seminar-choice-detail,
  .entry-form .seminar-choice-capacity,
  .entry-form .seminar-choice-fee {
    border-bottom: 0;
  }
  .entry-form .seminar-choice-capacity::before {
    content: "定員：";
    color: #0736a5;
  }
  .entry-form .seminar-choice-fee::before {
    content: "金額：";
    color: #0736a5;
  }
  .entry-form .seminar-choice-row {
    border-top: 1px solid #d8e5f7;
  }
}

/* user complete page
-----------------------------------------------------*/
.user-complete-page {
	max-width: 1200px;
	margin: 0 auto;
}

.user-complete-message {
	max-width: 900px;
	margin: 28px auto 24px;
	padding: 28px 30px;
	border: 1px solid #c9def8;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(24, 78, 132, 0.10);
	color: #07306d;
	line-height: 1.85;
}

.user-complete-message > p:first-child {
	margin-top: 0;
	font-size: 1.6rem;
}

.user-complete-message .fw-bolder {
	font-size: 1.8rem;
	color: #0736a5;
}

.user-complete-actions {
	width: 100%;
	max-width: 840px;
	margin: 18px auto 24px;
}

.user-complete-actions button.btn01 {
	width: 100%;
	min-width: 220px;
}

.user-complete-page .waku_pink_l02 {
	max-width: 1000px;
	margin: 24px auto;
	padding: 18px 22px;
	border: 1px solid #f4bfd4;
	border-radius: 8px;
	background: #fff7fb;
	line-height: 1.8;
}

.user-complete-page .waku_pink_l02 .txt_red,
.user-complete-page .waku_pink_l02 .txt_red span {
	color: #d90043;
}

.user-complete-page .tbl_form01g {
	width: 100%;
	max-width: 1180px;
	margin: 26px auto 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #c9def8;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 24px rgba(24, 78, 132, 0.08);
	font-size: 1.4rem;
	line-height: 1.65;
}

.user-complete-page .tbl_form01g th,
.user-complete-page .tbl_form01g td {
	padding: 10px 12px;
	border-right: 1px solid #c9def8;
	border-bottom: 1px solid #c9def8;
	vertical-align: top;
	word-break: break-word;
}

.user-complete-page .tbl_form01g tr > *:last-child {
	border-right: none;
}

.user-complete-page .tbl_form01g tr:last-child > * {
	border-bottom: none;
}

.user-complete-page .tbl_form01g th {
	background: #eaf4ff;
	color: #003b8f;
	font-weight: 700;
	text-align: center;
}

.user-complete-page .tbl_form01g td {
	background: #fff;
	color: #082650;
}

.user-complete-page .tbl_form01g tr:nth-child(even) td {
	background: #f8fbff;
}

.user-complete-page .tbl_form01g .lh15 {
	line-height: 1.65;
}

@media print, screen and (max-width: 767.98px) {
	.user-complete-message {
		margin: 20px auto;
		padding: 22px 18px;
	}

	.user-complete-actions button.btn01 {
		width: 100%;
		min-width: 0;
	}

	.user-complete-page .tbl_form01g {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.user-complete-page .tbl_form01g th,
	.user-complete-page .tbl_form01g td {
		white-space: normal;
	}
}