@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* リスト要素をリセットする ---------------- */
dl,dt,dd,ol,ul,li	{
	list-style-position: outside;
	list-style-type: none;
}


/* ===================================================================

	スタイルの設定

=================================================================== */
html {
	font-size: var(--font-size--bs);
	height: 100%;
}
body{
	height: 100%;
	margin:0;
	padding-top: 65px;
/*	background: var(--main-bg-color) url(../img/main_bk.png) no-repeat center bottom;
	background-attachment: fixed;
	background-size: contain;*/
	background: var(--main-bg-color) url(../img/bk.png) no-repeat center bottom;
	background-attachment: fixed;
	background-size: auto 200px;
	color:var(--main-txt-color);
	line-height:1.5;
	font-family: var(--def-font-family);
	font-weight: 400;
}

img {
	max-width: 100%;
}


/* ===================================================================
	通常のリンク
=================================================================== */
a {
	text-decoration: underline;
	color: #3B7ABB;
}
a:link {
	
}
a:visited {
	color: #3B7ABB;
/*	text-decoration:none;*/
}
a:hover {
	color: #3B7ABB;
/*	text-decoration:none;*/
}
a:active {
	color: #3B7ABB;
/*	text-decoration:none;*/
}
/* メインエリアはリンクにアンダーライン */
/*#main a{
	text-decoration:underline;
}*/

/* ===================================================================
	#header
	ヘッダー
=================================================================== */
header {
	
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
}
header a {
	color: var(--bs-primary);
	text-decoration: none;
}
.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 10px  auto 0;
	padding: 8px 20px;
	background: rgba(var(--bs-white-rgb),0.85);
	border-radius: 30px;
	filter: var(--bs-filter);
}
.logo {
	text-align: center;
	font-weight: 700;
}
.logo a {
	color: var(--bs-primary);
}

.header_sub {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header_point {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
	font-size: 18px;
}
.header_point_txt {
}
.header_point_num {
	font-weight: 700;
}
.header_point_num span {
	font-size: 75%;
}

.header_sub_menu {
	display: flex;
	margin: 0;
	padding: 0;
}
.header_sub_menu li {
	margin: 0 0 0 0.5em;
}
.header_sub_menu a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--bs-primary);
}
.header_sub_menu_icon {
	font-size: 20px;
}
.header_sub_menu_txt {
	font-size: 10px;
	color: var(--bs-primary);
	margin: 0;
	padding: 0;
}
.header_sp_btn {
	position: relative;
	padding: 0;
	font-size: var(--font-size--sm);
	font-weight: 700;
}
.sp_menu_line {
	display: block;
	width: 26px;
	height: 26px;
	margin: 0 auto;
	position: relative;
}
.sp_menu_line span,
.sp_menu_line::before,
.sp_menu_line::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	background-color: var(--bs-primary);
	width: 26px;
	height: 2px;
	border-radius: 2px;
	transition: 0.3s;
}
.sp_menu_line span {
	top: calc(50% - 1px);
}
.sp_menu_line::before {
	top: calc(50% - 9px);
}
.sp_menu_line::after {
	top: calc(50% + 7px);
}
.header_sp_btn.open .sp_menu_line span {
	opacity: 0;
}
.header_sp_btn.open .sp_menu_line::before {
	transform: translateY(8px) rotate(-45deg);
}
.header_sp_btn.open .sp_menu_line::after {
	transform: translateY(-8px) rotate(45deg);
}

/* タブレット */
@media ( max-width : 960px ){
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}

/* ===================================================================
	#footer
	フッター
=================================================================== */


address {
	padding: 10px;
	font-style: normal;
	text-align: center;
}


.footer_menu {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(var(--bs-white-rgb),0.85);
}
.footer_nav {
	display: flex;
	margin: 0;
	padding: 0;
	border-top: 2px solid var(--bs-primary);
}
.footer_nav li {
	width: calc((100% - 80px ) / 4 );
	flex-shrink: 1;
	flex-grow: 1;
}
.footer_nav li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5em 0;
	text-decoration: none;
	color: var(--bs-primary);
}
.footer_menu_icon {
	font-size: var(--font-size--lg);
}
.footer_menu_txt {
	font-size: var(--font-size--sm);
	font-weight: 500;
}

.footer_nav li.footer_nav_card {
	width: 80px;
	flex-shrink: 0;
	flex-grow: 0;
}
.footer_nav li.footer_nav_card a {
	justify-content: center;
	width: 80px;
	height: 80px;
	background: var(--bs-primary);
	color: var(--bs-white);
	border-radius: 50%;
	margin-top: -30px;
}



