@charset "UTF-8";
/*------------------------------------------------------------------------
 import
-------------------------------------------------------------------------*/
/*---------------------------------
カレンダー：ペジャー
----------------------------------*/
.month-switch-area {
  clear: both;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  margin-top: -10px;
  overflow: hidden;
}
.month-switch-area .box {
  display: inline;
  justify-content: center;
  -webkit-box-align: center;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-align: center;
  /*--- IE10 ---*/
  -webkit-align-items: center;
  /*--- safari（PC）用 ---*/
  align-items: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  margin-bottom: 15px;
}
.month-switch-area .box .prev, .month-switch-area .box .next {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  margin: 0 20px;
  color: #0070C9;
  font-weight: 400;
  font-size: 20px;
}
.month-switch-area .box .prev.desable, .month-switch-area .box .next.desable {
  color: #B9B9B9;
}
.month-switch-area .box .prev:hover, .month-switch-area .box .next:hover {
  background-color: #fff;
  transition: 0.2s;
}
.month-switch-area .box .indicate {
  font-size: 20px;
  font-weight: 300;
  padding: 4px 40px;
  background-color: #ffffff;
  border-radius: 0;
  border: none;
  outline: none;
}
.month-switch-area .box .indicate .year {
  padding-right: 10px;
}
.month-switch-area .box .indicate .daymonth {
  font-size: 22px;
  font-weight: 400;
}
.month-switch-area .now {
  width: 100px;
  margin: 0 auto;
}
.month-switch-area a {
  margin-top: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
}
.month-switch-area p {
  text-align: center;
  font-size: 20px;
}

/*---------------------------------
タブと教室セレクトエリア
----------------------------------*/
@font-face {
  font-family: "IonIcons";
  src: url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1");
  src: url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.1") format("woff"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.tab-area {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify;
  /*--- IE10 ---*/
  -webkit-justify-content: space-between;
  /*--- safari（PC）用 ---*/
  justify-content: space-between;
  width: 100%;
  margin: 30px 0 20px 0;
}
.tab-area .tab p {
  font-weight: 400;
  color: #455A64;
  font-size: 18px;
  line-height: 1.3rem;
}
.tab-area .tab p span {
  font-weight: 200;
  font-size: 14px;
  padding-left: 5px;
}
.tab-area .tab .btn {
  width: 140px;
  border: 1px solid #333;
  display: inline-block;
  padding: 5px;
  position: relative;
  text-align: center;
  transition: background 600ms ease, color 600ms ease;
  border-radius: 2px;
  font-size: 14px;
}
.tab-area .tab input[type="radio"].toggle {
  display: none;
}
.tab-area .tab input[type="radio"].toggle + label {
  cursor: pointer;
  min-width: 60px;
  color: #0070C9;
}
.tab-area .tab input[type="radio"].toggle + label:hover {
  background: none;
  color: #333;
}
.tab-area .tab input[type="radio"].toggle + label:after {
  background: #333;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: -1;
}
.tab-area .tab input[type="radio"].toggle.toggle-left + label {
  border-right: 0;
}
.tab-area .tab input[type="radio"].toggle.toggle-left + label:after {
  left: 100%;
}
.tab-area .tab input[type="radio"].toggle.toggle-right + label {
  margin-left: 0;
}
.tab-area .tab input[type="radio"].toggle.toggle-right + label:after {
  left: -100%;
}
.tab-area .tab input[type="radio"].toggle:checked + label {
  cursor: default;
  color: #fff;
  transition: color 200ms;
}
.tab-area .tab input[type="radio"].toggle:checked + label:after {
  left: 0;
}
.tab-area .school-select {
  justify-content: center;
  -webkit-box-align: center;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-align: center;
  /*--- IE10 ---*/
  -webkit-align-items: center;
  /*--- safari（PC）用 ---*/
  align-items: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}
.tab-area .school-select .select-wrap {
  position: relative;
}
.tab-area .school-select .select-wrap:before {
  z-index: 1;
  position: absolute;
  right: 10px;
  top: 0px;
  content: "\f123";
  font-family: "IonIcons";
  line-height: 33px;
  color: #DCE3E6;
  pointer-events: none;
}
.tab-area .school-select select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #fff;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 33px;
  padding: 0px 30px 0 10px;
  border: 1px solid #ddd;
  color: #000;
  min-width: 200px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 14px;
}
.tab-area .school-select select option {
  background-color: #fff;
  color: #333;
}
.tab-area .school-select select::-ms-expand {
  display: none;
}
.tab-area .school-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}
.tab-area .school-select .select-wrap.select-primary:before {
  color: #fff;
}
.tab-area .school-select .select-wrap.select-primary > select {
  background: #0084B4;
  color: #fff;
  border-color: #0084B4;
}
.tab-area .school-select .select-wrap.select-primary > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}
.tab-area .school-select .select-wrap.select-inverse:before {
  color: #fff;
}
.tab-area .school-select .select-wrap.select-inverse > select {
  color: #fff;
  border-color: #fff;
}
.tab-area .school-select .select-wrap.select-inverse > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

/*---------------------------------
テーブルタイプ一覧エリア
----------------------------------*/
.text-bold {
  font-weight: 500;
}

.cardlist-wrap {
  box-sizing: border-box;
  margin-bottom: 60px;
}
.cardlist-wrap .card {
  display: block;
  width: 100%;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #DCE3E6;
  font-size: 15px;
  border-radius: 2px;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  margin-bottom: 20px;
}
.cardlist-wrap .card:hover {
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: solid 1px #90ACB9;
}
.cardlist-wrap .card .head {
  width: 20%;
  box-sizing: border-box;
  padding: 10px;
  background-color: #EFF1F4;
  border-right: solid 1px #DCE3E6;
  font-weight: 500;
}
.cardlist-wrap .card .head .year {
  font-size: 14px;
  font-weight: 200;
  padding-right: 4px;
}
.cardlist-wrap .card .head .day {
  font-size: 18px;
  padding-right: 4px;
}
.cardlist-wrap .card .head .week {
  font-size: 14px;
}
.cardlist-wrap .card .body {
  width: 80%;
  box-sizing: border-box;
  padding: 0px;
}
.cardlist-wrap .card .body .box-wrap {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  border-bottom: solid 1px #DCE3E6;
}
.cardlist-wrap .card .body .box-wrap:last-of-type {
  border-bottom: none;
}
.cardlist-wrap .card .body .box-wrap .box {
  padding: 10px 30px;
  border-right: solid 1px #DCE3E6;
  /*教室色マーク*/
}
.cardlist-wrap .card .body .box-wrap .box:last-of-type {
  border-right: none;
}
.cardlist-wrap .card .body .box-wrap .box p {
  margin: 0.2em;
}
.cardlist-wrap .card .body .box-wrap .box ul {
  margin-left: 10px;
}
.cardlist-wrap .card .body .box-wrap .box ul li {
  list-style: inside;
}
.cardlist-wrap .card .body .box-wrap .box .color-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  margin-right: 4px;
}
.cardlist-wrap .card .body .box-wrap .box.child01 {
  width: 20%;
}
.cardlist-wrap .card .body .box-wrap .box.child02 {
  width: 20%;
}
.cardlist-wrap .card .body .box-wrap .box.child03 {
  width: 60%;
}
.cardlist-wrap .card-openclose {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 15px;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 20px;
}
.cardlist-wrap .card-openclose:hover {
  transition: 0.3s;
}
.cardlist-wrap .card-openclose .head {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background-color: #EFF1F4;
  border-bottom: solid 1px #DCE3E6;
  font-weight: 200;
  cursor: pointer;
  color: #0070C9;
  border: solid 1px #DCE3E6;
}
.cardlist-wrap .card-openclose .head:hover {
  background-color: #E9EDF4;
  border: solid 1px #90ACB9;
}
.cardlist-wrap .card-openclose .head .year {
  font-size: 14px;
  font-weight: 200;
  padding-right: 4px;
}
.cardlist-wrap .card-openclose .head .day {
  font-size: 18px;
  padding-right: 4px;
}
.cardlist-wrap .card-openclose .head .week {
  font-size: 14px;
}
.cardlist-wrap .card-openclose .head .schoolname {
  font-weight: 300;
}
.cardlist-wrap .card-openclose .head .schoolname::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: solid 2px #0070C9;
  border-right: solid 2px #0070C9;
  transform: rotate(45deg);
  margin-left: 20px;
}
.cardlist-wrap .card-openclose .body {
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
}
.cardlist-wrap .card-openclose .body .box-wrap {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  border-bottom: solid 1px #DCE3E6;
}
.cardlist-wrap .card-openclose .body .box-wrap:last-of-type {
  border-bottom: none;
}
.cardlist-wrap .card-openclose .body .box-wrap .box {
  padding: 10px 30px;
  border-right: solid 1px #DCE3E6;
  /*教室色マーク*/
}
.cardlist-wrap .card-openclose .body .box-wrap .box:last-of-type {
  border-right: none;
}
.cardlist-wrap .card-openclose .body .box-wrap .box p {
  margin: 0.2em;
}
.cardlist-wrap .card-openclose .body .box-wrap .box ul {
  margin-left: 10px;
}
.cardlist-wrap .card-openclose .body .box-wrap .box ul li {
  list-style: inside;
}
.cardlist-wrap .card-openclose .body .box-wrap .box .color-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  margin-right: 4px;
}
.cardlist-wrap .card-openclose .body .box-wrap .box.child01 {
  width: 20%;
}
.cardlist-wrap .card-openclose .body .box-wrap .box.child02 {
  width: 20%;
}
.cardlist-wrap .card-openclose .body .box-wrap .box.child03 {
  width: 60%;
}

/*---------------------------------
モーダル：フォームタイプ（新規登録などに利用）
----------------------------------*/
.modal_formtype {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 600px;
  height: 500px;
  border-radius: 2px;
  background-color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 99999999999;
}
.modal_formtype .modalttl,.modal_formtype .e-modalttl {
  　font-weight: bold !important;
  font-size: 20px;
  border-bottom: solid 1px #000;
  padding-bottom: 8px;
  font-weight: 500;
}
.modal_formtype .modalttl .arign-r,.modal_formtype .e-modalttl .arign-r {
  display: inline-block;
  float: right;
  text-align: right;
  font-size: 16px;
  color: #455A64;
  padding-top: 8px;
}
.modal_formtype .modalttl span,.modal_formtype .e-modalttl span {
  font-weight: 300;
  font-size: 16px;
  padding-left: 10px;
}
.modal_formtype .form-wrap {
  width: 96%;
  max-height: 400px;
  overflow: scroll;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0px 20px 100px 20px;
}
.modal_formtype .form-wrap .labeltype {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  border-bottom: dashed 1px #DCE3E6;
  padding: 10px 0;
}
.modal_formtype .form-wrap .labeltype legend {
  color: #909090;
  width: 25%;
  height: 26px;
  line-height: 26px;
  font-weight: 200;
}
.modal_formtype .form-wrap .labeltype p {
  margin: 0;
  height: auto;
  line-height: 26px;
}
.modal_formtype .form-wrap .group {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  border-bottom: dashed 1px #DCE3E6;
  padding: 10px 0;
}
.modal_formtype .form-wrap .group legend {
  color: #909090;
  width: 25%;
  height: 40px;
  line-height: 40px;
  font-weight: 300;
}
.modal_formtype .form-wrap .group input {
  border: none;
  background: none;
}
.modal_formtype .form-wrap .group .select-wrap {
  position: relative;
}
.modal_formtype .form-wrap .group select {
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
}
.modal_formtype .form-wrap .group .selectarrow:before {
  position: absolute;
  right: 10px;
  top: 0px;
  content: "\f123";
  font-family: "IonIcons";
  line-height: 33px;
  color: #DCE3E6;
  pointer-events: none;
}
.modal_formtype .form-wrap .group .form_input {
  height: 40px;
  width: 80%;
  line-height: 40px;
  padding: 0 15px;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #ccc;
}
.modal_formtype .form-wrap .group .datepick {
  width: 80%;
  padding: 0 15px;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  adding: 0 15px;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #ccc;
}
.modal_formtype .modalbtn-box {
  position: absolute;
  bottom: 0;
  width: 94%;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify;
  /*--- IE10 ---*/
  -webkit-justify-content: space-between;
  /*--- safari（PC）用 ---*/
  justify-content: space-between;
  -webkit-box-align: center;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-align: center;
  /*--- IE10 ---*/
  -webkit-align-items: center;
  /*--- safari（PC）用 ---*/
  align-items: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: solid 2px #ddd;
  margin-left: 0px;
}

