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

	--bs-primary: #19A78E;
	/*
	
	--main-txt-color :#333;
	--bs-white:#ffffff;
	--bs-gray: #f0f3f5;
	--bs-gray-dark: #000;

	--bs-dark: #333;

	
	
	--bs-primary-rgb: 255, 0, 61;
	
	--bs-secondary: #010087;
	--bs-secondary-light: #e0e0f1;
	--bs-secondary-dark: #00286f;
		
	--def-width: 90%;
	--def-max-width: 1400px;
	--max-width: 1000px;
*/

	--box-shadow: 0 1px 5px rgba(113, 125, 123,0.15);
}

/* リスト要素をリセットする ---------------- */
dl,dt,dd,ol,ul,li	{
	list-style-position: outside;
	list-style-type: none;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}



/* floatの解除 ------------- */
.fbox{
	clear:both;
	_display: inline-block;
	min-height: 1%;
}
.fbox:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
	line-height: 0;
}



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

	スタイルの設定

=================================================================== */
html {
	font-size:14px;
}
body{
	color:#333333;
	line-height:1.5;
	margin:0;
	background: var(--main-bg-color);
/*	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;*/
	font-weight: 400;
	/* 100;300;400;500;700;900; */
}
#contents {
	box-sizing: border-box;
}
#contents * {
	box-sizing: border-box;
}
img {
	max-width: 100%;
}



/* ---------------- 上書き ------------- */
strong {font-weight:bold;}
p,li,dl,dt,dd {line-height:1.5;}
.red{	color:#F40027;}
.red2{	color:#DC0000;}
.blue{	color:blue;}
.blue{	color:blue;}
.txt-left {	text-align:left;}
.txt-right {	text-align:right;}
.txt-center {	text-align:center;}


.bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(51,51,51,0.7);
	display: none;
}

/* NSD */
.box_state_radio *{
	background-color:red;
}
input:checked + label {
  color: red;
}

/* ===================================================================
	通常のリンク
=================================================================== */
a {
	text-decoration: underline;
}
a:link {
	color: #3B7ABB;
}
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 {
	width: 100%;
	min-height: 55px;
	padding: 0;
	background: var(--bs-primary);
	background: #fff;
	color: #333;
/*	filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));*/
/*	box-shadow: 0 1px 5px rgba(0,0,0,0.15);*/
	box-shadow: var(--box-shadow);
}
#header_inner {
	display: flex;
	justify-content: space-between;
/*	align-items: center;*/
/*	width: 98%;
	max-width: 1000px;
	margin: 0 auto;*/
}
#header_inner a {
	color: #333;
	text-decoration: none;
}

.header_menu {
	display: flex;
/*	align-items: center;*/
}


/*	ロゴ ---------------------------- */
#top {
	padding: 15px 2%;
}
#top img {
	width: auto;
	height: 25px;
}


/*	グローバルメニュー -------------------------- */
#gmenu {
}
#gmenu ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;
	height: 100%;
	padding-right: 1em;
}
#gmenu ul li {
}
#gmenu ul li a {
	display: flex;
	align-items: stretch;
	height: 100%;
	padding: 0.5em 1em;
	color: #333;
	font-weight: 600;
}
#gmenu ul li a span {
	align-self: center;
}
.gmenu_icon {
	margin-right: 0.2em;
}
.gmenu_icon_dashbord {
	color: var(--bs-primary);
}
.gmenu_icon_attack {
	color: var(--bs-primary);
}
.gmeni_icon_schedule {
}
.gmenu_icon_analize {
	color: #3B7ABB;
}
.gmenu_icon_mail {
	color: var(--bs-primary);
}
.gmeni_icon_apo {
	color: #F64A5E;
}
.gmenu_icon_setting {
	color: #717D7B;
}




/*	名前＆ドロップダウンメニュー -------------------------- */
.header_prof {
	display: flex;
	border-left: 1px solid #A3DCD2;
	cursor: pointer;
	position: relative;
}
.header_prof_name {
	padding: 0 1em 0 2em;
	font-weight: 600;
	align-self: center;
}
.header_prof_name i {
	margin-left: 1em;
}

.submenu {
	display: none;
}
.submenu.open {
	display: block;
	width: 13em;
	min-width: 100%;
	position: absolute;
	right: 0;
	left: auto;
	top: 100%;
	background: #EDF8F6;
	border: 1px solid var(--bs-primary);
}
.submenu li {
	border-bottom: 1px solid var(--bs-primary);
}
.submenu li:last-child {
	border: none;
}
.submenu a {
	display: block;
	padding: 0.8em;
	color: #333;
	font-weight: 500;
}
.submenu a i {
	margin-right: 0.3em;
}

/* 本日の結果 */
.today_number {
	display: flex;
	align-items: center;
	align-self: center;
	font-size: .9rem;
	
	border-radius: 5px;
/*	padding: 5px;*/
	padding: 0;
/*	background: #fff;*/
	color: #333;
	
/*	border: 1px solid #fff;*/
}
.today_number dt {
/*	background: var(--bs-primary);
	border-radius: 5px 0 0 5px;*/
	padding: 5px;
	font-weight: 700;
/*	color: var(--bs-primary);*/
/*	color: #fff;*/
}
.today_number dd {
	padding: 5px;
	display: flex;
	align-items: center;
}
.today_number dd div {
	display: flex;
	align-items: center;
	padding: 0 5px;
}
.today_num {
/*	padding: 0 .1em;*/
	font-size: 120%;
	font-weight: 700;
/*	color: #fff;*/
}
.today_icon {
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	margin-right: .5em;
	border-radius: 50%;
	text-align: center;
}
.today_num_apo .today_icon {
	background: #FEF1D6;
	color: #FBAA0B;
}
.today_num_kaden .today_icon {
	background: #D1EDE8;
	color: var(--bs-primary);
}









/* ===================================================================
	#footer
	フッター
=================================================================== */
footer {
	padding: 0;
}

/* -------------- address -------------- */
address {
	margin:0;
	padding: 10px 0;
	text-align:center;
	font-style: normal;
	font-size: 0.8rem;
}