/* ===================================================================
	共通CSS
=================================================================== */
h1, h2, h3, h4 {
	letter-spacing: 0.05em;
}
main {
	padding: 20px 0 60px;
}
.mainarea {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto;
	position: relative;
}




/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}




/*	タイトル
----------------------------------------------------------------- */
.page_title {
	margin: 0 0 20px;
	color: var(--bs-primary);
	font-size: var(--font-size--lg);
	font-weight: 700;
	text-align: center;
}

.intro_txt {
	margin: 1em 0;
}

.titlel_h2 {
	margin: 20px 0 10px;
	font-size: var(--font-size--bs);
	font-weight: 700;
}

/*	ぱんくず
----------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.9rem;
}
#breadcrumb ul li {
	display: inline-block;
}
#breadcrumb ul li:after {
	content: ">";
	margin: 0 0.5em;
}
#breadcrumb ul li:last-child:after {
	display: none;
}

/*	共通設定
----------------------------------------------------------------- */
.btn_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.btn_area > div {
	width: 48%;
	margin: 0.5em 1%;
}

/* ボタン */
.btn,
a.btn,
button.btn  {
	display: inline-block;
	width: 48%;
	width: 100%;
	height: 2.8em;
	margin: 0.5em 1%;
	padding: 0 1em;
	background: var(--bs-primary);
	color: var(--bs-white);
	font-size: var(--font-size--bs);
	font-weight: 700;
	font-family: var(--def-font-family);
	line-height: 2.8em;
	text-decoration: none;
	text-align: center;
	border: none;
	border-radius: 1.4em;
	cursor: pointer;
	transition: all .3s;
}
a.btn,
button.btn {
    width: 48%;
    margin: 0.5em 1%;
}
.btn_area > div .btn {
	width: 100%;
	margin: 0;
}
.btn i {
	margin-right: 0.5em;
}

.btn_primary,
a.btn_primary,
button.btn_primary {
	background: var(--bs-primary);
	color: var(--bs-white);
}
.btn_primary_outline,
a.btn_primary_outline,
button.btn_primary_outline {
	border: 1px solid var(--bs-primary);
	background: var(--bs-white);
	color: var(--bs-primary);
}
a.btn_outline_back,
button.btn_outline_back {
	background: #fff;
	border: 1px solid var(--main-txt-color);
	color: var(--main-txt-color);
}
.btn_full {
	width: 100%!important;
	margin: 0.5em 0!important;
}

.btn_login {
	background: var(--bs-white)!important;
	color: var(--bs-primary)!important;
}
.btn_login:hover {
	background: var(--bs-primary-light-02)!important;
}
a.btn_login_entry,
.btn_login_entry  {
	border: 1px solid var(--bs-white);
	color: var(--bs-white);
	background: none;
}
a.btn_login_entry:hover,
.btn_login_entry:hover  {
	background: rgba(var(--bs-white-rgb),0.3);
}

a.btn_login_google,
.btn_login_google {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bs-white);
	color: var(--main-txt-color);
	border: 1px solid var(--bs-gray);
}
a.btn_login_google:hover,
.btn_login_google:hover  {
	background: var(--bs-primary-light-02)!important;
}
.gsi-material-button-icon {
	height: 20px;
	margin-right: 12px;
	min-width: 20px;
	width: 20px;
}
a.btn_login_line,
.btn_login_line {
	background: #06c755;
}
a.btn_login_line:hover,
.btn_login_line:hover {
	background: #56D78A;
}

.btn_mini,
a.btn_mini,
button.btn_mini {
	width: auto;
	font-size: var(--font-size--sm);
}

.btn_cancel,
a.btn_cancel,
button.btn_cancel {
	background: var(--bs-white);
	border: 1px solid var(--bs-gray-dark);
	color: var(--bs-gray-dark);
}

.btn_danger,
a.btn_danger,
button.btn_danger {
	background: var(--bs-danger);
	color: var(--bs-white);
}


.btn:disabled,
a.btn:disabled,
button.btn:disabled  {
	border: 1px solid var(--bs-gray);
	background: var(--bs-gray-light);
	color: var(--bs-gray);
	cursor: not-allowed;
}



/* フォーム -------------------- */
.form_field {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 20px;
	background: rgba(var(--bs-white-rgb),0.6);
}


.fields {
	margin: 1.25rem 0;
}
.fields_row {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	margin: 1.25rem 0;
}
.fields_row .fields {
/*	width: 100%;
	max-width: 100%;*/
	flex-shrink: 1;
	flex-grow: 1;
	margin: 0;
}


