@charset "UTF-8";
/*-----------------------------------
INC | Configs
-----------------------------------*/
/*-----------------------------------

Variables

-----------------------------------*/
/*-----------------------------------
Brakepoint
-----------------------------------*/
/*-----------------------------------
Width
-----------------------------------*/
/*-----------------------------------
Color
-----------------------------------*/
/*-----------------------------------
Animation
-----------------------------------*/
/*-----------------------------------
Font
-----------------------------------*/
/*-----------------------------------
Radius | 角丸
-----------------------------------*/
/*-----------------------------------
Transition | アニメーション
-----------------------------------*/
/*-----------------------------------
INC | Configs
-----------------------------------*/
/*
Name Space
------------------------------------------------*/
/*------------------------------------------------

Media Query

------------------------------------------------*/
/*-----------------------------------
INC | Configs
-----------------------------------*/
/*================================================

CONFIG / BASE

--------------------------------------------------
Include
-----------------------------------*/
/*-----------------------------------
ALL
-----------------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

/*-----------------------------------
Body
-----------------------------------*/
body {
  margin: 0;
  height: 100%;
  color: #2F404F;
  /* background-color: #F2F3F8; */
  background-color: #FFF;
}

/*-----------------------------------
Paragraph
-----------------------------------*/
p {
  margin: 0;
}

/*-----------------------------------
Link
-----------------------------------*/
a {
  /* color: #546DE6; */
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}

/*-----------------------------------
Image
-----------------------------------*/
img {
  max-width: 100%;
}

/*-----------------------------------
Definition
-----------------------------------*/
dl, dt, dd {
  margin: 0;
}

/*-----------------------------------
List
-----------------------------------*/
ul, ol {
  padding-left: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

/*-----------------------------------
hx
-----------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/*------------------------------------------------

FORM

------------------------------------------------*/
button,
input,
select,
textarea {
  outline: none;
  background-color: transparent;
  border-style: none;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Select */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

/*-----------------------------------
INC | Layouts
-----------------------------------*/
/*-----------------------------------
INC | Configs
-----------------------------------*/
/*================================================

LAYOUT / HEADER

------------------------------------------------*/
/*------------------------------------------------

Header

------------------------------------------------*/
.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 60px;
  color: #FFFFFF;
  background: #ffffff;
  position: fixed;
  /*----------------------------------------------
  Logo
  ----------------------------------------------*/
  /*----------------------------------------------
  Global Navigation
  ----------------------------------------------*/
  /*----------------------------------------------
  Sub Navigation
  ----------------------------------------------*/
  /*----------------------------------------------
  Account
  ----------------------------------------------*/
  /*----------------------------------------------
  Title Bar
  ----------------------------------------------*/
}
.l-header .l-header__logo {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
  display: block;
  width: 60px;
  padding-top: 12px;
  text-align: center;
  margin-right: auto;
  background: #DE0716;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__logo {
    width: 160px;
    padding: 17px 20px 0;
  }
}
@media screen and (min-width: 960px) {
  .l-header__gnavi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header .l-header__sub-navigation {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__sub-navigation {
    width: auto;
  }
}
.l-header .l-header__sub-navigation li {
  margin-left: 1px;
  width: 60px;
}
.l-header .l-header__sub-navigation li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  background: #253342;
}
.l-header .l-header__sub-navigation li a:hover {
  background: #546DE6;
}
.l-header .l-header__sub-navigation li img {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  margin: 0 auto;
  width: 18px;
  height: 18px;
}
.l-header .l-header__sub-navigation .l-header__sn-notify {
  position: relative;
}
.l-header .l-header__sub-navigation .l-header__sn-notify .l-header__sn-notify-batch {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc3545;
  position: absolute;
  top: 15px;
  right: 15px;
}
.l-header .l-header__sub-navigation .l-header__sn-setting {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__sub-navigation .l-header__sn-setting {
    display: block;
  }
}
.l-header .l-header__sub-navigation .l-header__sn-account {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__sub-navigation .l-header__sn-account {
    display: block;
  }
}
.l-header .l-header__account {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
  width: 60px;
  height: 60px;
  margin-left: 1px;
  background: #253342;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__account :hover {
    opacity: 0.6;
  }
}
.l-header .l-header__account .l-header__member-photo {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  border-radius: 50%;
  margin: 0 auto;
  width: 36px;
  height: 36px;
}
.l-header .l-header__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
  width: 100%;
  height: 60px;
  background: #687DE8;
}
.l-header .l-header__title .l-header__page-title {
  line-height: 60px;
  padding-left: 60px;
  font-size: 18px;
  height: 60px;
  background: url(/img/icon/case.svg) no-repeat 20px center;
  background-size: 24px;
}
.l-header .l-header__title .l-header__page-title.dashboard {
  background: url(/img/icon/main-dashboard.svg) no-repeat 20px center;
}
.l-header .l-header__title .l-header__page-title.schedule {
  background: url(/img/icon/main-schedule.svg) no-repeat 20px center;
}
.l-header .l-header__title .l-header__page-title.analysis {
  background: url(/img/icon/main-analysis.svg) no-repeat 20px center;
}
.l-header .l-header__title .l-header__page-title.hintttl {
  background: url(/img/icon/main-hint.svg) no-repeat 20px center;
}
.l-header .l-header__title .l-header__page-title.account {
  background: url(/img/icon/person.svg) no-repeat 20px center;
  background-size: 32px;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__title .l-header__page-title {
    font-size: 24px;
  }
}
.l-header .l-header__title .l-header__page-title .l-header__month {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__title .l-header__page-title .l-header__month {
    margin-left: 20px;
    font-size: 16px;
  }
}
.l-header .l-header__title .c-tab {
  margin-left: 40px;
  margin-top: 15px;
}
.l-header .l-header__title .l-header__ranking {
  display: none;
  padding-left: 30px;
  margin-left: 100px;
  line-height: 60px;
  background: url(/img/icon/crown.svg) no-repeat 0 center;
}
.l-header .l-header__title .l-header__action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.l-header .l-header__title .l-header__action a {
  text-decoration: none;
}
.l-header .l-header__title .l-header__action .omit {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-header .l-header__title .l-header__action .omit {
    display: inline;
  }
}
.l-header .l-header__title .l-header__action li {
  margin-left: 1px;
}