/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 800px) {
	#contents {
		padding-bottom: 100px;
	}
	
	
	#gmenu {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		background: #fff;
		filter: drop-shadow(0px -2px 3px rgba(0,0,0,0.15));
		z-index: 999;
	}
	#gmenu ul {
		display: flex;
		padding: 0;
	}
	#gmenu ul li {
		flex-shrink: 1;
		flex-grow: 1;
		font-size: 11px;
	}
	#gmenu ul li a {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		color: #333;
	}
	span.gmenu_icon {
		margin: 0;
		font-size: 20px;
		/*color: var(--bs-primary);*/
	}

}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	#top img {
		height: 20px;
	}
	.today_number {
		display: none;
	}
	.header_prof_name {
		padding: 0 .5em;
	}
	.header_prof_name i {
		margin-left: .1em;
	}
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}



/* ===================================================================
	共通CSS
=================================================================== */
#main {
	max-width: 1000px;
	width: 96%;
	margin: 0 auto;
	padding: 20px 0;
}

#main h2 {
	font-size: 1.6rem;
	font-weight: 700;
}
.title_h3 {
	margin: 20px 0;
	font-size: 1.2rem;
	font-weight: 700;
}


.page_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.box_body {
	width: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 5px;
/*	box-shadow: 0 1px 1px rgba(0,0,0,0.15);*/
	box-shadow: var(--box-shadow);
}
.box_body_inner {
	padding: 4%;
}

.box_title {
	padding: 10px 20px;
	background: var(--bs-primary);
	border-radius: 5px 5px 0 0;
	color: #fff;
	font-size: 1.2rem;
}


/*	ぱんくず
----------------------------------------------------------------- */
#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;
}


/*	説明エリア
----------------------------------------------------------------- */
.description_area {
	margin: 0 auto 20px;
	padding: 10px 20px;
	background: #fff;
	border-radius: 5px;
/*	box-shadow: 0 1px 1px rgba(0,0,0,0.15);*/
	box-shadow: var(--box-shadow);
}
.description_list {

}
.description_list li {
	padding:0 0 0 12px;
	margin: 5px 0;
	position: relative;
}
.description_list li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--bs-primary);
	border-radius: 100%;
}


/*	共通設定
----------------------------------------------------------------- */

/* ボタン */
.btn,
a.btn,
button.btn {
	display: inline-block;
	margin: 0 10px;
	padding: 0.5em 1em 0.6em;
	background: var(--bs-primary);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.btn i {
	margin-right: 0.5em;
}
a.btn_edit,
button.btn_edit {
	margin: 0 1em;
	background: var(--bs-primary);
	color: #fff;
}
a.btn_edit i,
button.btn_edit i {
	margin-right: 0.5em;
}
a.btn_del,
button.btn_del {
	display: inline-block;
	background: #F64A5E;
	color: #fff;
}
a.btn_del.btn_outline,
button.btn_del.btn_outline {
	padding: 0.8em 2em;
	background: #fff;
	border: 1px solid #F64A5E;
	color: #F64A5E;
}


a.btn_orange,
button.btn_orange {
	background: #FBAA0B;
	color: #fff;
}
a.btn_cancel,
.btn_cancel {
	color: #333;
	background: #EAEDED;
	border: 1px solid #B0B2B2;
}

a.btn_gray,
.btn_gray {
	color: #333;
	background: #EAEDED;
	background: #fdfdfd;
	border: 1px solid #B0B2B2;
}
.btn_seikyusyo i {
	color: var(--bs-primary);
}
.btn_ryousyusyo i {
	color: #F64A5E;
}


/* inputとか */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"] {
	width: 100%;
	height: 2.8em;
	border: 1px solid #c5cece;
	padding: 0 0.5em;
	line-height: 2.8em;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
	outline: 1px solid rgba(25,167,142,0.2);
	border-radius: 0;
}
input[type="checkbox"] {
	margin-right: 0.2em;
}
input[type="radio"] {
	margin-right: 0.2em;
}
/* 各ベンダープレフィックスが取れた標準版！！(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;
}
input[type="text"].form_zip {
	width: 8em;
}
input[type="text"].form_tel {
	width: 15em;
}
input[type="text"].form_school {
	width: 20em;
}
input[type="text"].form_mail {
	width: 25em;
}
input[type="text"].form_time {
	width: 5em;
}

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;
	align-items: center;
}
.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: var(--bs-primary);
	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;
}
.input_group_append_del {
	flex-shrink: 0;
	flex-grow: 0;
	margin-left: 10px;
}
.input_group_append_del .btn_del {
	height: 2.8em;
	margin: 0;
	padding: 0 .6em;
	font-weight: 600;
	line-height: 2.8em;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}

.input_row {
	display: flex;
}
.input_row_label {
	padding: 0.5em 0.5em 0.5em 0;
}


/* 入力　ステータス */
.input_status {
	
}
.input_status label {
	display: inline-block;
	margin-right: .5em;
/*	padding: .5em;
	border: 1px solid #c5cece;
	border-radius: 5px;*/
	cursor: pointer;
	font-size:90%;
}
.input_status label:last-of-type {
	margin-right: 0;
}




/* テーブル */
table {
	width:100%;
	margin:0;	q
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	clear:both;
}
table th {
	font-weight: 700;
}
table td.txt_l {
	text-align: left;
}
table td.txt_r {
	text-align: right;
}
table td.txt_c {
	text-align: center;
}
.tbl {
	margin: 0 0 20px;
	border-top: 1px solid #dAdDdD;
}
.tbl th,
.tbl td {
	padding: 10px;
	border-bottom: 1px solid #dAdDdD;
	text-align: left;
	vertical-align: middle;
}
.tbl th {
	width: 15em;
	background: #f3f3f3;
}




.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;
}

/*
.tbl_history {
	margin: 0 0 20px;
}
.tbl_history th,
.tbl_history td {
	padding: 10px;
	border-bottom: 1px solid #EAEDED;
	text-align: left;
	vertical-align: middle;
}*/



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

/* 大元になるもの ------------------- */
#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;
	font-size:120%;
}
/* 削除（赤） ------------------- */
.delete-message {
	color:#FF0000;
	border: 1px dashed #FF0000;
	margin:10px 0 10px 0;
	padding: 5px;
	font-size:120%;
}

/* エラー（赤） ------------------- */
.error-message {
	color:#FF0000;
	border: 1px dashed #FF0000;
	margin:10px 0 10px 0;
	padding: 5px;
	font-size:120%;
}

/* 成功（緑） ------------------- */
.message {
	color:#009933;
	border: 1px dashed #009933;
	padding: 5px;
	font-size:120%;
}