/*---------------------------------
スクールシフト登録カードエリア
----------------------------------*/
.school-shift-wrap {
  display: table;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 60px;
}
.school-shift-wrap .school {
  position: relative;
  width: 30%;
  height: 400px;
  float: left;
  overflow: auto;
  background-color: #fff;
  box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  margin-right: 4.99%;
}
.school-shift-wrap .school:nth-child(3n) {
  margin-right: 0;
}
.school-shift-wrap .school .head {
  position: sticky;
  top: 0;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  color: #fff;
  padding: 0 20px;
}
.school-shift-wrap .school .shift-box {
  width: 85%;
  margin: auto;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}
.school-shift-wrap .school .shift-box:last-of-type {
  border-bottom: none;
}
.school-shift-wrap .school .shift-box .day {
  width: 50%;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 18px;
}
.school-shift-wrap .school .shift-box .day .year {
  font-size: 14px;
  font-weight: 300;
  padding-right: 5px;
}
.school-shift-wrap .school .shift-box .day .week {
  margin-left: -5px;
  font-size: 14px;
}
.school-shift-wrap .school .shift-box .time-wrap {
  width: 50%;
  box-sizing: border-box;
}
.school-shift-wrap .school .shift-box .time-wrap label {
  width: 100%;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
  cursor: pointer;
  color: #0070C9;
  height: 30px;
  line-height: 30px;
  border: 1px solid #0070C9;
  border-radius: 4px;
}
.school-shift-wrap .school .shift-box .time-wrap label:hover {
  background-color: #f5f5f5;
}
.school-shift-wrap .school .shift-box .time-wrap input {
  display: none;
}
.school-shift-wrap .school .shift-box .time-wrap .check_box:checked + .label {
  background-color: #67757C;
  border: 1px solid #67757C;
  color: #fff;
}

/*固定ボタン*/
.fix-btn-wrap {
  height: 100px;
  position: relative;
  z-index: 13;
  margin-bottom: 0;
}
.fix-btn-wrap .fix-area {
  position: fixed;
  bottom: 0px;
  height: 60px;
  width: 100%;
  border-top: solid 1px #ddd;
  background-color: rgba(255, 255, 255, 0.9);
}
.fix-btn-wrap .fix-area a {
  width: 30%;
  margin: 15px auto;
}