.field_label {
	margin-bottom: 0.5em;
	font-weight: 700;
	position: relative;
}
.field {
	flex-shrink: 1;
	flex-grow: 1;
}

.fields_inline {
	display: block;
	margin: 1rem 0;
}
.fields_inline .field_label {
	width: auto;
	margin-right: 0;
	margin-bottom: .5rem;
}
.icon_hissu,
.icon_nini {
	display: inline-block;
	margin-left: 0.5em;
	padding: .1em .8em;
	border-radius: 1em;
	color: var(--bs-white);
	text-align: center;
	font-size: var(--font-size--sm);
}
.icon_hissu {
	background: var(--bs-danger);
}
.icon_nini {
	background: var(--bs-gray);	
}


input,button,textarea,select {
	outline: none;
	font-size:var(--font-size--bs);
	font-family: var(--def-font-family);
	font-weight: 400;
}

.form_control {
	display: block;
	width: 100%;
	padding: 0.5em 0.5em;
	font-weight: 400;
	line-height: 1.5;
	color: var(--main-txt-color);
	background-color: var(--bs-white);
	background-clip: padding-box;
	border: 1px solid var(--bs-gray);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25em;
}
.required .form_control {
	border: 1px solid var(--bs-danger-light);
}
.form_control:focus {
	border: 1px solid rgba(var(--bs-primary-rgb),0.5);
	box-shadow:0px 0px 5px rgba(var(--bs-primary-rgb),0.4);
}
textarea.form_control {
	height: 10em;
}
.form_control_inline {
	display: inline-block;
}

.form_select {
	display: block;
	width: 100%;
	padding: 0.75em 2em 0.75em 0.75em;
	line-height: 1.5;
	background-color: var(--bs-white);
	background-image: url(../img/arrow_select.svg);
	background-repeat: no-repeat;
	background-position: right 0.5em center;
	background-size: auto .5em;
	border: 1px solid var(--bs-gray-light);
	border-radius: 0.25em;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.required .form_select {
	border: 1px solid var(--bs-danger-light);
}
.form_select:focus {
	border: 1px solid rgba(var(--bs-primary-rgb),0.5);
	box-shadow:0px 0px 5px rgba(var(--bs-primary-rgb),0.4);
}

.input_inline {
	display: flex;
	align-items: center;
}
.form_num {
	width: 5em;
}

/* checkbox チェックボックス */
.checkbox {
	margin: .2em 0;
	line-height: 1.5;
}
.checkbox label {
/*	background: #eee;*/
	cursor: pointer;
	line-height: 1.5;
}
input[type="checkbox"] {
	position: relative;
/*	width: 1.2em;
	height: 1.2em;
	border:none;*/
	margin: -0.3em 1em 0 0;
	line-height: 1.5;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
	content: "";
	display: block; 
	position: absolute;
}
input[type="checkbox"]::before {
	background-color: var(--bs-white);
	border-radius: 5px;
	border: 1px solid var(--bs-gray-light);
	width: 1.2em;
	height: 1.2em;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}
input[type="checkbox"]::after {
	border-bottom: 3px solid var(--bs-white);
	border-left: 3px solid var(--bs-white);
	opacity: 0;
	height: .4em;
	width: .8em;
	transform: rotate(-45deg);
	top: -0.05em;
	left: .2em;
}
input[type="checkbox"]:checked::before {
	background: var(--bs-primary);
}
input[type="checkbox"]:checked::after {
	opacity: 1;
}


/* radio ラジオボタン */
.radio-group label {
	cursor: pointer;
	line-height: 1.5;
	margin-right: 1em;
}
input[type="radio"] {
	position: relative;
	margin: -0.3em 1em 0 0;
	line-height: 1.5;
}
input[type="radio"]::before,
input[type="radio"]::after {
	content: "";
	display: block; 
	position: absolute;
}
input[type="radio"]::before {
	background-color: var(--bs-white);
	border-radius: 0.6em;
	border: 1px solid var(--bs-gray-light);
	width: 1.2em;
	height: 1.2em;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}
input[type="radio"]::after {
	background-color: var(--bs-primary);
	border-radius: 0.4em;
	width: 0.8em;
	height: 0.8em;
	top: calc(50% - 0.4em);
	left: 0.2em;
	opacity: 0;
}
input[type="radio"]:checked::after {
	opacity: 1;
}


/* エラー */
.form_control.error {
	background: rgba(var(--bs-danger-rgb),0.1);
}
label.error {
	display: block;
	margin-top: 0.5em;
	padding: 0.2em;
	color: var(--bs-danger);
	background: rgba(var(--bs-danger-rgb),0.2);
}



/* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
:placeholder-shown,
::-webkit-input-placeholder {
	color: #949DA6;
}
:-moz-placeholder ,
::-moz-placeholder {
	color: #949DA6; opacity: 1;
}
:-ms-input-placeholder {
	color: #949DA6; }
::-ms-input-placeholder {
	color: #949DA6;
}
::placeholder{
	color:#949DA6;
}


select {
	display: block;
	width: 100%;
/*	height: calc(2.0625rem + 2px);*/
	height: 2.8em;
	padding: 0 0.2em;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #c5cece;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}

textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #CAD3DA;
	padding: 0.5em;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}