/*	ページャー
----------------------------------------------------------------- */
.date_num {
	display: flex;
}
.list_num {
	font-weight: 600;
}
.list_num .num {
	color: #DD0B23;
	font-size: 1.6rem;
}
/* ソート */
.sort_btn {
	display: flex;
	justify-content: center;
}
.sort_btn a {
	display: block;
	padding: .6em .8em;
	background: #fff;
	color: #333;
	line-height: 1;
	text-decoration: none;
	border-top: 1px solid #CAD3DA;
	border-bottom: 1px solid #CAD3DA;
}
.sort_btn a:first-child {
	border-radius: 1em 0 0 1em;
	border-left: 1px solid #CAD3DA;
}
.sort_btn a:last-child {
	border-radius: 0 1em 1em 0;
	border-right: 1px solid #CAD3DA;
}

.sort_btn a.asc,
.sort_btn a.desc {
	background: #D1EDE8;
	background: var(--bs-primary);
	color: #fff;
}
.sort_btn a.desc::after,
.sort_btn a.asc::after {
	display: inline;
	margin-left: .3em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	
}
/* 昇順 */
.sort_btn a.asc::after {
	content: '\f0d8';
}
/* 降順 */
.sort_btn a.desc::after {
	content: '\f0d7';
}


.paging_wrapper {
}
.paging {
	display: flex;
	flex-wrap: wrap;
}
.paging li {
	margin: 2px 2px;
}
.paging a {
	display: block;
	padding: 2px 10px;
	color: #3B7ABB;
	background: #ffffff;
	border: 1px solid #CAD3DA;
	text-decoration: none;
}
.paging .ellipsis {
}
.paging .active a {
	color: #ffffff;
	background: #444444;
	border: 1px solid #444444;
}
.paging .prev a,
.paging .next a,
.paging .first a,
.paging .last a {
	padding: 2px 0;
	background: none;
	border: none;
}
.paging .prev.disabled a,
.paging .next.disabled a {
	color: #969696;
}


/* PC文字がずれるから＠NSD */
@media ( max-width : 1300px ){
	.gmenu_txt {
		display:none;
	}
}

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

	input[type="text"].form_tel,
	input[type="text"].form_school,
	input[type="text"].form_mail {
		width: 100%;
	}
	
	
	
	.page_top {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.page_top h2 {
		order: 2;
	}
	#breadcrumb {
		margin-bottom: 10px;
		font-size: 0.9rem;
		order: 1;
	}
	
	.pager_area {
		display: block;
	}
	.paging_wrapper {
		text-align: center;
	}
	.result_counts {
		margin-bottom: 10px;
	}
	
	
	
	.tbl_form {
		display: block;
	}
	.tbl_form tbody,
	.tbl_form tr {
		display: block;
		width: 100%;
	}
	.tbl_form tr {
		padding: 10px 0;
		border-bottom: 1px solid #EAEDED;
	}
	.tbl_form th,
	.tbl_form td {
		display: block;
		width: 100%;
		padding: 5px;
		border: none;
	}
	.tbl_form th {
		
	}
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	.gmenu_txt {
		display:block;
	}

}








/* ===================================================================
	ログイン login
=================================================================== */
.login_store_name {
	margin: 30px auto 40px;
	font-size: 1.8rem;
	text-align: center;
}
.box_body.login {
	max-width: 500px;
	margin: 40px auto 50px;
}
.box_body.login .box_title {
	text-align: center;
}
.login_input {
	max-width: 400px;
	margin:0 auto 1em;
}
.login_input dt {
	margin-bottom: 0.5em;
	font-weight: 500;
}
.login_btn {
	margin: 20px 0 20px;
	text-align: center;
}
.btn_login,
a.btn_login {
	display: inline-block;
	margin: 0;
	padding: 0.8em 1.5em;
	background: var(--bs-primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}
.btn_login,
a.btn_login {
	
}
.login_forget {
	text-align:center;
}
.login_forget i {
	margin-right: 0.5em;
	
}



/* パスワード忘れ
--------------------------------------- */
.pass_forget_txt {
	margin: 20px 0;
}


/* ===================================================================
	ダッシュボード Dashbord
=================================================================== */

.dashbord {
	display: flex;
	justify-content: space-between;
}
.dashbord h3 {
	margin: 0 auto 20px;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
}
.dashbord_left {
	width: 50%;
}
.dashbord_timecard {
	
	padding: 20px;
}
.dashbord_timecard_btn {
	display: flex;
	justify-content: space-between;
}
.dashbord_timecard_btn > div {
	width: 49%;
}
.btn.btn_timecard {
	display: block;
	width: 100%;
	margin: 0;
	padding: 30px 10px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
}
.btn.timecard_attendance {
	background: #F64A5E;
}
.btn.timecard_leaving {
	background: #3B7ABB;
}
.attendance_date,
.leaving_date {
	margin: 10px auto ;
	text-align: center;
}

.dashbord_call {
	display: block;
	width: 45%;
	padding: 20px;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 1px 1px rgb(0 0 0 / 15%);
	color: #333;
	text-decoration: none;
}
.dashbord_call_txt {
	margin: 10px auto;
	text-align: center;
}
.dashbord_call_qr {
	margin: 10px auto;
	text-align: center;
}
.dashbord_call_qr img {
	border: 1px solid #ccc;
}


.dashbord_now_num {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.dashbord_now_num > div,
.dashbord_now_num > a {
	display: flex;
	align-items: center;
	width: 49%;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	text-decoration: none;
}
.dashbord_now_num > a {
	transition: all 0.3s 0s ease;
}
.dashbord_call_schedule,
a.dashbord_call_schedule {
	background: #D1EDE8;
	color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
}

.dashbord_bm,
a.dashbord_bm {
	background: #FEF1D6;
	color: #FBAA0B;
	border: 1px solid  #FBAA0B;
}
a.dashbord_call_schedule:hover,
a.dashbord_bm:hover {
	opacity: .7;
}
.dashbord_now_num_icon {
	flex-grow: 0;
	flex-shrink: 0;
	width: 60px;
	margin-right: 10px;
	font-size: 46px;
	text-align: center;
}
.dashbord_num {
	flex-grow: 1;
	flex-shrink: 1;
}
.dashbord_now_num h3 {
	margin: 0 0 5px;
	font-size: 1rem;
	color: #666;
	text-align: right;
}
.dashbord_now_num .num {
	font-size: 30px;
	font-weight: 700;
	text-align: right;
}

.dashbord_table_area {
	margin-top: 40px;
	padding: 20px;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}



/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 768px) {
	.dashbord {
		flex-direction: column;
	}
	.dashbord_left,
	.dashbord_timecard,
	.dashbord_call {
		width: 100%;
		margin: 0 auto 20px;
	}
	.dashbord_timecard {
		padding: 0;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	.dashbord_now_num > div {
		padding: 15px;
	}
	.dashbord_now_num_icon {
		width: 30px;
		font-size: 30px;
	}
	.dashbord_now_num h3 {
		margin-bottom: 0;
	}
	.dashbord_now_num .num {
		line-height: 1.2;
	}
}


/* ===================================================================
	ダッシュボード2 Dashbord2
=================================================================== */

.dashbord2 {
	display: flex;
	justify-content: space-between;
}

.dashbord2_main {
	width: 70%;
}
.dashbord2_sub {
	width: 28%;
}

div.card {
	margin-bottom: 20px;
/*	padding: 20px;*/
	border-radius: 4px;
	background: #fff;
/*	box-shadow: 0 1px 10px rgba(0,0,0,0.1);*/
	box-shadow: var(--box-shadow);
}

.card_header {
	display: flex;
	align-items: center;
	padding: 10px 10px 10px 0;
}
.card_title {
	width: 100%;
	margin: 5px 0;
	padding: 0 20px;
	font-size: 1.2rem;
	font-weight: 700;
	position: relative;
	letter-spacing: .1em;
}
.card_title::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: var(--bs-primary);
}
.card_body {
	padding: 15px 20px 20px;
}

.card_header_sub {
	padding: 5px 0;
	border-radius: 5px 5px 0 0;
	background: var(--bs-primary);
	
}
.card_header_sub .card_title {
	font-size: 1.2rem;
	color: #fff;
}
.card_header_sub .card_title::before {
	display: none;
}

.news_list {
	margin: 0 0 10px;
}
.news_list li {
	border-bottom:1px solid #dadddd;
	padding:1rem 0;
}
.news_list dl {
	display: flex;
}
.news_list dl dt {
	font-weight:700;
	color: var(--bs-primary);
}
.news_list dl dt {
	flex-shrink: 0;
	flex-grow: 0;
	width: 9em;
	margin-right: 1rem;
}
.agreement dt {
	margin-top: 5px;
	font-weight: 700;
}
.agreement dd {

}
.mail_list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #dadddd;
}
.mail_list dl dt {
	color: var(--bs-primary);
	font-size: 0.8rem;
	font-weight: 700;
}

