/* CSS Document */

@font-face {
font-family: "ZenMaruGothic-Regular";
src:url("../font/Zen_Maru_Gothic/ZenMaruGothic-Regular.ttf");
}

@font-face {
font-family: "ZenMaruGothic-Bold";
src:url("../font/Zen_Maru_Gothic/ZenMaruGothic-Bold.ttf");
}


/*--------------------------------------------------------------------
 *	横幅が1200px以上の場合に適用するスタイル
 *	※1200px以下に適用するスタイルを書かなかった場合は全サイズに適用
 *	
 *	
 ---------------------------------------------------------------------*/



body{
	background-color:#FFFDF0;
	font-family:"ZenMaruGothic-Bold";
	color:#5d4336;
	font-size:1rem;
	margin-bottom:100px;
}

header{
	background-color:#f6d98b;
	border-color:#e3be96;
	border-bottom: 0.5rem solid #e3be96;
}

.account_img{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	/*object-fit: cover;*/
}
	

.footer_style{
	background-color:#f6d98b;
	font-size: 1.5rem;
	border-top: 0.3rem solid #e3be96;
}

.footer_font{
	color:#FFFFFF;
	margin-top:-4px;
}

a{
	text-decoration: none;
}

a,a:hover,a:visited{
    color: inherit;
}	

.warning_text{
	color:#FF0000;
	font-family:"ZenMaruGothic-Regular";
	font-size:0.7em
}

h1{
	font-size:5rem;
	margin-bottom:-20%;
}



/*▼ログインページカスタムCSS▼*/

.cp_iptxt {
	position: relative;
	width: 80%;
	margin: 40px;
}
.cp_iptxt input[type='text'], .cp_iptxt input[type='password']{
	/*font: 15px/24px sans-serif;*/
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em;
	transition: 0.5s;
	letter-spacing: 1px;
	background-color:#f6d98b;
	color: #5d4336;
	border:none;
	/*border: 1px solid #1b2538;*/
	border-radius: 15px;
}


.ef input[type='text']:focus, .ef input[type='password']:focus {
	border: none;
	outline: none;
	box-shadow: 0 0 5px 1px rgba(93,67,54, .5);
}