/*
.select_box {
	width: auto;
	display: inline-block;
	background: #ffffff;
	position: relative;
}
.select_box select {
	width: 100%;
	height: 2.4em;
	padding: 0 30px 0 0.6em;
	border: 1px solid #CAD3DA;
	background: transparent;
	position: relative;
	z-index: 1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select_box select::-ms-expand {
	display: none;
}
.select_box::before{
	content: '\f107';
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	background: #fff;
	border: 1px solid #CAD3DA;
	border-left: none;
	height: 100%;
	line-height: 2.2em;
	width: 2em;
	text-align: center;
	font-family: 'Font Awesome 5 Free';
	color: #949DA6;
	font-weight: 900;
	font-size: 1rem;
}*/


/* フォームグループ */
.input_group {
	display: flex;
}
.input_group input[type="text"] {
	width: auto;
	min-width: 0;
	flex: 1 1 30%;
}
.input_group_append {
	flex-shrink: 0;
	flex-grow: 0;
}
.input_group_append button {
	display: inline-block;
	height: 2.8em;
	margin: 0;
	padding: 0 1em;
	background: #19A78E;
	color: #fff;
	font-weight: 600;
	line-height: 2.8em;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}



table {
	width:100%;
	margin:0;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	clear:both;
}
table th {
	font-weight: 700;
}
.tbl_form {
	margin: 0 0 20px;
}
.tbl_form th,
.tbl_form td {
	padding: 10px;
	border-bottom: 1px solid #EAEDED;
	text-align: left;
	vertical-align: middle;
}
.tbl_form th {
	width: 15em;
}


.form_help {
	margin: 0.25em 0 0;
	color: var(--bs-gray-dark);
	font-size: var(--font-size--sm);
}

/* 規約エリア */
.terms_area {
	height: 10em;
	padding: 1em;
	overflow-y: scroll;
	background: var(--bs-white-transparent);
	font-size: var(--font-size--sm);
	border: 1px solid var(--bs-gray-light);
}
.agree {
	margin: 10px 0 20px;
	text-align: center;
}

/* エラーメッセージ系
===================================================== */

/* 大元になるもの ------------------- */
#flashMessage {
	font-size:120%;
	font-weight:bold;
	padding:5px 0 5px 35px;
	margin:10px 0;
}
/* 追加（緑） ------------------- */
.add-message {
	color:#009933;
	border: 1px dashed #009933;
	margin:0 0 20px 0;
	padding:5px 5px 5px 32px;
	font-size:120%;
}
/* 編集（青） ------------------- */
.update-message {
	color:#0099FF;
	border: 1px dashed #0099FF;
	margin:0 0 20px 0;
	padding:5px 5px 5px 32px;
	font-size:120%;
}
/* 削除（赤） ------------------- */
.delete-message {
	color:#FF0000;
	border: 1px dashed #FF0000;
	margin:10px 0 10px 0;
	padding:5px 5px 5px 32px;
	font-size:120%;
}
.error-message {
	color:#FF0000;
	border: 1px dashed #FF0000;
	margin:10px 0 10px 0;
	padding:5px 5px 5px 32px;
	font-size:120%;
}

/* 成功（緑） ------------------- */

.message {
	padding: 0.5em ;
	margin:10px 0;
	color:#009933;
	border: 1px dashed #009933;
	background: var(--bs-white-transparent);
	font-weight: 600;
}
/* エラー（赤） ------------------- */
.message.error {
	color: var(--bs-danger);
	border: 1px dashed var(--bs-danger);
}
main .message {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 10px auto;
}

/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	input[type="text"].form_tel,
	input[type="text"].form_school,
	input[type="text"].form_mail {
		width: 100%;
	}

}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}



/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {

}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}