.more_link {
	margin: 1rem 0 0;
	text-align: right;
}
a.btn_more_link {
	display: inline-block;
	padding: 0.3rem 1rem;
	border-radius: 1.2rem;
	border: 1px solid var(--bs-primary);
	text-decoration: none;
	color: var(--bs-primary);
}
a.btn_more_link:hover {
	background: var(--bs-primary);
	color: #fff;
}
a.btn_more_link i {
	margin-left: 0.5em;
}

.menu_list {
	display: flex;
	flex-wrap: wrap;
}
.menu_list li {
	width: 30%;
	margin: 0 1.5% 3%;
}
a.button_big {
	display: block;
	padding: 1rem .6rem;
	margin: 0 auto;
	background: rgba(25, 167, 142,0.15);
	border-radius: 1rem;
	text-align:center;
	transition: all 0.2s ease;
	text-decoration: none;
	color: #333;
}
.button_big_ico {
	display: block;
	color:var(--bs-primary);
	font-size:50px;
	margin:5px auto 20px;
}
.button_big_ico.icon_apo_get {
	color: #F64A5E;
}
.button_big_ico.icon_account_management {
	color: #B4593F;
}
.button_big_ico.icon_analize {
	color: #3B7ABB;
}
.button_big_ico.icon_setting {
	color: #717D7B;
}



.button_big_txt {
	display: block;
	margin:10px 0 0;
	font-weight:700;
	text-align:center;
}
.button_big:hover {
	background: rgba(25, 167, 142,0.25);
}
.discription {
	font-size: .9rem;
}