@media screen and (max-width: 768px) {
  /*---------------------------------
タブと教室セレクトエリア SP
----------------------------------*/
  @font-face {
    font-family: "IonIcons";
    src: url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1");
    src: url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.1") format("woff"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  .tab-area {
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin: 20px 0 20px 0;
  }
  .tab-area .tab p {
    font-size: 16px;
    line-height: 1.5rem;
    width: 80%;
    margin: auto;
  }
  .tab-area .tab p span {
    font-weight: 200;
    font-size: 12px;
    padding-left: 0px;
  }
  .tab-area .tab .btn {
    width: 50%;
    box-sizing: border-box;
    border: 1px solid #333;
    display: inline-block;
    padding: 5px;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease;
    font-size: 12px;
  }
  .tab-area .school-select {
    justify-content: center;
    align-items: center;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    margin-bottom: 20px;
    font-size: 12px;
  }
  .tab-area .school-select select {
    outline: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: #fff;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 33px;
    padding: 0px 30px 0 10px;
    border: 1px solid #ddd;
    color: #000;
    width: 100%;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 14px;
  }

  /*---------------------------------
  カレンダー：ペジャー SP
  ----------------------------------*/
  .month-switch-area {
    margin-top: 20px;
  }
  .month-switch-area .box {
    display: inline;
    justify-content: center;
    align-items: center;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    margin: 20px 0 10px 0;
  }
  .month-switch-area .box .indicate {
    font-size: 17px;
  }
  .month-switch-area .box .indicate .year {
    padding-right: 10px;
  }
  .month-switch-area .box .indicate .daymonth {
    font-size: 24px;
    font-weight: 400;
  }
  .month-switch-area .box .prev, .month-switch-area .box .next {
    font-size: 24px;
  }
  .month-switch-area a {
    display: block;
    margin-top: 0px;
    font-size: 18px;
  }

  /*---------------------------------
テーブルタイプ一覧エリア
----------------------------------*/
  .cardlist-wrap {
    box-sizing: border-box;
    margin-bottom: 60px;
  }
  .cardlist-wrap .card {
    display: block;
    width: 100%;
  }
  .cardlist-wrap .card .head {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border-right: none;
    border-bottom: solid 1px #DCE3E6;
  }
  .cardlist-wrap .card .body {
    width: 100%;
  }
  .cardlist-wrap .card .body .box-wrap {
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    border-bottom: solid 1px #DCE3E6;
  }
  .cardlist-wrap .card .body .box-wrap .box {
    padding: 10px 5px;
    border-right: solid 1px #DCE3E6;
    /*教室色マーク*/
  }
  .cardlist-wrap .card .body .box-wrap .box p {
    font-size: 14px;
    margin: 0.2em;
  }
  .cardlist-wrap .card .body .box-wrap .box ul {
    display: block;
    width: 100%;
    margin-left: 3px;
  }
  .cardlist-wrap .card .body .box-wrap .box ul li {
    display: block;
    width: 100%;
    list-style: inside;
  }
  .cardlist-wrap .card .body .box-wrap .box .color-mark {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    margin-right: 4px;
  }
  .cardlist-wrap .card-openclose {
    display: block;
    width: 100%;
  }
  .cardlist-wrap .card-openclose .head {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border-right: solid 1px #DCE3E6;
    border-bottom: solid 1px #DCE3E6;
  }
  .cardlist-wrap .card-openclose .body {
    width: 100%;
  }
  .cardlist-wrap .card-openclose .body .box-wrap {
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    border-bottom: solid 1px #DCE3E6;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box {
    padding: 10px 5px;
    border-right: solid 1px #DCE3E6;
    /*教室色マーク*/
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box p {
    font-size: 14px;
    margin: 0.2em;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box ul {
    margin-left: 3px;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box ul li {
    list-style: inside;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box .color-mark {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    margin-right: 4px;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box.child01 {
    width: 20%;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box.child02 {
    width: 35%;
  }
  .cardlist-wrap .card-openclose .body .box-wrap .box.child03 {
    width: 45%;
  }

  /*---------------------------------
  モーダル：フォームタイプ（新規登録などに利用）
  ----------------------------------*/
  .modal_formtype {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 400px;
    border-radius: 2px;
    background-color: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: auto;
  }
  .modal_formtype .modalttl,.modal_formtype .e-modalttl {
    　font-weight: bold !important;
    font-size: 16px;
    margin-bottom: 0;
  }
  .modal_formtype .form-wrap {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    padding: 0px 10px 0px 10px;
  }
  .modal_formtype .form-wrap .group {
    display: block;
    border-bottom: none;
    padding: 10px 0;
  }
  .modal_formtype .form-wrap .group legend {
    color: #909090;
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-weight: 300;
    font-size: 12px;
  }
  .modal_formtype .form-wrap .group input {
    border: none;
    background: none;
    font-weight: 200;
  }
  .modal_formtype .form-wrap .group .select-wrap {
    position: relative;
  }
  .modal_formtype .form-wrap .group select {
    -webkit-appearance: none;
    /* ベンダープレフィックス(Google Chrome、Safari用) */
    -moz-appearance: none;
    /* ベンダープレフィックス(Firefox用) */
    appearance: none;
    /* 標準のスタイルを無効にする */
  }
  .modal_formtype .form-wrap .group .selectarrow:before {
    position: absolute;
    right: 10px;
    top: 0px;
    content: "\f123";
    font-family: "IonIcons";
    line-height: 33px;
    color: #DCE3E6;
    pointer-events: none;
  }
  .modal_formtype .form-wrap .group .form_input {
    height: 40px;
    width: 100%;
    line-height: 40px;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 4px;
    border: solid 1px #ccc;
    font-size: 16px;
    font-weight: 200;
  }
  .modal_formtype .modalbtn-box {
    position: absolute;
    bottom: 0;
    width: 94%;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    border-top: solid 1px #ddd;
    margin-left: 0px;
  }
  .modal_formtype .modalbtn-box .button {
    margin: 10px 0;
  }

  /*---------------------------------
  スクールシフト登録カードエリア　SP
  ----------------------------------*/
  .school-shift-wrap {
    display: table;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 60px;
  }
  .school-shift-wrap .school {
    position: relative;
    width: 94%;
    margin: 0 auto 50px auto;
    height: auto;
    float: none;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0 8px 15px -6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
  }
  .school-shift-wrap .school:nth-child(3n) {
    margin: 0 auto 50px auto;
  }
  .school-shift-wrap .school .head {
    position: sticky;
    top: 0;
    box-sizing: border-box;
    height: 34px;
    line-height: 34px;
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
  }
  .school-shift-wrap .school .shift-box {
    width: 85%;
    margin: auto;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    box-sizing: border-box;
    padding: 20px 0 10px 0;
    border-bottom: 1px dotted #ccc;
  }
  .school-shift-wrap .school .shift-box .day {
    width: 50%;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 16px;
  }
  .school-shift-wrap .school .shift-box .day .year {
    font-size: 12px;
    font-weight: 300;
    padding-right: 5px;
  }
  .school-shift-wrap .school .shift-box .day .week {
    margin-left: -5px;
    font-size: 12px;
  }
  .school-shift-wrap .school .shift-box .time-wrap {
    width: 50%;
    box-sizing: border-box;
  }
  .school-shift-wrap .school .shift-box .time-wrap label {
    width: 100%;
    margin: 0 auto 10px auto;
    display: block;
    text-align: center;
    cursor: pointer;
    color: #0070C9;
    height: 26px;
    line-height: 26px;
    border: 1px solid #0070C9;
    border-radius: 4px;
    font-size: 14px;
  }
  .school-shift-wrap .school .shift-box .time-wrap input {
    display: none;
  }
  .school-shift-wrap .school .shift-box .time-wrap .check_box:checked + .label {
    background-color: #67757C;
    border: 1px solid #67757C;
    color: #fff;
  }

  /*固定ボタン*/
  .fix-btn-wrap .fix-area {
    position: fixed;
    bottom: 0px;
    z-index: 70;
    height: auto;
    width: 100%;
    border-top: solid 1px #ddd;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .fix-btn-wrap .fix-area a {
    width: 80%;
    margin: 15px auto;
  }
  
  .headwrap .logoBox {
    display: none;
  }
}
/*max-width:750px*/
/*ランドスケープ時*/
/*------------------------------------------------------------------------
 シート
-------------------------------------------------------------------------*/
.btn-box {
  justify-content: center;
  align-items: center;
  display: flex;
}
.btn-box a {
  text-decoration: none;
}

.personal-wrap {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #DCE3E6;
  border-radius: 4px;
  margin-top: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
}
.personal-wrap .color-none-btn {
  width: 85%;
  margin: 0px auto;
  padding: 20px 0px 60px 0px;
}
.personal-wrap .color-gray {
  background-color: #EFF1F4;
  border: solid 1px #DCE3E6;
  border-radius: 2px;
}
.personal-wrap .color-none, .personal-wrap .color-gray {
  width: 80%;
  margin: 20px auto;
  padding: 20px 40px 60px 40px;
}
.personal-wrap .color-none .item-wrap .info-ttl, .personal-wrap .color-gray .item-wrap .info-ttl {
  font-size: 22px;
  font-weight: 300;
  margin-top: 0;
}
.personal-wrap .color-none .item-wrap .info-sub-ttl, .personal-wrap .color-gray .item-wrap .info-sub-ttl {
  font-size: 22px;
  font-weight: 300;
  margin-top: 40px;
}
.personal-wrap .color-none .item-wrap .info-sub-ttl .note, .personal-wrap .color-gray .item-wrap .info-sub-ttl .note {
  font-size: 16px;
  padding-left: 15px;
  font-weight: 100;
}
.personal-wrap .color-none .item-wrap .info-sub-ttl .plural, .personal-wrap .color-gray .item-wrap .info-sub-ttl .plural {
  font-size: 14px;
  color: #909090;
  padding-left: 5px;
  font-weight: 100;
}
.personal-wrap .color-none .item-wrap .item-box-label, .personal-wrap .color-gray .item-wrap .item-box-label {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  border-bottom: solid 1px #DCE3E6;
  padding: 8px 0;
}
.personal-wrap .color-none .item-wrap .item-box-label:first-of-type, .personal-wrap .color-gray .item-wrap .item-box-label:first-of-type {
  border-top: solid 1px #DCE3E6;
}
.personal-wrap .color-none .item-wrap .item-box-label legend, .personal-wrap .color-gray .item-wrap .item-box-label legend {
  display: block;
  width: 30%;
  box-sizing: border-box;
  font-size: 16px;
  color: #909090;
  height: 30px;
  line-height: 30px;
  font-weight: 300;
}
.personal-wrap .color-none .item-wrap .item-box-label p, .personal-wrap .color-gray .item-wrap .item-box-label p {
  font-size: 16px;
  color: #333;
  height: 30px;
  line-height: 30px;
  height: auto;
  font-weight: 300;
  margin: 0;
}
.personal-wrap .color-none .item-wrap .item-box, .personal-wrap .color-gray .item-wrap .item-box {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  border-bottom: solid 1px #DCE3E6;
  padding: 20px 0;
}
.personal-wrap .color-none .item-wrap .item-box:first-of-type, .personal-wrap .color-gray .item-wrap .item-box:first-of-type {
  border-top: solid 1px #DCE3E6;
}
.personal-wrap .color-none .item-wrap .item-box .cal-show, .personal-wrap .color-gray .item-wrap .item-box .cal-show {
  display: block;
  width: 30%;
  height: 260px;
  background-color: #f7f7f7;
}
.personal-wrap .color-none .item-wrap .item-box .datalist, .personal-wrap .color-gray .item-wrap .item-box .datalist {
  width: 50%;
  box-sizing: border-box;
  height: 260px;
  resize: vertical;
  border: solid 1px #ccc;
  border-radius: 4px;
  padding: 8px 20px;
}
.personal-wrap .color-none .item-wrap .item-box .datalist.error, .personal-wrap .color-gray .item-wrap .item-box .datalist.error {
  border: solid 1px #F5585E;
  background-color: #F8EAEB;
}
.personal-wrap .color-none .item-wrap .item-box legend, .personal-wrap .color-gray .item-wrap .item-box legend {
  display: block;
  width: 35%;
  box-sizing: border-box;
  font-size: 16px;
  color: #909090;
  height: 40px;
  line-height: 40px;
  font-weight: 300;
}
.personal-wrap .color-none .item-wrap .item-box legend .required, .personal-wrap .color-gray .item-wrap .item-box legend .required {
  color: #F80000;
  padding-left: 4px;
  font-size: 12px;
}
.personal-wrap .color-none .item-wrap .item-box legend .plural, .personal-wrap .color-gray .item-wrap .item-box legend .plural {
  font-weight: 100;
  color: #909090;
  padding-left: 4px;
  font-size: 12px;
}
.personal-wrap .color-none .item-wrap .item-box input, .personal-wrap .color-gray .item-wrap .item-box input {
  box-sizing: border-box;
  border: none;
  background: none;
}
.personal-wrap .color-none .item-wrap .item-box input.error, .personal-wrap .color-gray .item-wrap .item-box input.error {
  border: solid 1px #F5585E;
  background-color: #F8EAEB;
}
.personal-wrap .color-none .item-wrap .item-box .select-wrap, .personal-wrap .color-gray .item-wrap .item-box .select-wrap {
  position: relative;
}
.personal-wrap .color-none .item-wrap .item-box select, .personal-wrap .color-gray .item-wrap .item-box select {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  background: #eee;
  background: url(../img/select-arrow.svg) no-repeat;
  background: url(../img/select-arrow.svg) no-repeat;
  background-position: 98% 10px;
  background-size: 18px, 100%;
}
.personal-wrap .color-none .item-wrap .item-box .selectarrow:before, .personal-wrap .color-gray .item-wrap .item-box .selectarrow:before {
  position: absolute;
  right: 10px;
  top: 0px;
  content: "\f123";
  font-family: "IonIcons";
  line-height: 33px;
  color: #DCE3E6;
  pointer-events: none;
}
.personal-wrap .color-none .item-wrap .item-box .form_input, .personal-wrap .color-gray .item-wrap .item-box .form_input {
  height: 40px;
  width: 80%;
  line-height: 40px;
  padding: 0 15px;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #ccc;
}
.personal-wrap .color-none .item-wrap .item-box .form_input.fromto, .personal-wrap .color-gray .item-wrap .item-box .form_input.fromto {
  width: 35%;
}
.personal-wrap .color-none .item-wrap .item-box .form_input.error, .personal-wrap .color-gray .item-wrap .item-box .form_input.error {
  border: solid 1px #F5585E;
  background-color: #F8EAEB;
}
.personal-wrap .color-none .item-wrap .item-box textarea, .personal-wrap .color-gray .item-wrap .item-box textarea {
  width: 80%;
  box-sizing: border-box;
  height: 140px;
  resize: vertical;
  border: solid 1px #ccc;
  border-radius: 4px;
  padding: 8px 20px;
}
.personal-wrap .color-none .item-wrap .item-box textarea.error, .personal-wrap .color-gray .item-wrap .item-box textarea.error {
  border: solid 1px #F5585E;
  background-color: #F8EAEB;
}
.personal-wrap .color-none .item-wrap .item-box .datepick, .personal-wrap .color-gray .item-wrap .item-box .datepick {
  width: 80%;
  box-sizing: border-box;
  height: 40px;
  resize: vertical;
  border: solid 1px #ccc;
  border-radius: 4px;
  padding: 8px 20px;
}
.personal-wrap .color-none .item-wrap .item-box .datepick-input, .personal-wrap .color-gray .item-wrap .item-box .datepick-input {
  display: none;
}
.personal-wrap .color-none .item-wrap .item-box .hyphen, .personal-wrap .color-gray .item-wrap .item-box .hyphen {
  width: 10%;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  color: #ccc;
}
.personal-wrap .color-none .item-wrap .item-box .week-box, .personal-wrap .color-gray .item-wrap .item-box .week-box {
  display: flex;
  width: 80%;
  padding-top: 10px;
}
.personal-wrap .color-none .item-wrap .item-box .week-box label, .personal-wrap .color-gray .item-wrap .item-box .week-box label {
  display: inline-block;
  margin-right: 20px;
}
.personal-wrap .color-none .item-wrap .item-box .vertical-box, .personal-wrap .color-gray .item-wrap .item-box .vertical-box {
  width: 80%;
  padding-top: 10px;
}

.error {
  border: solid 1px #F5585E;
  background-color: #F8EAEB;
}

/*------------------------------------------------------------------------
 シフト編集・新規作成画面：シフト選択アコーディオン
-------------------------------------------------------------------------*/
.week-time-select-wrap .week-box {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 15px;
  border-radius: 2px;
  cursor: pointer;
}
.week-time-select-wrap .week-box:hover {
  transition: 0.3s;
}
.week-time-select-wrap .week-box .week-head {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background-color: #EFF1F4;
  border-bottom: solid 1px #DCE3E6;
  font-weight: 200;
  cursor: pointer;
  color: #0070C9;
  border: solid 1px #DCE3E6;
}
.week-time-select-wrap .week-box .week-head:hover {
  background-color: #E9EDF4;
  border: solid 1px #90ACB9;
}
.week-time-select-wrap .week-box .week-head .week-ttl {
  font-weight: 300;
}
.week-time-select-wrap .week-box .week-head .week-ttl::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: solid 2px #0070C9;
  border-right: solid 2px #0070C9;
  transform: rotate(45deg);
  margin-left: 20px;
}
.week-time-select-wrap .week-box .body {
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
}
.week-time-select-wrap .week-box .body:last-of-type {
  border-bottom: none;
}

/*------------------------------------------------------------------------
 入金詳細カードエリア
-------------------------------------------------------------------------*/
.card-wrap-ttl {
  color: #455A64;
  font-size: 18px;
  padding: 0;
  margin: 10px 0;
}

.receipt-card-wrap {
  width: 100%;
  min-width: 1000px;
  display: table;
}
.receipt-card-wrap .receipt {
  width: 24.2%;
  box-sizing: border-box;
  float: left;
  margin-right: 1%;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  border: solid 1px #DCE3E6;
  color: #455A64;
}
.receipt-card-wrap .receipt:nth-child(4) {
  margin-right: 0;
}
.receipt-card-wrap .receipt.total-card {
  border-left: solid 1px #455A64;
  border-top: solid 3px #455A64;
}
.receipt-card-wrap .receipt.total-card.per100 {
  border-left: solid 1px #069865;
  border-top: solid 3px #069865;
}
.receipt-card-wrap .receipt .count {
  display: flex;
}
.receipt-card-wrap .receipt .count .school-name {
  width: 60%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 100;
  border-bottom: solid 1px #DCE3E6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.receipt-card-wrap .receipt .count .total {
  width: 60%;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 200;
  padding-top: 2px;
}
.receipt-card-wrap .receipt .count .number {
  width: 40%;
  box-sizing: border-box;
  font-size: 22px;
  font-weight: 400;
  text-align: right;
}
.receipt-card-wrap .receipt .count .number .slash {
  font-size: 20px;
  font-weight: 100;
  padding: 0 5px;
}
.receipt-card-wrap .receipt .count .number .people {
  font-size: 14px;
  font-weight: 100;
  padding-left: 5px;
}

/*------------------------プログレスバー-------------------------*/
.per100 {
  color: #069865;
}

.progress {
  width: 100%;
  height: 20px;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 14px;
  border: solid 2px #909090;
}
.progress.per100 {
  border: solid 2px #069865;
}
.progress .min {
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 100;
  padding-top: 4px;
}
.progress .max {
  display: block;
  float: right;
  font-size: 12px;
  font-weight: 100;
  padding-top: 4px;
}

.progress-bar {
  transition: width 0.5s linear;
  border-radius: 14px;
  height: 16px;
  margin-top: 2px;
  box-sizing: border-box;
  background-color: #909090;
  transform: scale(0.98);
}
.progress-bar.per100 {
  box-sizing: border-box;
  background-color: #069865;
}

@media screen and (max-width: 768px) {
  .btn-box {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .btn-box a {
    text-decoration: none;
  }

  .personal-wrap {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border: solid 1px #DCE3E6;
    border-radius: 4px;
    margin-top: 40px;
    margin-bottom: 60px;
    padding-bottom: 20px;
    padding-top: 0;
  }
  .personal-wrap .color-none-btn {
    width: 90%;
    margin: 0px auto;
    padding: 20px 0px 0px 0px;
  }
  .personal-wrap .color-gray {
    background-color: #EFF1F4;
    border: solid 1px #DCE3E6;
    border-radius: 2px;
  }
  .personal-wrap .color-none, .personal-wrap .color-gray {
    width: 100%;
    box-sizing: border-box;
    margin: 0px auto;
    padding: 20px 20px 60px 20px;
  }
  .personal-wrap .color-none .item-wrap, .personal-wrap .color-gray .item-wrap {
    width: 100%;
  }
  .personal-wrap .color-none .item-wrap .info-ttl, .personal-wrap .color-gray .item-wrap .info-ttl {
    font-size: 18px;
    font-weight: 300;
    padding-left: 1%;
  }
  .personal-wrap .color-none .item-wrap .item-box, .personal-wrap .color-gray .item-wrap .item-box {
    width: 98%;
    margin: auto;
    display: block;
    border-bottom: solid 1px #DCE3E6;
    padding: 10px 0;
  }
  .personal-wrap .color-none .item-wrap .item-box:first-of-type, .personal-wrap .color-gray .item-wrap .item-box:first-of-type {
    border-top: solid 1px #DCE3E6;
  }
  .personal-wrap .color-none .item-wrap .item-box legend, .personal-wrap .color-gray .item-wrap .item-box legend {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    color: #909090;
    height: 34px;
    line-height: 34px;
    font-weight: 300;
  }
  .personal-wrap .color-none .item-wrap .item-box legend .required, .personal-wrap .color-gray .item-wrap .item-box legend .required {
    color: #F80000;
    padding-left: 4px;
    font-size: 12px;
  }
  .personal-wrap .color-none .item-wrap .item-box legend .plural, .personal-wrap .color-gray .item-wrap .item-box legend .plural {
    font-weight: 100;
    color: #909090;
    padding-left: 4px;
    font-size: 12px;
  }
  .personal-wrap .color-none .item-wrap .item-box input, .personal-wrap .color-gray .item-wrap .item-box input {
    font-size: 16px;
    width: 120%;
    box-sizing: border-box;
  }
  .personal-wrap .color-none .item-wrap .item-box input.error, .personal-wrap .color-gray .item-wrap .item-box input.error {
    border: solid 1px #F5585E;
    background-color: #F8EAEB;
  }
  .personal-wrap .color-none .item-wrap .item-box .select-wrap, .personal-wrap .color-gray .item-wrap .item-box .select-wrap {
    position: relative;
  }
  .personal-wrap .color-none .item-wrap .item-box select, .personal-wrap .color-gray .item-wrap .item-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    background: #eee;
    background: url(../img/select-arrow.svg) no-repeat;
    background: url(../img/select-arrow.svg) no-repeat;
    background-position: 98% 10px;
    background-size: 18px, 100%;
  }
  .personal-wrap .color-none .item-wrap .item-box .selectarrow:before, .personal-wrap .color-gray .item-wrap .item-box .selectarrow:before {
    position: absolute;
    right: 10px;
    top: 0px;
    content: "\f123";
    font-family: "IonIcons";
    line-height: 33px;
    color: #DCE3E6;
    pointer-events: none;
  }
  .personal-wrap .color-none .item-wrap .item-box .form_input, .personal-wrap .color-gray .item-wrap .item-box .form_input {
    height: 40px;
    width: 100%;
    line-height: 40px;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 4px;
    border: solid 1px #ccc;
  }
  .personal-wrap .color-none .item-wrap .item-box .form_input.fromto, .personal-wrap .color-gray .item-wrap .item-box .form_input.fromto {
    width: 45%;
  }
  .personal-wrap .color-none .item-wrap .item-box .form_input.error, .personal-wrap .color-gray .item-wrap .item-box .form_input.error {
    border: solid 1px #F5585E;
    background-color: #F8EAEB;
  }
  .personal-wrap .color-none .item-wrap .item-box textarea, .personal-wrap .color-gray .item-wrap .item-box textarea {
    width: 100%;
    box-sizing: border-box;
    height: 100px;
    resize: vertical;
    border: solid 1px #ccc;
    border-radius: 4px;
    padding: 8px 10px;
  }
  .personal-wrap .color-none .item-wrap .item-box textarea.error, .personal-wrap .color-gray .item-wrap .item-box textarea.error {
    border: solid 1px #F5585E;
    background-color: #F8EAEB;
  }
  .personal-wrap .color-none .item-wrap .item-box .datepick, .personal-wrap .color-gray .item-wrap .item-box .datepick {
    width: 80%;
    box-sizing: border-box;
    height: 40px;
    resize: vertical;
    border: solid 1px #ccc;
    border-radius: 4px;
    padding: 8px 20px;
  }
  .personal-wrap .color-none .item-wrap .item-box .datepick-input, .personal-wrap .color-gray .item-wrap .item-box .datepick-input {
    display: none;
  }
  .personal-wrap .color-none .item-wrap .item-box .hyphen, .personal-wrap .color-gray .item-wrap .item-box .hyphen {
    width: 6%;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
    color: #ccc;
  }
  .personal-wrap .color-none .item-wrap .item-box .week-box, .personal-wrap .color-gray .item-wrap .item-box .week-box {
    display: block;
    width: 100%;
    padding-top: 10px;
  }
  .personal-wrap .color-none .item-wrap .item-box .week-box label, .personal-wrap .color-gray .item-wrap .item-box .week-box label {
    display: inline-block;
    margin-right: 20px;
  }
  .personal-wrap .color-none .item-wrap .item-box .vertical-box, .personal-wrap .color-gray .item-wrap .item-box .vertical-box {
    width: 80%;
    padding-top: 10px;
  }
}
/*max-width:750px*/
/*ランドスケープ時*/
/*-------------------------------------------------------------------
カレンダー
-------------------------------------------------------------------*/
.sun {
  color: #F5585E;
}

.sat {
  color: #3CABFC;
}

.calendar-wrap {
  width: 100%;
  min-width: 700px;
  box-sizing: border-box;
  margin-bottom: 60px;
  /*
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  */
}
.calendar-wrap .week {
  justify-content: space-between;
  display: flex;
  border-bottom: solid 1px #ccc;
}
.calendar-wrap .week .day {
  width: 100%;
  min-height: 120px;
  padding: 0px;
  background-color: #fff;
  border-right: solid 1px #ccc;
  box-sizing: border-box;
}
.calendar-wrap .week .day:last-of-type {
  border-right: none;
}
.calendar-wrap .week .day .weeklabel {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  height: 30px;
  line-height: 30px;
  border-bottom: solid 1px #ccc;
  background-color: #EFF1F4;
}
.calendar-wrap .week .day .date {
  height: 24px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #67757C;
  text-align: right;
  margin-bottom: 5px;
}
.calendar-wrap .week .day .date p {
  margin: 0 5px 7px 0;
}
.calendar-wrap .week .day .class-bar {
  color: #fff;
  font-size: 12px;
  height: 22px;
  line-height: 22px;
  border-radius: 4px;
  margin: 8px;
  overflow: hidden;
}
.calendar-wrap .week .day .class-bar .time {
  font-size: 14px;
  padding: 0 4px;
}
.class-badge {
  background-color: #fff;
  color: #999999;
  text-align: center;
  padding: 2px 4px;
  border-radius: 10px;
  margin-right: 4px;
  font-weight: 500;
}
.calendar-wrap .week .day .class-bar .school {
  font-size: 10px;
}

.drop-area {
  align-items: center;
  display: flex;
  width: 100%;
}
.drop-area .arrow {
  width: 30%;
  box-sizing: border-box;
  text-align: center;
  color: #ddd;
}
.drop-area .arrow span {
  display: block;
  margin: 20px auto;
}
.drop-area .arrow img {
  display: block;
  width: 40%;
  margin: 0 auto;
}
.drop-area .student-list, .drop-area .reservation {
  width: 35%;
  box-sizing: border-box;
}
.drop-area .student-list span, .drop-area .reservation span {
  font-size: 14px;
}
.drop-area .student-list .head, .drop-area .reservation .head {
  position: relative;
  height: 42px;
  line-height: 42px;
  border: solid 1px #DCE3E6;
  background-color: #DCE3E6;
}
.drop-area .student-list .head.count, .drop-area .reservation .head.count {
  font-size: 18px;
  font-weight: 400;
  padding-left: 20px;
}
.drop-area .student-list .head.count span, .drop-area .reservation .head.count span {
  font-weight: 100;
  padding: 0 5px;
}
.drop-area .student-list .head.count .small, .drop-area .reservation .head.count .small {
  font-size: 14px;
}
.drop-area .student-list .head .form_input, .drop-area .reservation .head .form_input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 30px;
  line-height: 30px;
}
.drop-area .student-list .box, .drop-area .reservation .box {
  margin-top: 0;
  padding: 0;
  height: 300px;
  border: solid 1px #DCE3E6;
  overflow: auto;
}
.drop-area .student-list .box dl, .drop-area .reservation .box dl {
  width: 100%;
  font-size: 14px;
  line-height: 2em;
}
.drop-area .student-list .box dl dt, .drop-area .reservation .box dl dt {
  width: 100%;
  margin: 0px auto;
  padding: 0 10px;
  box-sizing: border-box;
  font-weight: 400;
  background-color: #f7f7f7;
}
.drop-area .student-list .box dl dd, .drop-area .reservation .box dl dd {
  width: 80%;
  margin: 0px auto;
  padding: 0 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.drop-area .student-list .box dl dd:hover, .drop-area .reservation .box dl dd:hover {
  background-color: #EFF1F4;
  border-radius: 4px;
}

#target {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01579B;
  color: #FFF;
  border: solid 1px #000;
}

#dropArea1 {
  width: 100px;
  height: 100px;
  margin: 10px 0;
  border: dotted 1px #000;
}

#dropArea2 {
  width: 100px;
  height: 100px;
  margin: 10px 0;
  border: dotted 1px #000;
}

/*max-width:750px*/
/*ランドスケープ時*/
/*---------------------------------
common
----------------------------------*/
a {
  text-decoration: none;
  cursor: pointer;
}

/*---------------------------------
スマホのみ：生徒一覧エリア
----------------------------------*/
.student-list-wrap {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.student-list-wrap .tab-area {
  width: 100%;
  font-size: 14px;
  overflow-y: scroll;
  background-color: #EFF1F4;
  border-top: solid 1px #DCE3E6;
  border-bottom: solid 1px #DCE3E6;
}
.student-list-wrap .tab-area ul {
  flex-wrap: nowrap;
  display: -webkit-flex;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  box-sizing: border-box;
}
.student-list-wrap .tab-area ul li {
  padding: 10px;
  border-right: solid 1px #ddd;
  list-style: none;
  width: auto;
  box-sizing: border-box;
  white-space: nowrap;
}
.student-list-wrap .tab-area ul li:first-of-type {
  border-left: solid 2px #DCE3E6;
}
.student-list-wrap .tab-area ul li a {
  display: inline-block;
  width: 100%;
  color: #0070C9;
  box-sizing: border-box;
}
.student-list-wrap .tab-area ul li a.active {
  color: #333;
  font-weight: 400;
}
.student-list-wrap .list {
  width: 100%;
  box-sizing: border-box;
}
.student-list-wrap .list .aiueo {
  width: 100%;
  padding: 2px 8px;
  margin: 0;
  box-sizing: border-box;
  background: #DCE3E6;
  font-weight: 500;
  font-size: 16px;
}
.student-list-wrap .list .name {
  position: relative;
  display: block;
  width: 100%;
  line-height: 2.4em;
  padding: 4px 8px;
  margin: 0;
  box-sizing: border-box;
  border-bottom: solid 1px #eee;
}
.student-list-wrap .list .name:last-of-type {
  border-bottom: none;
}
.student-list-wrap .list .name a {
  color: #333;
}
.student-list-wrap .list .name a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px #707070;
  border-right: solid 1px #707070;
  transform: rotate(-45deg);
}

/*---------------------------------
スマホのみ：生徒記録詳細　カードスタイル
----------------------------------*/
.record-card {
  min-width: 960px;
  border: solid 1px #DCE3E6;
  background: #fff;
  margin-bottom: 30px;
}
.record-card .head {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 40px;
  background-color: #EFF1F4;
  border-bottom: solid 1px #EFF1F4;
}
.record-card .head .date-box {
  width: 35%;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  font-size: 20px;
  font-weight: 500;
}
.record-card .head .date-box .year {
  font-size: 16px;
  font-weight: 300;
  padding-right: 10px;
}
.record-card .head .date-box .time {
  font-size: 16px;
  font-weight: 300;
  padding-left: 10px;
  padding-right: 50px;
}
.record-card .head .name-box {
  width: 60%;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  padding: 0 10px;
}
.record-card .head .name-box .student {
  width: 50%;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.record-card .head .name-box .teacher {
  width: 50%;
  font-weight: 300;
  text-align: right;
  display: block;
  display: block;
  color: #455A64;
}
.record-card .head .name-box .teacher span {
  font-size: 12px;
}
.record-card .body {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  border-top: solid 1px #DCE3E6;
  border-bottom: solid 1px #DCE3E6;
  padding: 20px 10px;
}
.record-card .body .menu {
  width: 35%;
  display: table;
  box-sizing: border-box;
  border-right: dashed 1px #DCE3E6;
}
.record-card .body .comment {
  width: 65%;
  box-sizing: border-box;
}
.record-card .body .menu, .record-card .body .comment {
  padding: 0 20px;
}
.record-card .body .menu .ttl, .record-card .body .comment .ttl {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #909090;
}
.record-card .body .menu p, .record-card .body .comment p {
  font-weight: 200;
  font-size: 16px;
  line-height: 1.4rem;
  margin: 10px 0 20px 0;
}
.record-card .foot-btn {
  padding: 0 20px;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}
.record-card .foot-btn a {
  display: block;
}

@media screen and (max-width: 768px) {
  /*---------------------------------
  スマホのみ：生徒記録詳細　カードスタイル
  ----------------------------------*/
  .record-card {
    min-width: 300px;
    width: 100%;
    border: solid 1px #DCE3E6;
    margin-bottom: 20px;
  }
  .record-card .head {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 1.8em;
    background-color: #EFF1F4;
    border-bottom: solid 1px #EFF1F4;
  }
  .record-card .head .date-box {
    width: 100%;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    font-size: 18px;
    font-weight: 500;
  }
  .record-card .head .date-box .year {
    font-size: 14px;
    font-weight: 300;
    padding-right: 10px;
  }
  .record-card .head .date-box .time {
    font-size: 14px;
    font-weight: 300;
    padding-left: 10px;
    padding-right: 0px;
  }
  .record-card .head .name-box {
    width: 100%;
    -webkit-box-pack: justify;
    /*--- Androidブラウザ用 ---*/
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    padding: 0;
    box-sizing: border-box;
  }
  .record-card .head .name-box .student {
    width: 50%;
    display: block;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .record-card .head .name-box .teacher {
    width: 50%;
    text-align: right;
    display: block;
    display: block;
    color: #455A64;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .record-card .head .name-box .teacher span {
    font-size: 12px;
  }
  .record-card .body {
    width: 100%;
    display: table;
    border-top: solid 1px #DCE3E6;
    border-bottom: solid 1px #DCE3E6;
    padding: 10px 10px;
    box-sizing: border-box;
  }
  .record-card .body .menu {
    width: 100%;
    box-sizing: border-box;
    border-right: none;
    border-bottom: dashed 1px #DCE3E6;
    margin-bottom: 10px;
  }
  .record-card .body .comment {
    width: 100%;
    box-sizing: border-box;
  }
  .record-card .body .menu, .record-card .body .comment {
    padding: 0;
  }
  .record-card .body .menu .ttl, .record-card .body .comment .ttl {
    font-size: 12px;
    font-weight: 400;
    color: #909090;
  }
  .record-card .body .menu p, .record-card .body .comment p {
    font-weight: 200;
    font-size: 14px;
    line-height: 1.4rem;
    margin: 10px 0 20px 0;
  }
  .record-card .foot-btn {
    padding: 0;
    -webkit-box-pack: justify;
    /*--- Androidブラウザ用 ---*/
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
  }
  .record-card .foot-btn a {
    margin: 10px 5px;
    display: block;
  }
}
/*max-width:768px*/
/*ランドスケープ時*/
/*---------------------------------
こ
----------------------------------*/
.dash-wrap .ttl {
  font-size: 18px;
  color: #455A64;
  font-weight: 200;
}
.dash-wrap .ttl span {
  font-size: 16px;
  color: #000;
  padding-left: 20px;
}

.col-wrap {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  min-width: 960px;
  margin-bottom: 30px;
}

.single-wrap {
  display: block;
  background: #fff;
}

/*---------------------------------
通知カードエリア
----------------------------------*/
.col-wrap.space {
  padding: 20px 50px;
}
.col-wrap .day-card {
  flex: 0.97;
  background: #fff;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 30px;
  box-sizing: border-box;
  color: #455A64;
}
.col-wrap .day-card .year {
  font-size: 14px;
  font-weight: 200;
}
.col-wrap .day-card .day {
  font-size: 26px;
  font-weight: 400;
  padding-left: 10px;
}
.col-wrap .day-card .week {
  font-size: 14px;
  font-weight: 400;
}
.col-wrap .count-area {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  flex: 2;
  width: 66.6666%;
  box-sizing: border-box;
  color: #455A64;
}
.col-wrap .count-area .total, .col-wrap .count-area .receipt {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify;
  /*--- IE10 ---*/
  -webkit-justify-content: space-between;
  /*--- safari（PC）用 ---*/
  justify-content: space-between;
  width: 50%;
  background: #fff;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 14px;
}
.col-wrap .count-area .total p, .col-wrap .count-area .receipt p {
  margin: 0;
}
.col-wrap .count-area .total .count, .col-wrap .count-area .receipt .count {
  position: relative;
}
.col-wrap .count-area .total .count .number, .col-wrap .count-area .receipt .count .number {
  font-size: 24px;
  font-weight: 400;
}
.col-wrap .count-area .total .count .nin, .col-wrap .count-area .receipt .count .nin {
  padding-left: 5px;
  font-size: 14px;
}
.col-wrap .count-area .total .count .badge, .col-wrap .count-area .receipt .count .badge {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  padding: 0 5px;
  display: inline-block;
  min-width: 26px;
  max-height: 36px;
  font-size: 18px;
  font-weight: 400;
  background-color: #E61935;
  color: #fff;
  border-radius: 20px;
  line-height: 36px;
}
.col-wrap .count-area .total {
  margin-right: 30px;
}
.col-wrap .count-area .receipt {
  color: #455A64;
}
.col-wrap .count-area .receipt .strong {
  font-weight: 400;
}

/*---------------------------------
本日の授業エリア
----------------------------------*/
.col-wrap .schedule-card {
  width: 33.3333%;
  background: #fff;
  margin-right: 30px;
  box-sizing: border-box;
}
.col-wrap .schedule-card:last-of-type {
  margin-right: 0;
}
.col-wrap .schedule-card .head {
  padding: 0 10px;
  color: #fff;
  height: 40px;
  line-height: 40px;
}
.col-wrap .schedule-card .body {
  padding: 0 10px;
  height: 300px;
  overflow: scroll;
}
.col-wrap .schedule-card .body .class {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  width: 90%;
  margin: auto;
  padding: 10px 0;
  border-bottom: solid 1px #DCE3E6;
}
.col-wrap .schedule-card .body .class .time {
  width: 45%;
  font-weight: 400;
}
.col-wrap .schedule-card .body .class .name {
  display: inline;
  width: 55%;
  margin: 0;
}
.col-wrap .schedule-card .body .class .name li {
  list-style: none;
}

/*---------------------------------
月謝未入金一覧エリア
----------------------------------*/
.space .school-name {
  width: 25%;
  color: #455A64;
  font-weight: 400;
}
.space .list {
  width: 75%;
  box-sizing: border-box;
}
.space .list table {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}
.space .list table tbody {
  width: 100%;
  display: table;
}
.space .list table tbody tr {
  width: 100%;
  border-bottom: solid 1px #DCE3E6;
  text-align: left;
  padding: 6px 10px 6px 0;
  box-sizing: border-box;
}
.space .list table tbody tr th {
  width: 30%;
  color: #455A64;
  padding: 6px 10px 6px 0;
}
.space .list table tbody tr td {
  width: 30%;
}
.space .list table tbody tr td a {
  display: inline-block;
  color: #0070C9;
}
.space .list table tbody tr td a:hover {
  text-decoration: underline;
}

/*---------------------------------
ログイン
----------------------------------*/
.login-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  height: 500px;
}
.login-wrap .ttl {
  color: #455A64;
  font-size: 30px;
  font-weight: 300;
}

.form {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 auto 100px auto;
  padding: 20px;
  text-align: center;
}
.form input {
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  margin: 0 0 20px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
}
.form input:focus {
  outline: solid 1px #333;
}
.form button {
  text-transform: uppercase;
  outline: 0;
  background: #333;
  width: 100%;
  border: 0;
  padding: 20px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  margin-bottom: 20px;
}
.form button:hover {
  background: #464646;
}
.form button:active {
  background: #464646;
}
.form button:focus {
  background: #464646;
}
.form .message {
  margin: 40px 0 0;
  font-size: 14px;
  color: #E61935;
  font-weight: 300;
}
.form a {
  display: block;
  float: left;
  color: #0070C9;
  text-decoration: none;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .dash-wrap .ttl {
    font-size: 16px;
    color: #455A64;
    font-weight: 200;
    margin: 4px 0;
  }
  .dash-wrap .ttl span {
    display: block;
    font-size: 12px;
    color: #000;
    padding-left: 0px;
  }

  .col-wrap {
    display: block;
    min-width: 300px;
    margin-bottom: 30px;
  }
  .col-wrap.space {
    padding: 10px 10px 10px 0;
  }

  /*---------------------------------
  通知カードエリア SP
  ----------------------------------*/
  .col-wrap .day-card {
    width: 100%;
    background: #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-right: 30px;
    box-sizing: border-box;
    color: #455A64;
    margin-bottom: 10px;
  }
  .col-wrap .day-card .year {
    font-size: 14px;
    font-weight: 200;
  }
  .col-wrap .day-card .day {
    font-size: 22px;
    font-weight: 400;
    padding-left: 10px;
  }
  .col-wrap .day-card .week {
    font-size: 14px;
    font-weight: 400;
  }
  .col-wrap .count-area {
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    width: 100%;
    box-sizing: border-box;
    color: #455A64;
  }
  .col-wrap .count-area .total, .col-wrap .count-area .receipt {
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    -webkit-box-pack: justify;
    /*--- Androidブラウザ用 ---*/
    -ms-flex-pack: justify;
    /*--- IE10 ---*/
    -webkit-justify-content: space-between;
    /*--- safari（PC）用 ---*/
    justify-content: space-between;
    width: 50%;
    background: #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 8px;
    box-sizing: border-box;
    font-size: 10px;
  }
  .col-wrap .count-area .total p, .col-wrap .count-area .receipt p {
    margin: 0;
  }
  .col-wrap .count-area .total .count, .col-wrap .count-area .receipt .count {
    position: relative;
  }
  .col-wrap .count-area .total .count .number, .col-wrap .count-area .receipt .count .number {
    font-size: 18px;
    font-weight: 400;
  }
  .col-wrap .count-area .total .count .nin, .col-wrap .count-area .receipt .count .nin {
    padding-left: 0px;
    font-size: 10px;
  }
  .col-wrap .count-area .total .count .badge, .col-wrap .count-area .receipt .count .badge {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 0 2px;
    display: inline-block;
    min-width: 21px;
    max-height: 25px;
    font-size: 12px;
    font-weight: 400;
    background-color: #E61935;
    color: #fff;
    border-radius: 20px;
    line-height: 25px;
  }
  .col-wrap .count-area .total {
    margin-right: 10px;
  }
  .col-wrap .count-area .receipt {
    color: #455A64;
  }
  .col-wrap .count-area .receipt .strong {
    font-weight: 400;
  }

  /*---------------------------------
  本日の授業エリア
  ----------------------------------*/
  .col-wrap .schedule-card {
    width: 100%;
    margin-right: 0;
  }
  .col-wrap .schedule-card:last-of-type {
    margin-right: 0;
  }
  .col-wrap .schedule-card .head {
    padding: 0 10px;
    color: #fff;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .col-wrap .schedule-card .body {
    padding: 0 10px;
    height: auto;
    overflow: scroll;
  }
  .col-wrap .schedule-card .body .class {
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    width: 96%;
    margin: auto;
    padding: 10px 0;
    border-bottom: solid 1px #DCE3E6;
  }
  .col-wrap .schedule-card .body .class:last-of-type {
    border-bottom: none;
  }
  .col-wrap .schedule-card .body .class .time {
    width: 45%;
    font-weight: 400;
    font-size: 14px;
  }
  .col-wrap .schedule-card .body .class .name {
    display: inline;
    width: 55%;
    margin: 0;
    font-size: 14px;
  }
  .col-wrap .schedule-card .body .class .name li {
    list-style: none;
  }

  /*---------------------------------
  月謝未入金一覧エリア
  ----------------------------------*/
  .space .school-name {
    width: 100%;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  .space .list {
    width: 100%;
    box-sizing: border-box;
  }
  .space .list table {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    padding: 0 10px;
  }
  .space .list table tbody {
    width: 100%;
  }
  .space .list table tbody tr {
    border-bottom: solid 1px #DCE3E6;
    text-align: left;
    padding: 6px 10px 6px 0;
    box-sizing: border-box;
  }
  .space .list table tbody tr th {
    width: 40%;
    color: #455A64;
    padding: 6px 10px 6px 0;
    font-size: 10px;
  }
  .space .list table tbody tr td {
    width: 30%;
  }
  .space .list table tbody tr td a {
    display: inline-block;
    color: #0070C9;
  }
  .space .list table tbody tr td a:hover {
    text-decoration: underline;
  }
}
/*max-width:750px*/
/*ランドスケープ時*/
/*---------------------------------
枠
----------------------------------*/
.user-admin-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 0;
}
.user-admin-wrap .ttl {
  font-size: 22px;
  font-weight: 300;
}

.btn-box-col {
  width: 100%;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

/*---------------------------------
ヘッダー：ユーザー管理画面用
----------------------------------*/
.home, .yoyaku, .memo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  margin: auto;
  display: block;
  width: 24px;
  height: 24px;
}

.useracc {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  display: block;
  width: 24px;
  height: 24px;
}

.home {
  background: url(../img/icon_home-white.svg);
}
.home:hover {
  background: url(../img/icon_home-gray.svg);
}

.yoyaku {
  background: url(../img/icon_yoyaku-white.svg);
}
.yoyaku:hover {
  background: url(../img/icon_yoyaku-gray.svg);
}

.memo {
  background: url(../img/icon_memo-white.svg);
}
.memo:hover {
  background: url(../img/icon_memo-gray.svg);
}

.useracc {
  background: url(../img/icon_user.svg);
}

.menu {
  position: relative;
  width: 100%;
  height: 44px;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}
.menu li {
  height: 44px;
  line-height: 44px;
  list-style: none;
  font-size: 14px;
  font-weight: 100;
  margin-right: 80px;
  box-sizing: border-box;
}
.menu li:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
  color: #B9B9B9;
}
.menu li:active {
  color: #B9B9B9;
}
.menu li:last-of-type {
  display: block;
  min-width: 240px;
  margin-left: auto;
  margin-right: 0;
  box-sizing: border-box;
}
.menu li.user-label {
  height: auto;
  line-height: 1.8em;
  padding: 18px;
  box-sizing: border-box;
  -webkit-transition: all .0s;
  transition: all .0s;
  color: #000;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu li a {
  padding-left: 18px;
  display: block;
  color: #fff;
  font-weight: 100;
  box-sizing: border-box;
}
.menu li a:hover {
  color: #999;
}
.menu li a:hover .home {
  background: url(../img/icon_home-gray.svg);
}
.menu li a.active {
  color: #999;
}
.menu li a.active .home {
  background: url(../img/icon_home-gray.svg);
}
.menu li a.active .yoyaku {
  background: url(../img/icon_yoyaku-gray.svg);
}
.menu li a.active .memo {
  background: url(../img/icon_memo-gray.svg);
}
.menu li a.user {
  color: #088BEB;
}
.menu li .menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.menu li .menu__second-level li {
  width: 100%;
  border-top: 1px solid #DCE3E6;
}
.menu li .menu__second-level li a {
  width: 100%;
}
.menu li .menu__second-level li a:hover {
  font-weight: 400;
  background: #DCE3E6;
}
.menu .menu__single {
  position: relative;
}

/*--------------------------------------------------------*/
li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  right: 10px;
  width: 100%;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

li.menu__single:hover ul.menu__second-level {
  top: 44px;
  visibility: visible;
  opacity: 1;
}

/*---------------------------------
カードタイプ一覧：ユーザー管理画面HOME
----------------------------------*/
.yoyaku-card-wrap {
  max-width: 1000px;
  margin: auto;
}
.yoyaku-card-wrap table {
  width: 100%;
  margin-top: -20px;
  border: none;
  box-sizing: border-box;
}
.yoyaku-card-wrap table thead {
  width: 100%;
  background-color: #EFF1F4;
  border: solid 1px #DCE3E6;
  border-radius: 4px;
  font-size: 12px;
  text-align: left;
  margin-bottom: 10px;
}
.yoyaku-card-wrap table thead tr {
  display: flex;
}
.yoyaku-card-wrap table thead tr th {
  flex-grow: 1;
  padding: 10px 20px;
}
.yoyaku-card-wrap table tbody {
  padding: 0;
}
.yoyaku-card-wrap table tbody tr {
  margin-top: 10px;
  display: flex;
  background-color: #fff;
  border: solid 1px #DCE3E6;
  border-radius: 4px;
}
.yoyaku-card-wrap table tbody tr td {
  position: relative;
  flex-grow: 1;
  padding: 0px 20px;
  height: 50px;
  line-height: 50px;
}
.yoyaku-card-wrap table tbody tr td:last-of-type {
  line-height: normal;
}
.yoyaku-card-wrap .news-area {
  width: 100%;
  background-color: #fff;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 16px;
}
.yoyaku-card-wrap .news-area .news {
  padding: 10px 0;
  border-bottom: solid 1px #DCE3E6;
}
.yoyaku-card-wrap .news-area .news:last-of-type {
  border-bottom: none;
}
.yoyaku-card-wrap .news-area .news .head {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}
.yoyaku-card-wrap .news-area .news .head .day {
  display: block;
  width: 140px;
}
.yoyaku-card-wrap .news-area .news .head .title {
  display: block;
  font-weight: 400;
  color: #0070C9;
  cursor: pointer;
  text-decoration: underline;
}
.yoyaku-card-wrap .news-area .news .head .title:hover {
  text-decoration: none;
}
.yoyaku-card-wrap .news-area .news .head .title:visited {
  color: #333;
}
.yoyaku-card-wrap .news-area .news .message {
  padding: 20px 0;
  display: none;
}
.radious-btn {
  display: inline-block;
  width: 100px;
  height: 24px;
  line-height: 26px;
  float: right;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: solid 1px #0070C9;
  font-size: 13px;
  text-align: center;
  margin: 8px auto 0 auto;
  padding: 4px 10px;
}
.radious-btn.desable {
  background-color: #F0F4F5;
  border: solid 1px #DBDBDB;
  color: #455A64;
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  /*---------------------------------
  ヘッダー：ユーザー管理画面用
  ----------------------------------*/
  .sp-head {
    height: 60px !important;
  }

  .home, .yoyaku, .memo {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 26px;
    height: 26px;
  }

  .useracc {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    display: block;
    width: 24px;
    height: 24px;
  }

  .home {
    background: url(../img/icon_home-white.svg);
  }
  .home:hover {
    background: url(../img/icon_home-gray.svg);
  }

  .yoyaku {
    background: url(../img/icon_yoyaku-white.svg);
  }
  .yoyaku:hover {
    background: url(../img/icon_yoyaku-gray.svg);
  }

  .memo {
    background: url(../img/icon_memo-white.svg);
  }
  .memo:hover {
    background: url(../img/icon_memo-gray.svg);
  }

  .useracc {
    background: url(../img/icon_user.svg);
  }

  .menu {
    position: relative;
    width: 100%;
    height: 60px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
  }
  .menu li {
    display: block;
    height: 60px;
    line-height: 60px;
    list-style: none;
    font-size: 5px;
    font-weight: 100;
    margin-right: 20px;
    padding: 0;
    box-sizing: border-box;
  }
  .menu li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
    color: #B9B9B9;
  }
  .menu li:active {
    color: #B9B9B9;
  }
  .menu li:nth-child(3) {
    margin-right: 0;
  }
  .menu li:last-of-type {
    display: block;
    min-width: 80px;
    margin-left: auto;
    margin-right: 0;
    box-sizing: border-box;
  }
  .menu li.user-label {
    height: auto;
    line-height: 1.8em;
    padding: 20px 10px;
    box-sizing: border-box;
    -webkit-transition: all .0s;
    transition: all .0s;
    color: #000;
    font-size: 14px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .menu li a {
    display: block;
    font-size: 12px;
    line-height: 2.6em;
    padding-left: 0px;
    text-align: center;
    color: #fff;
    font-weight: 300;
    box-sizing: border-box;
  }
  .menu li a:hover {
    color: #999;
  }
  .menu li a:hover .home {
    background: url(../img/icon_home-gray.svg);
  }
  .menu li a.active {
    color: #999;
  }
  .menu li a.active .home {
    background: url(../img/icon_home-gray.svg);
  }
  .menu li a.active .yoyaku {
    background: url(../img/icon_yoyaku-gray.svg);
  }
  .menu li a.active .memo {
    background: url(../img/icon_memo-gray.svg);
  }
  .menu li a.user {
    color: #088BEB;
    line-height: 58px;
    font-size: 16px;
  }
  .menu li .menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }
  .menu li .menu__second-level li {
    width: 100%;
    border-top: 1px solid #DCE3E6;
  }
  .menu li .menu__second-level li a:hover {
    font-weight: 400;
    background: #DCE3E6;
  }
  .menu .menu__single {
    text-align: center;
    position: relative;
    flex: 1;
  }
  .menu .menu__single a {
    text-align: center;
  }
  .menu .menu__single a .menuname {
    font-size: 12px;
    font-weight: 100;
    margin-top: 32px;
    display: block;
  }

  /*--------------------------------------------------------*/
  li.menu__single ul.menu__second-level {
    position: absolute;
    top: 60px;
    right: 0px;
    width: 400% !important;
    background: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }

  li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }

  .user-admin-wrap .ttl {
    font-size: 18px;
    font-weight: 300;
  }

  .user-admin-wrap .color-none {
    padding: 10px 10px 30px 10px;
  }
  .user-admin-wrap .color-none .item-wrap .item-box {
    border-bottom: none;
  }

  .btn-box-col {
    width: 100%;
    display: block;
  }

  /*---------------------------------
  カードタイプ一覧：ユーザー管理画面HOME
  ----------------------------------*/
  .yoyaku-card-wrap {
    max-width: 1000px;
    margin: auto;
  }
  .yoyaku-card-wrap table {
    width: 100%;
    margin-top: -20px;
    border: none;
    box-sizing: border-box;
  }
  .yoyaku-card-wrap table thead {
    width: 100%;
    background-color: #EFF1F4;
    border: solid 1px #DCE3E6;
    border-radius: 4px;
    font-size: 12px;
    text-align: left;
    margin-bottom: 10px;
  }
  .yoyaku-card-wrap table thead tr {
    display: flex;
  }
  .yoyaku-card-wrap table thead tr th {
    flex-flow: 1;
    padding: 10px 20px;
  }
  .yoyaku-card-wrap table tbody {
    padding: 0;
  }
  .yoyaku-card-wrap table tbody tr {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 10px;
    display: table;
    background-color: #fff;
    border: solid 1px #DCE3E6;
    border-radius: 4px;
  }
  .yoyaku-card-wrap table tbody tr td {
    font-size: 13px;
    display: inline-block;
    width: 50%;
    position: relative;
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
  }
  .yoyaku-card-wrap table tbody tr td:nth-child(-n+2) {
    border-bottom: dotted 1px #ddd;
  }
  .yoyaku-card-wrap table tbody tr td:nth-child(odd) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .yoyaku-card-wrap table tbody tr td:last-of-type {
    line-height: normal;
  }
  .yoyaku-card-wrap table tbody tr td .year {
    padding-right: 5px;
  }
  .yoyaku-card-wrap table tbody tr td .day, .yoyaku-card-wrap table tbody tr td .time {
    font-size: 16px;
    font-weight: 500;
    padding-right: 10px;
  }

  .radious-btn {
    display: inline-block;
    width: 80px;
    height: 6px;
    line-height: 6px;
    float: right;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 20px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: solid 1px #0070C9;
    font-size: 10px;
    text-align: center;
    margin: 8px auto 0 auto;
    padding: 8px 5px;
  }
  .radious-btn.desable {
    background-color: #F0F4F5;
    border: solid 1px #DBDBDB;
    color: #455A64;
    box-shadow: none;
  }
}
/*max-width:750px*/
/*ランドスケープ時*/
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Light.woff2) format("woff2"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Light.woff) format("woff"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Light.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Light.woff2) format("woff2"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Light.woff) format("woff"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Light.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-DemiLight.woff2) format("woff2"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-DemiLight.woff) format("woff"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-DemiLight.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: local("NotoSansJP-Regular.otf"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Regular.woff2) format("woff2"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Regular.woff) format("woff"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Regular.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Medium.woff2) format("woff2"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Medium.woff) format("woff"), url(https://fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Medium.otf) format("opentype");
}
input::placeholder {
  color: #B9B9B9;
}

/* IE */
input:-ms-input-placeholder {
  color: #B9B9B9;
}

textarea::placeholder {
  color: #B9B9B9;
}

/* IE */
textarea:-ms-input-placeholder {
  color: #B9B9B9;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.color-gray {
  background-color: #EFF1F4;
  border: solid 1px #DCE3E6;
  border-radius: 2px;
}

.mt7 {
  margin-top: 7px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mt-10 {
  display: inline-block;
  margin-top: 10px;
}

.mauto {
  display: block;
  margin: auto;
}

.pt30 {
  padding-top: 30px;
}

.fr {
  float: right;
  position: absolute;
  right: 0;
  top: -46px;
}

lh1 {
  line-height: 1.2em;
}

/*ボタン ---*/
.text-link {
  color: #0070C9;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
}
.text-link:hover {
  text-decoration: underline;
}

.button {
  display: block;
  width: 200px;
  height: 34px;
  line-height: 34px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.button:hover {
  box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.2);
}

.button-ss {
  display: block;
  width: auto;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 13px;
  text-align: center;
  margin: 0px 4px;
  padding: 4px 10px;
}

.button-ss:hover {
  box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.2);
}

.blue {
  background-color: #0070C9;
  color: white;
}

.white {
  background-color: #fff;
  color: #0070C9;
  border: solid 1px #0070C9 !important;
}

.red {
  background-color: #E61935;
  color: #fff;
}

a.btn_one {
  margin: 1em auto;
}

.ripple {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  transform: scale(0.2);
  opacity: 0;
  pointer-events: none;
  -webkit-animation: ripple .75s ease-out;
  -moz-animation: ripple .75s ease-out;
  animation: ripple .75s ease-out;
}

/* --- ボタン*/
.text-red {
  color: #E61935;
}

.text-green {
  color: #069865;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@-moz-keyframes ripple {
  from {
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ripple {
  from {
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
body {
  margin: 0;
  background-color: #f7f7f7;
  font-weight: 100;
  font-family: "ＭＳ Ｐゴシック", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.blur {
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
}

.wrapper {
  padding-top: 44px;
}

.headwrap {
  position: fixed;
  background-color: #333;
  color: #fff;
  height: 44px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  z-index: 20;
}
.headwrap .menu-icon {
  width: 80px;
  float: left;
}
.headwrap .menu-icon .tx {
  color: #fff;
  margin-left: 40px;
}
.headwrap .account-box {
  float: right;
  padding-right: 40px;
}
.headwrap .account-box .name {
  float: right;
  line-height: 44px;
  font-size: 13px;
  padding-right: 40px;
  font-weight: 100;
}
.headwrap .account-box .logout {
  padding-top: 10px;
  display: block;
  float: right;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
}
.headwrap .account-box a {
  color: #fff;
}
.headwrap .account-box .logout img {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 0;
  margin: auto;
  padding-left: 3px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 26px;
  height: 22px;
  margin-top: 12px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0px;
}

.menu-trigger.active span:nth-of-type(1),
.menu-trigger.active span:nth-of-type(3) {
  width: 20px;
}

.menu-trigger.active span:nth-of-type(1) {
  width: 20px;
  -webkit-transform: translate(-1px, 13px) rotate(-45deg);
  transform: translate(-2px, 3px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(3) {
  width: 20px;
  -webkit-transform: translate(-1px, -13px) rotate(45deg);
  transform: translate(-2px, -3px) rotate(45deg);
}

.wrapper {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}

.ttl-box {
  align-items: center;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  padding: 0;
}
.ttl-box .ttl {
  font-size: 26px;
  margin: 0;
  font-weight: 400;
}

/*serch area*/
.roupe {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/roupe.svg);
  margin-right: 8px;
}

.search-area {
  width: 100%;
  box-sizing: border-box;
  background-color: #EFF1F4;
  border-bottom: solid 1px #DCE3E6;
  border-top: solid 1px #DCE3E6;
  padding: 10px 20px 10px 20px;
  margin: 20px 0;
}
.search-area .open-search {
  width: 300px;
  margin: auto;
  color: #0070C9;
  text-decoration: none;
  display: block;
  text-align: center;
}
.search-area .open-search:hover {
  text-decoration: underline;
}

.search-box {
  width: 100%;
  display: block;
}
.search-box .col-main, .search-box .col-sub {
  display: table;
  width: 100%;
}
.search-box .col-main .form-group, .search-box .col-sub .form-group {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  float: left;
  padding: 4px;
  margin-bottom: 10px;
  margin-right: 20px;
}
.search-box .col-main .form-group legend, .search-box .col-sub .form-group legend {
  font-size: 14px;
  font-weight: 400;
  padding-right: 10px;
  line-height: 24px;
}
.search-box .col-main .form-group .lh34, .search-box .col-sub .form-group .lh34 {
  line-height: 34px;
}
.search-box .col-main .form-group label, .search-box .col-sub .form-group label {
  margin-bottom: 0;
  margin-right: 15px;
  font-size: 14px;
  line-height: 1.5rem;
}
.search-box .col-main .form-group input, .search-box .col-sub .form-group input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #fff;
  width: 300px;
  height: 34px;
  border: solid 1px #9f9f9f;
  border-radius: 2px;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
}

.open {
  display: block;
}

/*ラジオ＆チェックボタン*/
.control {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #fff;
  border: solid 2px #B9B9B9;
  border-radius: 2px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}

.control input:checked ~ .control__indicator {
  background: #455A64;
  border: solid 2px #455A64;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #0e647d;
  border: solid 2px #0e647d;
}

.control input:disabled ~ .control__indicator {
  background: #fff;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  left: 6px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
  left: 5px;
  top: 5px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select select::-ms-expand {
  display: none;
}

.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}

.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}

.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

/*ラジオ＆チェックボタン　ここまで*/
/* トグルスイッチ　新しいcss
==========================*/
.toggle-box {
  display: inline-block;
}
.toggle-box .toggleSwitch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 65px;
  height: 24px;
  padding: 3px;
  margin: 0;
  border-radius: 18px;
  cursor: pointer;
  box-sizing: content-box;
}
.toggle-box .switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  box-sizing: content-box;
}
.toggle-box .switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  box-sizing: content-box;
}
.toggle-box .switch-label:before, .toggle-box .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  box-sizing: content-box;
}
.toggle-box .switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaaaaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.toggle-box .switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: #FFFFFF;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.toggle-box .switch-input:checked ~ .switch-label {
  background: #E1B42B;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.toggle-box .switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.toggle-box .switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
.toggle-box .switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.toggle-box .switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.toggle-box .switch-input:checked ~ .switch-handle {
  left: 74px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.toggle-box .switch-label, .toggle-box .switch-handle {
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}
.toggle-box .switch-flat {
  padding: 0;
  background-image: none;
  outline: none;
}
.toggle-box .switch-flat .switch-label {
  background: #FFF;
  border: solid 2px #eceeef;
  box-shadow: none;
}
.toggle-box .switch-flat .switch-label:after {
  color: #455A64;
}
.toggle-box .switch-flat .switch-handle {
  top: 2px;
  left: 2px;
  background: #dadada;
  width: 24px;
  height: 24px;
  box-shadow: none;
}
.toggle-box .switch-flat .switch-handle:before {
  background: #eceeef;
}
.toggle-box .switch-flat .switch-input:checked ~ .switch-label {
  background: #FFF;
  border-color: #455A64;
}
.toggle-box .switch-flat .switch-input:checked ~ .switch-handle {
  left: 40px;
  background: #455A64;
  box-shadow: none;
}

/*ページトップ*/
#pageTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
}
#pageTop i {
  padding-top: 6px;
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 0px;
  border-radius: 30px;
  width: 43px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 200;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* 普通の一覧*/
.show-box {
  width: 100%;
  background-color: antiquewhite;
  margin-bottom: 0;
}
.show-box .sortmark {
  float: left;
  font-weight: 500;
  font-size: 15px;
  color: #67757C;
}
.show-box .sortmark .icon-wsort {
  display: inline-block;
  width: 30px;
  height: 10px;
  background: url(../img/icon-wsort.svg);
  background-size: cover;
  margin-right: 5px;
}
.show-box .show-label {
  float: right;
  margin-right: 50px;
  font-weight: 100;
  font-size: 15px;
}
.show-box .show-switch {
  justify-content: center;
  align-items: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  float: right;
  font-weight: 400;
  color: #67757C;
  margin-top: -15px;
}
.show-box .show-switch p {
  margin-right: 10px;
  font-size: 15px;
}

/*　　表示件数スイッチラジオ　　*/
.switch {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  position: relative;
  margin: 0 auto;
  width: 180px;
  height: 22px;
  line-height: 22px;
  border: 1px solid #455A64;
  color: #455A64;
  font-size: 14px;
  border-radius: 20px;
}

.quality {
  flex: 1;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 22px;
  line-height: 22px;
}

.quality:first-child label {
  border-radius: 20px 0 0 20px;
}

.quality:last-child label {
  border-radius: 0 20px 20px 0;
}

.quality label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.4s, color 0.4s, background-color 0.4s;
}