/* ===================================================================
	ログイン login
=================================================================== */
.login {
	height: 100%;
	padding: 10px 0 10px;
	background: url(../img/login_bk.png) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	color: var(--bs-white);
	position: relative;
	z-index: 0;
}
.login::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(var(--bs-primary-rgb),0.3);
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	mix-blend-mode: multiply;
}

.login_title {
	margin: 0;
	font-size: var(--font-size--xl);
	font-weight: 900;
	text-align: center;
}

.login_area {
	max-width: 310px;
	margin: 0 auto;
}

.login_pass_forget {
	text-align: center;
}
.login_pass_forget a {
	color: var(--bs-white);
}
.login_entry_title {
	margin: 0 0 1rem;
	font-size: var(--font-size--md);
	font-weight: 900;
	text-align: center;
}
.login_hr {
	height: 0;
	margin: 1.5rem 0;
	padding: 0;
	border: 0;
	border-top: 1px solid var(--bs-white);
	
}



.thanks_title {
	margin: 0 0 2rem;
    font-size: var(--font-size--lg);
    font-weight: 900;
    text-align: center;
}
.thanks_sub_title {
	margin: 0 0 1rem;
	font-size: var(--font-size--md);
	font-weight: 900;
}

.attention strong {
	font-weight: 900;
}

/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}






/* ===================================================================
	ダッシュボード dashbord
=================================================================== */
.dashbord h2 {
	margin: 0 0 10px;
	font-size: var(--font-size--bs);
	font-weight: 700;
	color: var(--bs-primary);
}
.dashbord_menu_area {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 2rem auto 0;
}
.dashbord_menu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}
.dashbord_menu li {
	width: calc(50% - 5px);
/*	flex-shrink: 1;
	flex-grow: 1;*/
	margin: 0;
	
}
.dashbord_menu li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1em 0;
	border-radius: 1rem;
	text-decoration: none;
	color: var(--bs-primary);
	background: var(--bs-white-transparent);
}
.dashbord_menu_icon {
	font-size: var(--font-size--xl);
}
.dashbord_menu_txt {
	font-weight: 700;
}
.dashbord_menu li.dashbord_menu_cancellation {
	width: 100%;
}
.dashbord_menu li.dashbord_menu_cancellation a {
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 0.5em 0;
	color: var(--bs-danger);
	font-size: var(--font-size--bs);
}
.dashbord_menu li.dashbord_menu_cancellation a .dashbord_menu_icon {
	font-size: var(--font-size--bs);
	margin-right: 0.3em;
}
.dashbord_menu li.dashbord_menu_cancellation a .dashbord_menu_txt {
	font-weight: 700;
}

/* QRコードのみ表示 */
.my_qrcode {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 10px auto 0;
	padding: 20px;
	background: var(--bs-white-transparent);
	border-radius: 1rem;
	text-align: center;
}
.my_qrcode span {
	display: block;
	margin: 0 auto;
	width: 200px;
	height: 200px;
	background: #ccc;
}


/* 次回予約 */
.next_reservation {

}
.next_reservation_inner {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 10px auto 0;
	padding: 20px;
	background: var(--bs-white-transparent);
	border-radius: 1rem;
}
.next_reservation_none {
	font-weight: 700;
	text-align: center;
	color: var(--bs-danger);
}

.btn_detail {
	margin: 0;
	text-align: right;
}
.btn_detail .btn {
	margin: 0;
}

.reservation_item {
	display: flex;
	margin: 0.2rem 0;
}
.reservation_item dt {
	width: 1.5em;
	color: var(--bs-primary);
}
.reservation_item dd {
	margin: 0;
	padding: 0;
}

.reservation_price {
	font-weight: 600;
}
.reservation_price .price {
	margin-left: 0.5rem;
	font-size: 140%;
}




/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}



/* ===================================================================
	会員証 qr
=================================================================== */


.membership_card {
/*	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;*/
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 10px auto 0;
	padding: 20px;
	background: var(--bs-white) url(../img/card_bk.png) no-repeat left bottom;
	background-size: 100% auto;
	border-radius: 1rem;
	filter: var(--bs-filter);
	border: 1px solid var(--bs-primary);
}
.membership_card h2 {
	width: 100%;
	margin: 0 0 10px;
	font-size: var(--font-size--md);
	text-align: center;
}
.membership_card_qr {
/*	width: 40%;*/
	width: fit-content;
	margin: 0 auto;
	padding: 10px;
	background: var(--bs-white);
	text-align: center;
}
.membership_card_qr img {
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}