/* タブレット */
@media ( max-width : 960px ){
	.dashbord2 {
		display: block;
	}
	.dashbord2_main {
		width: 100%;
	}
	.dashbord2_sub {
		display: flex;
		width: 100%;
	}
	.dashbord2_sub > .card {
		width: 32%;
		margin-right: 2%;
	}
	.dashbord2_sub > .card:nth-of-type(3n) {
		margin-right: 0;
	}
	.menu_list li {
		width: 32%;
		margin: 0 2% 2rem 0;
	}
	.menu_list li:nth-child(4n) {
		margin-right: 2%;
	}
	.menu_list li:nth-child(3n) {
		margin-right: 0;
	}
}
/* スマホ（横） */
@media screen and (max-width: 768px) {
	.button_big_ico {
		margin: 0 auto 10px;
		font-size: 40px;
	}
	.news_list li {
		padding: 0.5rem 0;
	}
	.news_list dl {
		display: block;
	}
	.news_list dl dt {
		width: auto;
		margin: 0;
	}

	.menu_list li {
		width: 49%;
		margin: 0 2% 2% 0;
	}
	.menu_list li:nth-child(3n) {
		margin-right: 2%;
	}
	.menu_list li:nth-child(2n) {
		margin-right: 0;
	}
	.menu_list li:nth-child(4n) {
		margin-right: 0;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	.dashbord2_sub {
		display: block;
	}
	.dashbord2_sub > .card {
		width: 100%;
		margin: 0 0 20px;
	}
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}


/* ===================================================================
	一覧表示
=================================================================== */

/* サーチパネル
--------------------------------------- */
#search_pnl {
	background: #fff;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 4px;
/*	box-shadow: 0 1px 1px rgba(0,0,0,0.15);*/
	box-shadow: var(--box-shadow);
}
#search_pnl h3 {
	margin: -15px -15px 15px;
	padding: 5px 10px;
	background: #444444;
	color: #fff;
	font-weight: 400;
}
.search_clm {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.search_clm2 dl {
	width: 48%;
}
.search_clm3 dl {
	width: 32%;
}

.pnl_item {
	margin-bottom: 10px;
}
.pnl_item dt {
	margin-bottom: 5px;
	font-weight: 600;
}

.pnl_item dd .checkbox {
	display: inline-block;
	margin-right: .5em;
}

.search_btn {
	text-align: center;
}
.search_btn .btn {
	width: 8em;
}
/*
.btn {
	display: inline-block;
	margin: 0;
	padding: 0.8em 1.5em;
	background: #FFC515;
	color: #444444;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}
.btn i {
	margin-right: 0.5em;
}*/


.btn_area {
	margin-bottom: 20px;
	text-align: right;
}
.btn.btn_add {
	padding: 0.8em 2em;
}

.btn_area_flex form {
	display: flex;
	justify-content: space-between;
}

/* 表示件数
--------------------------------------- */
.data_num {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.data_num > div {
	align-self: center;
}


.page_block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}




/* 表示件数
--------------------------------------- */
.tbl_data {
	
}
.tbl_data th,
.tbl_data td {
	padding: 0.5em;
	text-align: left;
	background: #fff;
	border-bottom: 1px solid #dAdDdD;
}
.tbl_data .tbl_head th {
	border-bottom: 2px solid #dAdDdD;
	text-align: center;
}
.tbl_data th,
.tbl_data td {
	
}
.tbl_data tr:nth-child(2n) td,
.tbl_data tr:nth-child(2n) th {
	background: #f3f3f3;
}
.tbl_data td.txt_num {
	text-align: center;
}
.tbl_data td.sousa{
	text-align: center;
}
.tbl_data td.sousa .btn {
	margin: 0 10px 5px 0;
}


.tbl_data td.sousa a{
	white-space: nowrap;
}

.tbl_comment {
	max-width: 500px;
	height: 6em;
	overflow-y: scroll;
}

.taioujokyo {
	min-width: 15em;
}
.taioujokyo div.input {
	margin-bottom: 5px;
}



/* タブレット */
@media ( max-width : 960px ){
}

@media screen and (max-width: 850px) {
	.search_clm {
		flex-wrap: wrap;
	}
	.search_clm3 dl,
	.search_clm2 dl {
		width: 100%;
	}
	
	.data_num {
		display: block;
	}
	.list_num {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 600px) {
	
}

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




/* ===================================================================
	アタックリスト
=================================================================== */

.card_list {
	
}

.attack_cards {
	margin-bottom: 50px;
	border-radius: 5px;
	background: #fff;
	border-top: 5px solid #ccc;
/*	box-shadow: 0 1px 1px rgba(0,0,0,0.15);*/
	box-shadow: var(--box-shadow);
}
.attack_cards.mikaden {
	border-top: 5px solid #3B7ABB;
}
.attack_cards.kadenzumi {
	border-top: 5px solid var(--bs-primary);
}
.attack_cards.pamphlet {
	border-top: 5px solid #2263e6;
}
.attack_cards.apook {
	border-top: 5px solid #e6b422;
}
.attack_cards.juchu {
	border-top: 5px solid #F64A5E;
}


.cards_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background: #F7F7F7;
	border-bottom: 1px solid #dAdDdD;
}

.attack_cards.mikaden .cards_top {
	background: rgba(59,122,187,.2);
}
.attack_cards.kadenzumi .cards_top {
	background: rgba(25,167,142,.2);
}
.attack_cards.apook .cards_top {
	background: rgba(251,170,11,.2);
}
.attack_cards.juchu .cards_top {
	background: rgba(246,74,94,.2);
}

.cards_btm {
	padding: 30px;
}
.cards_btm_inner {
	display: flex;
	justify-content: space-between;
}
.cards_btm_l {
	width: 57%;
}
.cards_btm_r {
	width: 40%;
}

/* ボタンエリア ------------------ */
.cards_top_btn {
	display: flex;
	align-items: center;
}
.cards_top_btn .btn_edit,
.cards_top_btn .btn_del {
	margin: 0 0 0 10px;
}

.cards_thumbs {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 1em;
	margin-left: 1em;
}
.cards_thumbs_up,
.cards_thumbs_down {
	margin: 0 0.3em;
}
.cards_thumbs_up i,
.cards_thumbs_down i {
	margin-right: .2em;
}
.cards_thumbs_up i {
	color: #3B7ABB;
}
.cards_thumbs_down i {
	color: #F64A5E;
}

.icon_bm_call {
	margin: 0 0.3em;
}
.icon_bm_call i {
	margin-right: .2em;
	color: var(--bs-primary);
}


.icon_bm_off{
	color: #B0B2B2;
	font-size: 25px;
	cursor: pointer;
}
.icon_bm_on{
	color: #FBAA0B;
	font-size: 25px;
	cursor: pointer;
}
.icon_hyouka {
	color: #FBAA0B;
	font-size: 16px;
}
.icon_angry {
	margin-left: 1em;
	color: #DD0B23;
	font-size: 16px;
}


/* ステータス ------------------ */
.status_list {
/*	display: inline-block;*/
	display: flex;
}
.status_list li {
/*	display: inline-block;*/
}
.status_list li span {
	display: inline-block;
	padding: 0.2em 0.5em 0.4em;
	background: #c1c3c3;
	color: #fff;
	line-height: 1;
	font-weight: 500;
}
.status_list li.current span.mikaden {
	background: #3B7ABB;
}
.status_list li.current span.kadenzumi {
	background: var(--bs-primary);
}
.status_list li.current span.pamphlet {
	background: #2263e6;
}
.status_list li.current span.apook {
	background: #e6b422;
}
.status_list li.current span.juchu {
	background: #F64A5E;
}
.status_list li:after {
	margin:0 0.5em;
	content: "\f0da";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color:#c1c3c3;
}
.status_list li:last-child:after {
	display: none;
}


/* カードの左側 ------------------ */
.company_code {
	font-size: .9rem;
	font-weight: 500;
	color: #999;
}
.company_name {
	margin-bottom: 5px;
	font-size: 1.6rem;
	font-weight: 600;
}
.cards_memo{
	height: 200px;
	padding: 10px;
	overflow-y: scroll;
	border: 1px solid #c5cece;
	background: #F7F7F7;
}
.cards_log{
	height: 100px;
	padding: 10px;
	overflow-y: scroll;
	border: 1px solid #c5cece;
	background: #F7F7F7;
}
.cards_form {
	margin-bottom: 20px;
}
.cards_form dt {
	margin-bottom: 5px;
	font-weight: 600;
}
.company_info {
	margin-bottom: 20px;
}
.company_info_inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.company_info_inner02 {
	display: flex;
	flex-wrap: wrap;
}
.company_address {
	width: 100%;
}
.company_tantou,
.company_gyosyu {
	width: 50%;
}
.company_info_inner >div {
	margin-right: 20px;
}
.company_info_inner >div:last-child {
	margin-right: 0;
}
.company_info_inner a {
	color: #333;
	text-decoration: none;
}
.company_tel {
	display: flex;
	align-items: center;
}
.company_tel a {
	font-size: 1.6rem;
	font-weight: 600;
}
.company_tel .btn_edit {
	font-size: 1rem;
	line-height: 1;
	color: #fff;
}
button.btn_call_sp {
	display: none;
}

.card_icon {
	margin-right: 0.2em;
	color: var(--bs-primary);
}
.cards_link_none {
	color: #c1c3c3
}
.cards_link_none .card_icon {
	color: #c1c3c3
}

.memo_teikei {
	margin: -10px 0 10px;
}
.memo_teikei .btn_teikei {
	margin: 0 10px 5px 0;
	background: #D1EDE8;
	border: 1px solid var(--bs-primary);
	color: var(--bs-primary);
}



/* カードの右側 ------------------ */
.cards_info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.cards_keep {
	flex-grow: 1;
	flex-shrink: 1;
}
.btn_keep,
a.btn_keep {
	margin: 0;
	width: 100%;
	background: #B0B2B2;
	color: #ffffff;
}
a.btn_keep_on {
	background: #FBB731;
	color: #ffffff;
}
.btn_keep_no {
	background: #F7F7F7;
	border: 1px solid #B0B2B2;
	color: crimson;
	cursor: not-allowed;
}

.cards_keep[data-keep=1] .btn_keep_on{
	display:none;
}

.cards_update {
	flex-grow: 0;
	flex-shrink: 0;
	margin-left: 2em;
	font-size: 0.9rem;
	color: #666666;
}


.cards_booking {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.cards_booking > div {
	width: 48%;
	text-align: center;
}
.cards_call_inner,
.cards_appo_inner {
	margin-bottom: 10px;
	padding: 10px;
	font-size: 0.9rem;
}
.cards_call_inner {
	background: #D8E4F1;
}
/* コール予定：自分 */
.cards_call_inner.call_myself {
	background: rgba(59,122,187,.2);
}
/* コール予定：他人 */
.cards_call_inner.call_others {
	background: rgba(246,74,94,.2);
}
/* コール予定：フリー */
.cards_call_inner.call_free {
	background: rgba(176,178,178,.2);
}

.cards_appo_inner {
	background: #FEF1D6;
}
.cards_call_inner h4,
.cards_appo_inner h4 {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 1.1rem;
}
.cards_call_inner h4 {
	color: #3B7ABB;
}
.cards_appo_inner h4 {
	color: #FBAA0B;
}
.cards_call_inner h4 i,
.cards_appo_inner h4 i {
	margin-right: 0.2em;
}
.cards_call .input_group_append button {
	background: #3B7ABB;
}
a.btn_appo,
button.btn_appo {
	width: 100%;
	margin: 0;
	padding: 0 1em;
	line-height: 2.8em;
	background: #FBAA0B;
}

.cards_form.cards_history {
	margin: 20px 0 0;
}

.cards_target_note {
	margin-top: 10px;
	height: 100px;
	padding: 10px;
	overflow-y: scroll;
	border: 1px solid #c5cece;
	background: #F7F7F7;
	word-break: break-all;
}

.cards_appo_txt {
	display: flex;
	justify-content: space-between;
	align-items: center;
/*	min-height: 3em;*/
}
.cards_appo_schedule {
	width: auto;
	flex-grow: 1;
}
.cards_appo_calendar {
	flex-shrink: 0;
	flex-grow: 0;
	margin-left: 10px;
	
}

.cards_appo_calendar a {
	display: block;
	padding: 0.5em;
	border: 1px solid #FBAA0B;
	border-radius: 4px;
	color: #ffffff;
	font-size: 1.2rem;
	line-height: 1;
	background: #FBAA0B;
}


.cards_hidden {
	align-self: center;
	font-size: 1.4rem;
	font-weight: 500;
}

/* タブレット */
@media ( max-width : 960px ){
	.company_tantou,
	.company_gyosyu {
		width: 100%;
	}
}

@media screen and (max-width: 850px) {
	.cards_btm {
		padding: 20px;
	}
	.cards_btm_inner {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.cards_btm_l,
	.cards_btm_r {
		width: 100%;
	}
	
	.memo_teikei,
	.cards_info,
	.cards_booking,
	.cards_form_status,
	.cards_form_memo dd {
		display: none;
	}
	.cards_form_memo {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 600px) {
	.cards_top {
		flex-direction: column;
		align-items: stretch;
	}
	.cards_top_btn {
		align-self: flex-end;
		margin-top: 10px;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	.company_info_inner .company_tel {
		flex-wrap: wrap;
		width: 100%;
		margin-right: 0;
	}
	button.btn_call_pc {
		display: none;
	}
	
	button.btn_call_sp {
		display: block;
		width: 100%;
		margin: 10px auto;
		padding: 1em ;
	}
}




/*	モーダル表示
----------------------------------------------------------------- */
.iziModal .iziModal-button {
	opacity: 1 !important;
}
/*
.modal_base {
	position: relative;
}
.close {
	position: absolute;
	top:5px;
	right: 5px;
	width: 2em;
	height: 2em;
	line-height: 2em;
	border-radius: 1em;
	background: #fff;
	font-size: 20px;
}
.close a {
	display: block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	text-decoration: none;
	background: var(--bs-primary);
	font-size: 20px;
	border-radius: 1em;
	cursor: pointer;
	color: #ffffff;
	font-weight: bold;
}
.iziModal {
	transform: none !important;
}
.iziModal-wrap {
	
}
.iziModal-content {
	height: 100vh;
	background: #fff;
}
.modal_inner {
	padding: 50px 20px 20px;
}
.modal_inner h3:first-child {
	margin-top: 0;
}
.modal_tbl {
	height: 50vh;
	overflow: auto;
	white-space: nowrap;
}*/

/*
#calendar {
	height: 100vh;
}
*/

/* ===================================================================
	編集 edit
=================================================================== */
.box_body.body_edit {
	
}

.form_btn {
	text-align: center;
}
.form_btn .btn {
	min-width: 150px;
	padding: 0.8em 1.5em 0.9em;
}
.form_btn .btn_edit {
}
.form_btn .btn_cancel {
	color: #333;
	background: #EAEDED;
	border: 1px solid #B0B2B2;
}

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


/* ===================================================================
	設定 setting
=================================================================== */


.setting_btn_list {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 40px;
}
.setting_btn_list li {
	width: 30%;
	margin-right: 5%;
	margin-bottom: 3%;
	text-align: center;
}
.setting_btn_list li:nth-of-type(3n) {
	margin-right: 0;
}
.setting_btn_list li a {
	display: block;
	background: #fff;
	padding: 20px;
	border-radius: 4px;
/*	box-shadow: 0 1px 1px rgba(0,0,0,0.15);*/
	box-shadow: var(--box-shadow);
	color: #333;
	font-size: 1.2rem;
	font-weight: 600;
	text-decoration: none;
}
.setting_btn_list li a span {
	display: block;
}
.setting_btn_list li a span.setting_btn_icon {
	margin-bottom: 10px;
	color: var(--bs-primary);
	font-size: 40px;
}
.setting_btn_list li a span.setting_btn_ex {
	margin-top: 10px;
	font-size: 0.9rem;
	font-weight: 400;
}




.setting_btn_list_ex li a {
	display: grid;
/*	grid-template-rows: 60px 1fr;*/
	grid-template-columns: 70px 1fr;
	text-align: left;
}
.setting_btn_list_ex li a span.setting_btn_icon {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
	margin: 0;
	font-size: 36px;
	text-align: center;
}
.setting_btn_list_ex li a span.setting_btn_txt {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	
}
.setting_btn_list_ex li a span.setting_btn_ex {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	margin-top: 5px;
}


.tantousya_list {
	display: flex;
	flex-wrap: wrap;
}
.tantousya_list > div {
	margin-right: 1em;
	margin-bottom: 0.5em;
	padding: 0.2em 0.5em;
	background: #eee;
	border-radius: 3px;
}




.card_mi {
	font-weight: 700;
	color: #ff0000;
}

/*
.change_select_area {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
}*/

.select_date {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;

}
.select_date select {
	width: auto;
	order: 2;
}

.tab_month {
/*	margin: 20px 0;*/
	order: 1;
}
.tab_month_btn {
	display: flex;
}
.tab_month_btn li a {
	display: block;
	padding: .5em 1em;
	text-decoration: none;
	color: #333;
	font-weight: 700;
	border-bottom: 3px solid #EAEDED;
}
.tab_month_btn li a:hover {
	border-bottom-color: var(--bs-primary);
}
.tab_month_btn li a.current {
	border-bottom-color: var(--bs-primary);
}


/* カード決済 */
#payjp_checkout_box input[type=button] {
	display: inline-block;
	margin: 0 10px!important;
	padding: 0.8em 2em!important;
	background: var(--bs-primary)!important;
	color: #fff!important;
	font-size: 1rem!important;
	font-weight: 600!important;
	font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif!important;
	line-height: 1!important;
	text-decoration: none!important;
	text-align: center!important;
	border: none!important;
	border-radius: 4px!important;
	cursor: pointer!important;
}



/* タブレット */
@media ( max-width : 960px ){
	.tab_month_btn li a {
		padding: 0.5em 0.8em;
	}
}
@media ( max-width : 768px ){
	.select_date {
		display: block;
	}
	
	.tab_month_btn {
		
	}
	.tab_month_btn {
		position: relative;
		display: flex;
		padding: 0;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		z-index: 10;
	}
	.tab_month_btn::before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		border-bottom: 1px solid #ccc;
		z-index: 10;
	}
	.tab_month_btn::-webkit-scrollbar {
		height: 3px;
	}
	.tab_month_btn::-webkit-scrollbar-track {
		border-radius: 3px;
		background: #F5F6F6;
	}
	.tab_month_btn::-webkit-scrollbar-thumb {
		border-radius: 3px;
		background: #c5c6c6;
	}
}

/* スマホ（横） */
@media screen and (max-width: 600px) {
	.setting_btn_list li {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	.setting_btn_list li:nth-of-type(3n) {
		margin-right: 4%;
	}
	.setting_btn_list li:nth-of-type(2n) {
		margin-right: 0;
	}
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}





/* ===================================================================
	効果測定
=================================================================== */
.switching_btn {
	margin: 0 0 20px;
}

.switching_btn_group {
	display: flex;
	justify-content: flex-start;
}
.switching_btn_group li a {
	display: block;
	padding: .5em 1em;
	border: 1px solid #dAdddd;
	border-right: none;
	background: #fff;
	text-decoration: none;
	font-weight: 700;
	color: #333;
}
.switching_btn_group li:first-child a {
	border-radius: 5px 0 0 5px;
}
.switching_btn_group li:last-child a {
	border-radius: 0 5px 5px 0;
	border-right: 1px solid #dAdddd;
}
.switching_btn_group li a.current {
	background: var(--bs-primary);
	color: #fff;
}

/* 効果測定のグラフ */
.koukasokutei_graph {
	margin: 0 0 40px;
}
.apo_graph {
	display: flex;
	justify-content: space-between;
	margin: 60px 0;
}
.apo_graph_tbl {
	height: 300px;
	width: 550px;
	overflow-y: scroll;
	position: relative;
}
.apo_graph_tbl .tbl_data {
	position: relative;
	
}
.apo_graph_tbl .tbl_data th,
.apo_graph_tbl .tbl_data td {
	font-size: .8rem;
}

.apo_graph_tbl .tbl_data th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #fff;
	border: none;
}
.apo_graph_tbl .tbl_data th::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-bottom: 2px solid #dAdDdD;
}

/* タブレット */
@media ( max-width : 960px ){
	.apo_graph {
		display: block;
	}
	.apo_graph_tbl {
		width: 100%;
		margin-top: 10px;
	}
	
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}


.rateit {
	display: flex!important;
	align-items: center;
}

.rateit.rateit-font .rateit-reset {
	margin: 0 10px 0 0!important;
	float: inherit;
}


.rateit.rateit-font .rateit-reset span {
	display: block;
	height: 2px!important;
	border: none!important;
	background: #fff;
	top: calc(50% + 1px)!important;
	transform: translateY(calc(-50% - 1px));
}

/* NSD */
.bottom_fixed{
	position: fixed;
	bottom: 0;
	left:0;
	width:100%;
	padding: 10px;
	background-color:rgba(0,0,0,0.5);
/*	height:50px;*/
}
.bottom_fixed button{
	opacity: 1;
	margin-top:6px;
}





/* ===================================================================
	静的ページ
=================================================================== */
.box_body_page {
	line-height: 1.8;
}
.box_body_page p {
	margin-bottom: 1em;
}
.intro_txt {
	margin-bottom: 2em;
}

.page_h3 {
	margin: 2em 0 1em;
	font-size: 1.2rem;
	font-weight: 700;
}

.ol_list {
	margin-left: 2.5em; /* サイトに合せて調整 */
}
.ol_list li {
	list-style-type: none;
	counter-increment: cnt;
}
.ol_list > li::before {
	content: "(" counter(cnt) ")";
	display:inline-block;
	margin-left:-2em; /* サイトに合せて調整 */
	width: 2em; /* サイトに合せて調整 */
}

#about_site {
	margin-top: 2.5em;
	border-top: 1px solid #ccc;
}


.box_body_page table p {
	margin: 0;
}
.help {
	color: #999;
}


.box_body_page p.initial_cost {
	margin-bottom: 40px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	
}
.box_body_page p.initial_cost .initial_cost_txt {
	padding: 0 0.5em;
	background: linear-gradient(transparent 60%, #9fe2d5 60%);
}

.tbl_plan {
}
.tbl_plan th,
.tbl_plan td {
	padding: 20px 10px;
	border-bottom: 1px solid #dAdDdD;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	vertical-align: middle;
}

.tbl_plan thead th {
	padding: 0 5px;
	font-size: 1.4rem;
	font-weight: 700;
}
.tbl_plan thead th span {
	display: block;
	padding: 10px 5px;
	color: #fff;
	border-radius: 8px 8px 0 0;
}
.tbl_plan thead th.plan_entry span {
	background: var(--bs-primary);
}
.tbl_plan thead th.plan_basic span {
	background: #FBAA0B;
}
.tbl_plan thead th.plan_advance span {
	background: #F64A5E;
}

.tbl_plan tbody th {
	background: #f3f3f3;
}
.tbl_plan tbody td {
	border-left: 1px solid #dAdDdD;
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
}
.tbl_plan tbody td.plan_entry {
	background: rgba(25, 167, 142,0.1);
}
.tbl_plan tbody td.plan_basic {
	background:rgba(251, 170, 11,0.1);
}
.tbl_plan tbody td.plan_advance {
	background: rgba(246, 74, 94,0.1);
}

.tbl_plan_option {
	border-top: 1px solid #dAdDdD;
}
.tbl_plan_option th,
.tbl_plan_option td {
	padding: 20px;
	border-bottom: 1px solid #dAdDdD;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
}
.tbl_plan_option tbody th {
	width: 15em;
	background: #f3f3f3;
}
.tbl_plan_option tbody td {
	text-align: left;
}
.notice {
	color: #999;
	font-weight: 400;
}


.price_num {
	font-size: 180%;
}
.plan_num {
	font-size: 130%;
}

.plan_notes {
	margin-top: 10px;
}

.page_h3_plan {
	font-size: 1.4rem;
	text-align: center;
}

.plan_basic .price_num,
.plan_advance .price_num  {
	color: #F64A5E;
}
.plan_off {
	padding: 0 1.4em;
	font-size: 1.1rem;
	color: #F64A5E;
	position: relative;
	font-weight: 900;
}
.plan_off:before,
.plan_off:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 1.2em;
	height: 2px;
	border-radius: 1px;
	background-color: #F64A5E;
}
.plan_off::before {
	left: 0;
	-webkit-transform: rotate(60deg);
	transform: rotate(60deg);
}
.plan_off:after {
	right: 0;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}


.form_btn_plan {
	margin: 40px auto;
}
.form_btn_plan .btn {
	width: 60%;
	padding: 1em ;
	font-size: 1.4rem;
}




/* アタックリスト */
.setFields #main {
	max-width: 1440px;
}
.setFields #main .box_body_inner {
	padding: 40px;
}
.input_group_setfields {
	margin-bottom: 1em;
}
.input_group_setfields select {
	min-width: 5em;
	margin-right: 0.5em;
}