/*-----------------------------------
INC | Configs
-----------------------------------*/
/*================================================

LAYOUT / Container

------------------------------------------------*/
/*------------------------------------------------

Container

------------------------------------------------*/
.l-container {
  padding-top: 120px;
  height: calc(100% - 120px);
}

/*------------------------------------------------

Wrapper

------------------------------------------------*/
.l-content {
  max-width: 1620px;
  margin: 0 auto;
}
.l-content--mid {
  max-width: 1280px;
  margin: 0 auto;
}
.l-content--sml {
  max-width: 960px;
  margin: 0 auto;
}

/*------------------------------------------------

Wrapper

------------------------------------------------*/
.l-main {
  width: 70%;
}

/*------------------------------------------------

Wrapper

------------------------------------------------*/
.l-sidebar {
  width: 30%;
  margin-left: 30px;
}

/*------------------------------------------------

FLEX

------------------------------------------------*/
.l-flex, .l-flex--va {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-flex--va {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*-----------------------------------
INC | Components
-----------------------------------*/
/*-----------------------------------
INC | Utilities
-----------------------------------*/
/*------------------------------------------------

Z-INDEX

------------------------------------------------*/
.l-header {
  z-index: 1000;
}

.l-pagebar {
  z-index: 999;
}

.case__title {
  z-index: 10;
}

.overlay {
  z-index: 10000;
}

.overlay_over {
  z-index: 10001;
}

.c-toast {
  z-index: 10009;
}

.loading-wrap {
  z-index: 10010;
}

/*-----------------------------------
INC | Configs
-----------------------------------*/
/*================================================

UTILITIES / AJUST

------------------------------------------------*/
/*------------------------------------------------

Br

------------------------------------------------*/
@media screen and (min-width: 960px) {
  .brSp {
    display: none;
  }
}

/*------------------------------------------------

Align

------------------------------------------------*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.val-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*------------------------------------------------

Border

------------------------------------------------*/
.bd-none {
  border: none !important;
}

/*------------------------------------------------

Text

------------------------------------------------*/
.addition {
  font-size: 80%;
  color: #999999;
}

/*------------------------------------------------

Width

------------------------------------------------*/
.w-100 {
  width: 100% !important;
}

.w-90 {
  width: 90% !important;
}

.w-80 {
  width: 80% !important;
}

.w-70 {
  width: 70% !important;
}

.w-60 {
  width: 60% !important;
}

.w-50 {
  width: 50% !important;
}

.w-40 {
  width: 40% !important;
}

.w-30 {
  width: 30% !important;
}

.w-20 {
  width: 20% !important;
}

.w-10 {
  width: 10% !important;
}

/*------------------------------------------------

Margin

------------------------------------------------*/
.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mr-auto {
  margin-right: auto;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.ml-auto {
  margin-left: auto;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

/*------------------------------------------------

Padding

------------------------------------------------*/
.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-40 {
  padding: 50px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}/*# sourceMappingURL=style.css.map */