.membership_info dl {
	margin: 0;
	padding: 0.3em 0;
}
.membership_info dt {
	flex-shrink: 0;
	flex-grow: 0;
	font-weight: 700;
	margin:0 0 0.2em;
	font-size: var(--font-size--sm);
}
.membership_info dd {
	margin: 0;
	padding: 0;
	font-size: var(--font-size--sm);
}
.membership_info dd.membership_card_name {
	font-size: var(--font-size--md);
	font-weight: 700;
}


/* ===================================================================
	予約 reserve
=================================================================== */
.flow_nav {
	display: flex;
	overflow: hidden;
	margin: 0 0 20px;
	padding: 0;
}
.flow_nav > li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 1;
	flex-grow: 1;
	padding: 8px 5px 8px 10px;
	font-size: var(--font-size--sm);
	background: var(--bs-white);
	position: relative;
	z-index: -2;
}
.flow_nav > li:first-of-type {
	border-radius: 5px 0 0 5px;
	z-index: 20;
}
.flow_nav > li:last-of-type {
	border-radius: 0 5px 5px 0;
	z-index: 5;
}
.flow_nav > li:nth-of-type(2){
	z-index: 15;
}
.flow_nav > li:nth-of-type(3){
	z-index: 10;
}
.flow_nav > li:after, .flow_nav > li:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 17px 0 17px 10px;
	box-sizing: border-box;
	z-index: 10;
}
.flow_nav>li:before {
	right: -11px;
	border-color: transparent transparent transparent var(--bs-primary);
}
.flow_nav > li:after {
	right: -10px;
	border-color: transparent transparent transparent var(--bs-white);
}
.flow_nav > li.active {
	background: var(--bs-primary);
	color: var(--bs-white);
}
.flow_nav>li.active::before {
	border-color: transparent transparent transparent var(--bs-white);
}
.flow_nav > li.active::after {
	border-color: transparent transparent transparent var(--bs-primary);
}
.flow_nav > li:last-of-type::after,
.flow_nav > li:last-of-type::before {
	display: none;
}

.card_selected {
	margin: 0 0 10px;
	padding: 15px;
	background: var(--bs-white-transparent);
	border-radius: 1rem;
}
.card_selected h2 {
	margin: 0 0 5px;
	font-size: var(--font-size--bs);
	color: var(--bs-primary);
	font-weight: 700;
}

.explanation_batting_area {
	display: flex;
	justify-content: flex-end;
	gap: 0.5em;
}
.explanation_batting_area > div {
	display: flex;
	align-items: center;
	font-size: var(--font-size--sm);
}
.right_handed,
.left_handed,
.dual_use,
.reserved {
	padding: 8px 5px;
	border-radius: 0.5em;
	background: var(--bs-white);
	font-weight: 700;
	text-align: center;
}
.right_handed {
	border: 2px solid var(--bs-primary);
	color: var(--bs-primary);
}
.left_handed {
	border: 2px solid #280680;
	color: #280680;
}
.dual_use {
	border: 2px solid var(--bs-secondary);
	color: var(--bs-secondary);
}
.reserved {
	border: 2px solid var(--bs-gray-light);
	background: var(--bs-gray-light);
	color: var(--bs-gray-dark);
}


.explanation_batting_area .right_handed,
.explanation_batting_area .left_handed,
.explanation_batting_area .dual_use {
	display: inline-block;
	width: 2em;
	height: 1.5em;
	margin-right: 5px;
	padding: 0 5px;
	font-size: var(--font-size--sm);
}

.daseki_selected {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 20px 0;
}

.first_floor,
.second_floor {
	min-width: 80px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.shibafu {
	max-width: 340px;
}

.daseki_selected input {
	display: none;
	
}
.daseki_selected label {
	display: block;
	cursor: pointer;
}
.daseki_selected input:checked + label {
	color: var(--bs-white);
}
.daseki_selected input:checked + label.right_handed {
	background: var(--bs-primary);
}
.daseki_selected input:checked + label.left_handed {
	background: #280680;
}
.daseki_selected input:checked + label.dual_use {
	background: var(--bs-secondary);
}

.first_floor > div,
.second_floor > div {
	position: relative;
}
.bunseki_icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	background: var(--main-txt-color);
	color: var(--bs-white);
	font-size: var(--font-size--sm);
/*	color: var(--main-txt-color);
	font-size: var(--font-size--lg);*/
}
.first_floor > div .bunseki_icon ,
.second_floor > div .bunseki_icon  {
	position: absolute;
	top: -0.5em;
	right: -0.5em;
}

/* 打席選択のチェック */
.select_daseki_type {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.25em 1em;
	margin-bottom: 10px;
}