.tbl_sticky {
	overflow-x: auto;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.tbl_sticky .sticky {
	position: sticky;
	top: 0;
	left: 0;
	background: none;
	border-bottom: none;
}
.tbl_sticky .sticky::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/*	border-left: 1px solid #dAdDdD;
	border-right: 1px solid #dAdDdD;*/
	border-bottom: 1px solid #dAdDdD;
	background: #fff;
	z-index: -1;
}
.tbl_sticky .tbl_data tr:nth-child(2n) .sticky::before {
	background: #f3f3f3;
	
}

.setFields #main .form_btn {
	margin-top: 1em;
}


.hissu::before {
/*content: "必須";*/
}

.hisu {
	font-size:80%;
	background-color:red;
	
	color:#FFF;
	border-radius: 6px 6px 6px 6px;
	padding:3px;
	margin-right:6px;
}
.nini {
	font-size:80%;
	background-color:#CCC;
	color:#666;
	border-radius: 6px 6px 6px 6px;
	padding:3px;
	margin-right:6px;
}


.required::after {
/*  content: "必須";
  background-color: #f0ad4e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 3px 7px;
  margin: 0px 5px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  display: inline-block;*/
}




/* カレンダー */
.calender #main {
	max-width: 1440px;
}
.calender_main_area {
	display: flex;
	justify-content: space-between;
}
.calender_sub {
	max-width: 250px;
	min-width: 200px;
	width: 20%;
	margin-right: 20px;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	box-shadow: var(--box-shadow);
}
.calender_main {
	width: 80%;
	margin: 0;
}
.calender_list {
	margin: 20px 0 0;
	font-weight: 500;
}

.calender_list .checkbox {
	margin-bottom: 0.5em;
}


/* タブレット */
@media ( max-width : 960px ){
	
}
/* スマホ（横） */
@media screen and (max-width: 800px) {
	.calender_main_area {
		display: block;
	}
	.calender_sub {
		width: 100%;
		max-width: inherit;
		min-width: inherit;
		margin: 0 0 20px;
	}
	.calender_main {
		width: 100%;
	}

	.calender_list .checkbox {
		display: inline-block;
		margin-right: 1.5em;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}


input,select,textarea{
	border-radius: 0.5rem;
}


input:focus,select:focus,textarea:focus{
	border-radius: 0.5rem;
}


.original-box-shadow {
	border-radius: 3px;
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}