.button-20 {
  appearance: button;
  width:40%;
  margin: 0px 40px;
  background-color: #d5e1a0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
  border: 1px solid #d5e1a0;
  border-radius: 1rem;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset,rgba(46, 54, 80, 0.075) 0 1px 1px;
  box-sizing: border-box;
  color: #5d4336;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: .5rem 1rem;
  text-align: center;
  text-transform: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-20:focus:not(:focus-visible),
.button-20:focus {
  outline: 0;
}

.button-20:hover {
  background-color: #bec789;
  border-color: #bec789;
}

.button-20:focus {
  background-color: #bec789;
  border-color: #bec789;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(190, 199, 137, 0.075) 0 1px 1px, rgba(190, 199, 137, 0.5) 0 0 0 .2rem;
}

.button-20:active {
  background-color: #bec789;
  background-image: none;
  border-color: #bec789;
  box-shadow: rgba(190, 199, 137, 0.125) 0 3px 5px inset;
}

.button-20:active:focus {
  box-shadow: rgba(190, 199, 137, 0.125) 0 3px 5px inset, rgba(190, 199, 137, 0.5) 0 0 0 .2rem;
}

.button-20:disabled {
  background-image: none;
  box-shadow: none;
  opacity: .65;
  pointer-events: none;
}

/*▼学びスタンプ用　イベントクラス設定▼*/
.schedule-event{
	background:url(../img/calender_mark.png) !important;
	background-size:contain !important;
	background-repeat:  no-repeat !important;
	background-position:center center !important;
	z-index: 1 !important;
}

.attendance-event{
	background:url(../img/smallflower_ppink.png) !important;
	background-size:contain !important;
	background-repeat:  no-repeat !important;
	background-position:center center !important;
	z-index: 2 !important;
}



/*▼角丸囲み枠▼*/
.rounded_box1 {
    padding: 0.2em;
    /*margin: 2em 0;*/
    background-color:#d5e1a0;/*背景色*/
    border:1px solid #e3be96;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.rounded_box1 p {
    margin: 0; 
    padding: 0;
}

.rounded_box2 {
    padding: 0.5em;
    /*margin: 2em 0;*/
	height:16em;
    background-color:#fbf6c4;/*背景色*/
    border:1px solid #e3be96;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.rounded_box2 p {
    margin: 0; 
    padding: 0;
}



/*▼＜,＞用ボタン設定▼*/

.next_button{
	padding:0 1em;
	border:1px solid #e3be96;
}

.next_button--orange,
button.next_button--orange {
	background-color: #f6d98b;
	color: #5d4336;

}
.next_button--orange:hover,
button.next_button--orange:hover {
  	background: #f6d98b;
}

button.next_button--radius {
   	border-radius: 100vh;
}

/*▼スクロールバー設定▼*/
.scroll_bar::-webkit-scrollbar{
	background-color:#fbf6c4;
	border:1px solid #e3be96;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.scroll_bar::-webkit-scrollbar-track{
   	background-color:transparent;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.scroll_bar::-webkit-scrollbar-thumb{
	background-color:#e3be96;
}


/*縦のスクロール*/
/* Up */
.scroll_bar::-webkit-scrollbar-button:single-button:vertical:decrement {
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #5d4336;
	border-left: 10px solid transparent;
	height: 12px;
	width: 12px;
	display: block;
	border-style: solid;
	background-color: #e3be96;
	border-top-right-radius: 10px;
}
/* Down */
.scroll_bar::-webkit-scrollbar-button:single-button:vertical:increment {
	border-top: 10px solid #5d4336;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent;
	height: 12px;
	width: 12px;
	display: block;
	border-style: solid;
	background-color: #e3be96;
	border-bottom-right-radius: 10px;
}

.icon_img{
	width:100px;
	height:50px;
}



/*▼お知らせ枠設定▼*/

.box24 {
    position: relative;
    padding: 0.5rem;
/*    margin: 1em 0;*/
	outline:2px dashed #e6f4ff;
	outline-offset:-8px;
	border-radius:10px;
    background-color: #e6f4ff;
    color: #5d4336;
    font-weight: bold;
}
.box24:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 90%;
    border: 15px solid transparent;
    border-top: 15px solid #e6f4ff;
    width: 0;
    height: 0;
}
.box24 p {
    margin: 0; 
    padding: 0;
}

.box24 a {
	color: #e8957b;
}

/*▼ラジオボタン設定▼*/

.radio02{
	float: left;	
	width: 100%;	
	margin:0 0 50px 0;
}
.radio02 input{
	display: none;
}
.radio02 label{
	display: block;
	float: left;
	cursor: pointer;
	width: 16%;
	margin: 1px 1px 1px 0;
	padding: 1.4% 0 1.5% 0;
	border-right: 1px solid #d7d7d7;
	background: #e5e5e5;
	/*font-size: 14px;*/
	text-align: center;
	line-height: 1;
	transition: .2s;
	border-radius: 10px;
}
.radio02 label:first-of-type{
}
.radio02 label:last-of-type{
	border-right: 0px;
}
.radio02 input[type="radio"]:checked + label {
	background-color: #d5e1a0;
}

/*▼一覧テーブルの設定▼*/
/* 使用画面：ユーザー登録・編集画面 */

.list_table{
	border-spacing: 0;
    border-collapse: separate;
	border: 1px solid #e3be96;
	border-radius: 10px;
	text-align:center
}

.list_table tr>* {
	border-top:none;
	border-left:none;
	border-right: 1px solid #e3be96;
	border-bottom: 1px solid #e3be96;
}

.list_table th{
	background-color:#d5e1a0;
}

.list_table tr>*:last-child{
	border-right: none;
}

.list_table tr:last-child>*{
	border-bottom: none;
}


.list_table tr:first-child>*:first-child{
    border-radius: 10px 0 0 0;  /*左上*/
}
.list_table tr:first-child>*:last-child{
    border-radius: 0 10px 0 0;  /*右上*/
}
.list_table tr:last-child>*:first-child{
    border-radius: 0 0 0 10px;  /*左下*/
}
.list_table tr:last-child>*:last-child{
    border-radius: 0 0 10px 0;  /*右下*/
}


/*▼一覧テーブルの設定▼*/
/* ボーダーなし */
/* 使用画面：ユーザー登録・編集画面 */
.border_none_table{
	border-spacing: 0;
}

.border_none_table th{
	text-align:right;
	vertical-align:bottom;
}

/*▼生徒一覧入力フォーム設定▼*/

.role_select{
	width:100%;
	border-radius: 10px;
	border:none;
	color:#5d4336;
}

.user_input_text{
	width:100%;
	border-radius: 10px;
	border:none;
	color:#5d4336;
}

.class_input_text{
	width:100%;
	border-radius: 10px;
	border:none;
	color:#5d4336;
	padding: 0 0 0 10px;
}


.characteristics_input_text{
	width:100%;
	border:1px solid #e3be96;
	border-radius:10px;
	color:#5d4336;
	outline: none;
}

.characteristics_input_text:focus,
.user_input_text:focus,
.role_select:focus,
.class_input_text:focus{
	outline: none;
	box-shadow: 0px 0px 3px 0px #e3be96;
}

.txt_limit {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	font-size:12px;
	margin-bottom:-3px;
	/*height:70px;*/
}

.toast-header{
	background-color:d5e1a0;
}

.toast-body{
	background-color:fffdf0;
}

.user_list_td{
	height:98px;
}

.fc .fc-toolbar-title{
	font-size:2rem;
}

.fc .fc-scrollgrid{
	font-size:2rem;
	background-color:#FFF;
}

.fc th {
	background-color:#d5e1a0;
}

/*.fc td {
	border:5px solid #e3be96;
}
*/
.fc .fc-cel-header {
	border:5px solid #e3be96;	
}

.fc-day-sun{
	color:#e8957b;
}

.fc-day-sat{
	color:#9ed6d7;
}

.calendar_iframe{
	width:800;
	height:600;
}

/*▼出退勤用ボタン設定*/

button.timestanp_btn {
	display: block;
	/*text-align: center;*/
	/*vertical-align: middle;*/
	text-decoration: none;
	width: 80%;
	margin: auto;
	padding: 3rem 3rem;
	font-weight: bold;
	background: #27acd9;
	border: 6px outset #1699c5;
	color: #fff;
	transition: 0.5s;
	font-size:30px;
}
button.timestanp_btn:hover {
	background: #44c6f2;
	border: 6px outset #27acd9;
	color: #fff;
}

button.timestanp_btn_disabled {
	display: block;
	/*text-align: center;*/
	/*vertical-align: middle;*/
	text-decoration: none;
	width: 80%;
	margin: auto;
	padding: 3rem 3rem;
	font-weight: bold;
	background: #a9a9a9;
	border: 6px outset #949494;
	color: #fff;
	transition: 0.5s;
	font-size:30px;
}




/*--------------------------------------------------------------------
 *	横幅が1200px以下の場合に適用するスタイル
 *	
 *	
 *	@media (max-width: 1200px)
 ---------------------------------------------------------------------*/


@media (max-width: 1200px) {
body{
	background-color:#FFFDF0;
	font-family:"ZenMaruGothic-Bold";
	color:#5d4336;
	font-size:2.5rem;
}

header{
	background-color:#f6d98b;
	border-color:#e3be96;
	border-bottom: 1rem solid #e3be96;
}

.account_img{
	/*width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;*/
}


li{
	font-size:2.5rem;
}

.footer_style{
	background-color:#f6d98b;
	font-size: 3rem;
	border-top: 0.3rem solid #e3be96;
}

.footer_font{
	margin-top:-8px;
}

a{
	text-decoration: none;
}

a,a:hover,a:visited{
    color: inherit;
}	

.warning_text{
	color:#FF0000;
	font-family:"ZenMaruGothic-Regular";
	font-size:0.7em
}

h1{
	font-size:5rem;
	margin-bottom:-20%;
}

h3{
	font-size:4rem;
	margin-bottom:2%;	
}

.smartphone_mb{
	margin-bottom:80px;
}


/*▼ログインページカスタムCSS▼*/

.cp_iptxt {
	position: relative;
	width: 80%;
	margin: 0px 20px;
}
.cp_iptxt input[type='text'], .cp_iptxt input[type='password']{
	/*font: 15px/24px sans-serif;*/
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em;
	transition: 0.5s;
	letter-spacing: 1px;
	background-color:#f6d98b;
	color: #5d4336;
	border:none;
	/*border: 1px solid #1b2538;*/
	border-radius: 15px;
	margin-top:20%;
	margin-bottom:0px;
}

.cp_iptxt input[type='text']{
	margin-top:40%;
}



.ef input[type='text']:focus, .ef input[type='password']:focus {
	border: none;
	outline: none;
	box-shadow: 0 0 5px 1px rgba(93,67,54, .5);
}

.button-20 {
  appearance: button;
  width:40%;
  margin: 10% 40px 40px 40px;
  background-color: #d5e1a0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
  border: 1px solid #d5e1a0;
  border-radius: 1rem;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset,rgba(46, 54, 80, 0.075) 0 1px 1px;
  box-sizing: border-box;
  color: #5d4336;
  cursor: pointer;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.5;
  padding: .5rem 1rem;
  text-align: center;
  text-transform: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-20:focus:not(:focus-visible),
.button-20:focus {
  outline: 0;
}

.button-20:hover {
  background-color: #bec789;
  border-color: #bec789;
}

.button-20:focus {
  background-color: #bec789;
  border-color: #bec789;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(190, 199, 137, 0.075) 0 1px 1px, rgba(190, 199, 137, 0.5) 0 0 0 .2rem;
}

.button-20:active {
  background-color: #bec789;
  background-image: none;
  border-color: #bec789;
  box-shadow: rgba(190, 199, 137, 0.125) 0 3px 5px inset;
}

.button-20:active:focus {
  box-shadow: rgba(190, 199, 137, 0.125) 0 3px 5px inset, rgba(190, 199, 137, 0.5) 0 0 0 .2rem;
}

.button-20:disabled {
  background-image: none;
  box-shadow: none;
  opacity: .65;
  pointer-events: none;
}

/*▼学びスタンプ用　イベントクラス設定▼*/
.schedule-event{
	background:url(../img/calender_mark.png) !important;
	background-size:contain !important;
	background-repeat:  no-repeat !important;
	background-position:center center !important;
	z-index: 1 !important;

}

.attendance-event{
	background:url(../img/smallflower_ppink.png) !important;
	background-size:contain !important;
	background-repeat:  no-repeat !important;
	background-position:center center !important;
	z-index: 2 !important;
}



/*▼角丸囲み枠▼*/
.rounded_box1 {
    padding: 0.2em;
    /*margin: 2em 0;*/
    background-color:#d5e1a0;/*背景色*/
    border:1px solid #e3be96;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.rounded_box1 p {
    margin: 0; 
    padding: 0;
}

.rounded_box2 {
    padding: 0.5em;
    /*margin: 2em 0;*/
	height:16em;
    background-color:#fbf6c4;/*背景色*/
    border:1px solid #e3be96;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.rounded_box2 p {
    margin: 0; 
    padding: 0;
}



/*▼＜,＞用ボタン設定▼*/

.next_button{
	padding:0 1em;
	border:1px solid #e3be96;
}

.next_button--orange,
button.next_button--orange {
  	background-color: #f6d98b;
  	color: #5d4336;
}
.next_button--orange:hover,
button.next_button--orange:hover {
  	background: #f6d98b;
}

button.next_button--radius {
   	border-radius: 100vh;
}

/*▼スクロールバー設定▼*/
.scroll_bar::-webkit-scrollbar{
	background-color:#fbf6c4;
	border:1px solid #e3be96;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.scroll_bar::-webkit-scrollbar-track{
   	background-color:transparent;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.scroll_bar::-webkit-scrollbar-thumb{
	background-color:#e3be96;
}


/*縦のスクロール*/
/* Up */
.scroll_bar::-webkit-scrollbar-button:single-button:vertical:decrement {
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #5d4336;
	border-left: 10px solid transparent;
	height: 12px;
	width: 12px;
	display: block;
	border-style: solid;
	background-color: #e3be96;
	border-top-right-radius: 10px;
}
/* Down */
.scroll_bar::-webkit-scrollbar-button:single-button:vertical:increment {
	border-top: 10px solid #5d4336;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent;
	height: 12px;
	width: 12px;
	display: block;
	border-style: solid;
	background-color: #e3be96;
	border-bottom-right-radius: 10px;
}

.icon_img{
	width:200px;
	height:100px;
}



/*▼お知らせ枠設定▼*/

.box24 {
    position: relative;
    padding: 0.5rem;
/*    margin: 1em 0;*/
	outline:2px dashed #e6f4ff;
	outline-offset:-8px;
	border-radius:10px;
    background-color: #e6f4ff;
    color: #5d4336;
    font-weight: bold;
}
.box24:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 90%;
    border: 15px solid transparent;
    border-top: 15px solid #e6f4ff;
    width: 0;
    height: 0;
}
.box24 p {
    margin: 0; 
    padding: 0;
}
.box24 a {
	color: #e8957b;
}

.announce_icon_disp {
	margin: -20px 0px 0px 0px;
}

/*▼ラジオボタン設定▼*/

.radio02{
	float: left;	
	width: 100%;	
	margin:0 0 50px 0;
}
.radio02 input{
	display: none;
}
.radio02 label{
	display: block;
	float: left;
	cursor: pointer;
	width: 16%;
	margin: 1px 1px 1px 0;
	padding: 1.4% 0 1.5% 0;
	border-right: 1px solid #d7d7d7;
	background: #e5e5e5;
	/*font-size: 14px;*/
	text-align: center;
	line-height: 1;
	transition: .2s;
	border-radius: 10px;
}
.radio02 label:first-of-type{
}
.radio02 label:last-of-type{
	border-right: 0px;
}
.radio02 input[type="radio"]:checked + label {
	background-color: #d5e1a0;
}

/*▼一覧テーブルの設定*/


/*▼生徒一覧入力フォーム設定▼*/

.role_select{
	width:100%;
	border-radius: 10px;
	border:none;
	color:#5d4336;
}

.user_input_text{
	width:100%;
	border-radius: 10px;
	border:none;
	color:#5d4336;
}

.class_input_text{
	width:100%;
	border-radius: 10px;
	border:none;
	color:#5d4336;
	padding: 0 0 0 40px;
}

.characteristics_input_text{
	width:100%;
	border:1px solid #e3be96;
	border-radius:10px;
	color:#5d4336;
	outline: none;
}

.characteristics_input_text:focus,
.user_input_text:focus,
.role_select:focus{
	outline: none;
	box-shadow: 0px 0px 3px 0px #e3be96;
}

.txt_limit {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	font-size:2rem;
	margin-bottom:-3px;
	/*height:70px;*/
}

.toast-header{
	background-color:d5e1a0;
}

.toast-body{
	background-color:fffdf0;
}

.user_list_td{
	height:70px;
}

.fc .fc-toolbar-title{
	font-size:5rem;
}

.fc .fc-scrollgrid{
	font-size:5rem;
}

.form-control_font, .input-group{
	font-size:3rem !important;
}

/*お知らせ編集画面　チェックBOX*/

.announ_checkbox{
	transform: scale(2);
	margin: 0 6px 0 0;
}

label{
	font-size:3rem;
}

.calendar_iframe{
	width:95vw;
	height:80vh;
}

}
	