.btn_reload {
	position: relative;
	padding-left: 2.5em;
	/*
	display: inline-block;
	width: 48%;
	width: 100%;
	height: 2.8em;
	margin: 0.5em 1%;
	padding: 0 1em;
	
	font-size: var(--font-size--bs);
	font-weight: 700;
	font-family: var(--def-font-family);
	line-height: 2.8em;
	text-decoration: none;
	text-align: center;
	border: none;
	border-radius: 1.4em;
	cursor: pointer;
	transition: all .3s;

	width: auto;
    font-size: var(--font-size--sm);
	*/
	margin: 0;
	background: none;
	z-index: 20;
	
}
div.submit:has(.btn_reload) {
	position: relative;
	background: var(--bs-primary);
	color: var(--bs-white);
	border-radius: 1.4em;
}
div.submit:has(.btn_reload)::after {
	position: absolute;
	top: 0;
	left: 1em;
	height: 2.8em;
	line-height: 2.8em;
	display: inline;
	content: '\f2f9';
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	font-size: var(--font-size--sm);
	color: var(--bs-white);
	z-index: 10;
}


.select_day_nav {
	display: flex;
	justify-content: space-between;
}
.select_day_nav a {
	text-decoration: none;
	font-weight: 600;
}
.select_day_nav span {
	color: var(--bs-gray-dark);
	font-weight: 600;
}
.select_day_prev a i,
.select_day_prev span i {
	margin-right: 0.2em;
} 
.select_day_next a i,
.select_day_next span i {
	margin-left: 0.2em;
} 

.select_day {
	margin: 0.8rem 0 1rem;
	background: var(--bs-white-transparent);
	background: var(--bs-white);
}
.select_day th,
.select_day td {
	padding: 0.5em 0.2em;
	text-align: center;
	border: 1px solid var(--bs-gray-light);
}
.select_day th {
	font-size: var(--font-size--sm);
}
.select_day th.sat {
	color: var(--bs-sat);
	background: var(--bs-sat-light);
}
.select_day th.sun {
	color: var(--bs-sun);
	background: var(--bs-sun-light);
}
.select_day td {
	font-size: var(--font-size--md);
	font-weight: 700;
}
.select_day td a {
	display: block;
	text-decoration: none;
	color: #d9000c;
	font-weight: 700;
}

.active_cell {
	background: var(--bs-primary-light);
	background: var(--bs-secondary);
	
}
.select_day td.active_cell a {
	color: var(--bs-white) ;
}

.close_cell {
	background: var(--bs-light);
}
.icon_close {
	color: var(--bs-gray-dark);
}

.reservation {
	margin: 10px auto 0;
	padding: 15px;
	background: var(--bs-white-transparent);
	border-radius: 0.5rem;
	border:1px solid var(--bs-gray-light);
}
.past_reservation {
	
}
.reservation p {
	margin: 0;
}
.reservation_day {
	font-size: var(--font-size--md);
	font-weight: 700;
	color: var(--bs-primary);
}

.past_reservation p {
	color: var(--bs-gray-dark);
}



.reservation_btn {
	margin-top: 5px;
	display: flex;
	justify-content: flex-end;
}
.reservation_btn .btn {
	margin: 0 1%;
}


.reserv_end_txt {
	margin: 40px auto 20px;
}


.btn_float {
	position: fixed;
	right: 10px;
	bottom: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.btn_float button,
.btn_float a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: none;
	filter: var(--bs-filter);
	font-weight: 700;
	font-size: var(--font-size--bs);
	background: var(--bs-white);
	cursor: pointer;
}
.btn_float button:disabled {
	background: var(--bs-gray-light);
	cursor: not-allowed;
}
.btn_float button.btn_float_primary,
.btn_float a.btn_float_primary {
	border: 2px solid var(--bs-primary);
	color: var(--bs-primary);
}
.btn_float button.btn_float_back,
.btn_float a.btn_float_back {
	border: 2px solid var(--main-txt-color);
	color: var(--main-txt-color);
}
.btn_float_icon {
	margin-bottom: 5px;
	font-size: var(--font-size--lg);
}