.quality input[type="radio"] {
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
}

.quality input[type="radio"]:focus {
  outline: 0;
  outline-offset: 0;
}

.quality input[type="radio"]:checked ~ label {
  background-color: #455A64;
  color: #fff;
}

.quality input[type="radio"]:active ~ label {
  transform: scale(1.05);
}

/*------/表示件数スイッチラジオ　　*/
.list-box {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 60px;
  overflow-y: scroll;
  margin-top: 30px;
  padding-top: 4px;
}
.list-box table {
  border-collapse: collapse;
  width: 100%;
  min-width: 1000px;
  font-size: 14px;
}
.list-box table thead {
  border: solid 1px #DCE3E6;
  font-size: 13px;
  font-weight: 200;
}
.list-box table tr:nth-child(odd) td {
  background-color: #fff;
  border: solid 1px #DCE3E6;
}
.list-box table tr:nth-child(even) td {
  background-color: #EFF1F4;
  border: solid 1px #DCE3E6;
}
.list-box table td, .list-box table th {
  padding: 10px;
  text-align: left;
}
.list-box table th {
  background-color: #EFF1F4;
}
.list-box table th .sort-up {
  width: 14px;
  height: 10px;
  display: inline-block;
  background: url(../img/icon-sort-up.svg);
  background-size: cover;
  margin-left: 5px;
  cursor: pointer;
}
.list-box table th .sort-down {
  width: 14px;
  height: 10px;
  display: inline-block;
  background: url(../img/icon-sort-down.svg);
  background-size: cover;
  margin-left: 5px;
  cursor: pointer;
}
.list-box table td {
  max-width: 240px;
  height: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-box table td label {
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
  margin-right: 20px;
}
.list-box table td span {
  padding: 0;
  margin: 0;
  line-height: 24px;
}
.list-box table td .colorbox {
  justify-content: center;
  align-items: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}
.list-box table td .colorbox .schoolcolor {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  margin-bottom: 0;
}
.list-box table td .colorbox .colorcode {
  display: inline-block;
  margin-top: 0px;
  width: 26%;
}
.list-box table td .minibtn-box {
  margin-top: -12px;
  margin-bottom: -20px;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}

/*モーダル*/
.login_area {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 70;
}
.login_area .overlay {
  width: 100%;
  height: 100vh;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  margin-top: 0px;
}
.login_area .modal_login {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 500px;
  height: 240px;
  border-radius: 2px;
  background-color: #fff;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.login_area .modal_login .lead {
  line-height: 2em;
  font-weight: 400;
  font-size: 20px;
  margin: 50px 0 30px 0;
}
.login_area .modal_login .modalbtn-box {
  position: absolute;
  bottom: 0;
  width: 92%;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}

.modal_login .text {
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 40px;
}

.modal_login .close_box {
  display: block;
  position: absolute;
  top: -35px;
  right: 0px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 12;
}

.modal_login .close:before, .modal_login .close:after {
  position: absolute;
  top: 10px;
  right: 0;
  display: block;
  content: "";
  padding: 0;
  width: 30px;
  height: 1px;
  margin-top: 0;
  background: #fff;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal_login .close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*---------------------------------
ページーネーション
----------------------------------*/
.pageNav {
  width: 100%;
  justify-content: center;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  margin: 40px 0;
  padding: 40px 0;
  text-align: center;
}
.pageNav li {
  display: inline;
  margin: 0 4px;
  padding: 0;
}
.pageNav li span, .pageNav li a {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 13px;
  background: #fff;
  border: solid 1px #eee;
  text-decoration: none;
  vertical-align: middle;
  font-weight: 500;
  color: #0070C9;
  border-radius: 20px;
}
.pageNav li span.active, .pageNav li a.active {
  color: #333;
}
.pageNav li a:hover {
  background: #455A64;
  border-color: #455A64;
  color: #fff;
}
.pageNav li .prev, .pageNav li .next {
  background: none;
  border: none;
}
.pageNav li .desable {
  color: #B9B9B9;
}
.pageNav li .desable:hover {
  background: none;
  cursor: default;
  color: #b9b9b9;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .ttl-box {
    -webkit-box-pack: justify;
    /*--- Androidブラウザ用 ---*/
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    margin-top: -20px;
  }
  .ttl-box .ttl {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    padding-top: 20px;
  }

  .button {
    display: block;
    width: 140px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 13px;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0px;
  }
  .button.l-btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  /*serch area*/
  .roupe {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/roupe.svg);
    margin-right: 8px;
  }

  .search-area {
    width: 100%;
    box-sizing: border-box;
    background-color: #EFF1F4;
    border-bottom: solid 1px #DCE3E6;
    border-top: solid 1px #DCE3E6;
    padding: 10px;
    margin: 20px 0;
  }
  .search-area .open-search {
    width: 100%;
    color: #0070C9;
    text-decoration: none;
    display: block;
    text-align: center;
  }
  .search-area .open-search:hover {
    text-decoration: underline;
  }

  .search-box {
    display: block;
    width: 100%;
  }
  .search-box .col-main, .search-box .col-sub {
    display: table;
    width: 100%;
  }
  .search-box .col-main .form-group, .search-box .col-sub .form-group {
    display: block;
    width: 100%;
    box-sizing: border-box;
    float: left;
    padding: 8px;
    margin-bottom: 0px;
    margin-right: 0px;
  }
  .search-box .col-main .form-group legend, .search-box .col-sub .form-group legend {
    font-weight: 400;
    padding-right: 0px;
    font-size: 14px;
  }
  .search-box .col-main .form-group .lh34, .search-box .col-sub .form-group .lh34 {
    line-height: 34px;
  }
  .search-box .col-main .form-group label, .search-box .col-sub .form-group label {
    margin-bottom: 5px;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5rem;
  }
  .search-box .col-main .form-group input, .search-box .col-sub .form-group input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #fff;
    width: 100%;
    height: 34px;
    border: solid 1px #9f9f9f;
    border-radius: 2px;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
  }

  /*---------小さいモーダル（確認用などに使う）-------------*/
  .login_area .modal_login {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 200px;
    border-radius: 2px;
    background-color: #fff;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .login_area .modal_login .lead {
    font-weight: 400;
    font-size: 18px;
  }
  .login_area .modal_login .modalbtn-box {
    position: absolute;
    bottom: 0;
    width: 92%;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    /*--- Androidブラウザ用 ---*/
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    display: -webkit-box;
    /*--- Androidブラウザ用 ---*/
    display: -ms-flexbox;
    /*--- IE10 ---*/
    display: -webkit-flex;
    /*--- safari（PC）用 ---*/
    display: flex;
    padding-bottom: 10px;
  }
  .login_area .modal_login .modalbtn-box a {
    margin-top: 0;
  }
}
/*max-width:750px*/
/*ランドスケープ時*/

div.img_selected{
  margin-top: 1.5em;
}

.headwrap .logoBox {
  position: absolute;
  left: 46%;
  right: 50%;
  margin: auto;
  height: 44px;
}
.headwrap .logoBox img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  height: 34px;
}

.login-wrap .ttl .loginLogoBox {
  height: 60px;
  max-width: 360px;
  margin: 0 auto;
}
.login-wrap .ttl .loginLogoBox img {
  display: inline-block;
  height: 100%;
}