.sp_nav {
	display: none;
/*		opacity: 0;*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 120px 0 32px;
	background: var(--bs-primary-light);
	z-index: 200;
	overflow-y: auto;
	transition: all .6s;
}
.sp_nav.open {
	display: block;
}

.sp_menulist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto;
	padding: 0;
}
.sp_menulist li {
	width: calc(50% - 5px);
}
.sp_menulist li a {
	display: block;
	padding: 1em;
	background: var(--bs-white);
	border-radius: 1rem;
	text-decoration: none;
	color: var(--bs-primary);
	filter: var(--bs-filter);
	font-size: var(--font-size--md);
}
.sp_menulist_icon {
	margin-right: 0.5em;
}
.sp_menulist_txt {
	font-weight: 700;
	color: var(--main-txt-color);
}


.attention_area {
	margin: 20px 0;
	padding: 1em;
	background: var(--bs-white);
	border-radius: 0.5em;
	border: 1px solid var(--bs-danger);
}
.attention {
	margin: 0 0 0.5em ;
	color: var(--bs-danger);
	font-weight: 600;
	text-indent: -1em;
	padding-left: 1em;
}
.attention:last-of-type {
	margin-bottom: 0;
}



.page_area {
	padding: 1rem;
	background: var(--bs-white-transparent);
	border-radius: 0.5rem;
}

.page_area h2 {
	margin: 20px 0 10px;
	font-size: var(--font-size--bs);
	font-weight: 700;
}
.page_area ol,
.page_area ol li {
	list-style-type:decimal;
}
.page_area ol li::marker {
	color: var(--bs-primary);
	font-weight: 700;
}



/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.sp_menulist li {
		width: 100%;
	}
}



.page_setting {
	margin-bottom: 10px;
	padding: 1rem;
	background: var(--bs-white-transparent);
	border-radius: 0.5rem;
}
.page_setting_inner {
	width: fit-content;
	margin: 0 auto;
}
.page_setting .fields {
	display: flex;
/*	margin: 0;*/
/*	padding: 0.8em 0;
	border-bottom: 1px dotted var(--bs-gray);*/
}
.page_setting .fields:first-of-type {
/*	border-top: 1px dotted var(--bs-gray);*/
}
.page_setting .field_label {
	width: 9em;
	margin-right: 1em;
	flex-shrink: 0;
	flex-grow: 0;
}

@media (max-width: 768px) {
	.page_setting .fields {
		display: block;
	}
	.page_setting .field_label {
		width: auto;
		margin-right:0;
	}
}








/* ポイントチャージ */
.point_charge_intro {
	margin-bottom: 1rem;
	text-align: center;
}
.point_select {
	display: flex;
	gap: 14px;
	margin: 0 0 30px;
}

.point_select input[type="radio"].form_radio {
	display: none;
}
.point_select input[type="radio"].form_radio + label {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 0.2em;
	background: var(--bs-white);
	border: 1px solid var(--bs-primary);
	color: var(--bs-primary);
	font-weight: 700;
	border-radius: 0.5em;
	cursor: pointer;
}
.point_select input[type="radio"].form_radio + label {
	flex: 1;
	padding: 1.15em 0.2em;
}
.point_select input[type="radio"].form_radio:checked + label {
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	color: var(--bs-white);
}
.point_select input[type="radio"].form_radio:disabled + label {
	background: var(--bs-gray);
	border-color: var(--bs-gray);
	color: #808080;
}

.point_charge_confirm {
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: var(--font-size--xl);
	color: var(--bs-secondary);
	text-align: center;
	
}



.point_charge_details {
	margin: 0 0 20px;
	padding: 20px;
	background: var(--bs-white-transparent);
	border-radius: 1rem;
}
.point_charge_details .point_items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 5px 0;
}
.point_charge_details .point_items dd {
	text-align: right;
}

.point_charge_details .point_select dd {
	font-weight: 700;
	color: var(--bs-secondary);
	font-size: 110%;
}

.point_charge_details .point_total {
	margin-top: 15px;
	padding-top: 10px;
	font-weight: 700;
	font-size: 125%;
	border-top: 1px solid var(--bs-gray);
	color:var(--bs-primary);
}
.point_charge_details .point_total dd {
	
}


.point_charge_history {
	margin: 0 0 20px;
	padding: 20px;
	background: var(--bs-white-transparent);
	border-radius: 1rem;
}
.history_title {
	margin: 1rem 0 0.5rem;
	font-size: 90%;
	font-weight: 600;
	color: var(--bs-primary);
	color: var(--bs-gray-dark);
}

.point_charge_history_list {
	margin: 0;
	padding: 0;
	background: var(--bs-white-transparent);
	border-radius: 0.5em;
}
.point_charge_history_list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em 0.75em;
	border-bottom: 1px solid var(--bs-gray-light);
}
.point_charge_history_list li:last-of-type {
	border-bottom: none;
}

.charge_date {

}
.charge_point {
	font-weight: 700;
}