@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
  --theme--color--base-text: #323232;
  --theme--color--border: #707070;
  --theme--color--border--light: #b8c6cf;
  --theme--color--table-header: #383d43;
  --theme--color--table-cell: #FCFCFC;
  --theme--color--table-cell2: #f2f4f7;
  --theme--color--table-cell--hover: #deedff;
  --theme--color--table-cell2--hover: #dddddd;
  --theme--color--components--dark: #383d43;
  --theme--color--components--primary: #186ccd;
  --theme--color--components--secondary: #383d43;
  --theme--color--components--border: #acb1b7;
  --theme--color--components--focus: #f2fcff;
  --theme--color--components--border--focus: #186ccd;
  --theme--color--components--disabled: #efefef4d;
  --theme--color--diff: #feffc0;
}

@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/OpenSans-SemiBold.ttf");
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/OpenSans-Bold.ttf");
}
* {
  font-family: "OpenSans", "メイリオ", "Meiryo", "游ゴシック", "sans-serif";
}

input, select, textarea, button {
  font-family: "OpenSans", "メイリオ", "Meiryo", "游ゴシック", "sans-serif";
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: var(--theme--color--base-text);
}

@media (min-width: 48.0625em) {
  body {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
input, select, textarea, button {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: var(--theme--color--base-text);
}

@media (min-width: 48.0625em) {
  input, select, textarea, button {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ==========================================================================
   Layout
   ========================================================================== */
.l-grid__row {
  display: flex;
  flex-wrap: wrap;
}
.l-grid__row--margin, .l-grid__row--margin-sm {
  margin: -10px 0 0 -10px;
}
.l-grid__row--margin > [class^=l-grid__col], .l-grid__row--margin-sm > [class^=l-grid__col] {
  padding: 10px 0 0 10px;
  box-sizing: border-box;
}
.l-grid__row--margin-lg {
  margin: -15px 0 0 -15px;
}
.l-grid__row--margin-lg > [class^=l-grid__col] {
  padding: 15px 0 0 15px;
  box-sizing: border-box;
}
.l-grid__row--reverse-sm {
  flex-direction: column-reverse;
}
.l-grid__row--align-center {
  align-items: center;
}
.l-grid__row--align-strech {
  align-items: stretch;
}

@media (min-width: 48.0625em) {
  .l-grid__row--margin {
    margin: 0 0 0 -20px;
  }
  .l-grid__row--margin > [class^=l-grid__col] {
    padding: 0 0 0 20px;
  }
  .l-grid__row--margin-sm {
    margin: 0 0 0 -15px;
  }
  .l-grid__row--margin-sm > [class^=l-grid__col] {
    padding: 0 0 0 15px;
  }
  .l-grid__row--margin-lg {
    margin: 0 0 0 -35px;
  }
  .l-grid__row--margin-lg > [class^=l-grid__col] {
    padding: 0 0 0 35px;
  }
  .l-grid__row--reverse-sm {
    flex-direction: row;
  }
}
.l-grid__col {
  flex: 1 0 0%;
}
.l-grid__col--sm-1-1 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-2 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__col--sm-2-2 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-3 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.l-grid__col--sm-2-3 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.l-grid__col--sm-3-3 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-4 {
  flex-basis: 25%;
  max-width: 25%;
}
.l-grid__col--sm-2-4 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__col--sm-3-4 {
  flex-basis: 75%;
  max-width: 75%;
}
.l-grid__col--sm-4-4 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-5 {
  flex-basis: 20%;
  max-width: 20%;
}
.l-grid__col--sm-2-5 {
  flex-basis: 40%;
  max-width: 40%;
}
.l-grid__col--sm-3-5 {
  flex-basis: 60%;
  max-width: 60%;
}
.l-grid__col--sm-4-5 {
  flex-basis: 80%;
  max-width: 80%;
}
.l-grid__col--sm-5-5 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-6 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}
.l-grid__col--sm-2-6 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.l-grid__col--sm-3-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__col--sm-4-6 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.l-grid__col--sm-5-6 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}
.l-grid__col--sm-6-6 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-7 {
  flex-basis: 14.2857142857%;
  max-width: 14.2857142857%;
}
.l-grid__col--sm-2-7 {
  flex-basis: 28.5714285714%;
  max-width: 28.5714285714%;
}
.l-grid__col--sm-3-7 {
  flex-basis: 42.8571428571%;
  max-width: 42.8571428571%;
}
.l-grid__col--sm-4-7 {
  flex-basis: 57.1428571429%;
  max-width: 57.1428571429%;
}
.l-grid__col--sm-5-7 {
  flex-basis: 71.4285714286%;
  max-width: 71.4285714286%;
}
.l-grid__col--sm-6-7 {
  flex-basis: 85.7142857143%;
  max-width: 85.7142857143%;
}
.l-grid__col--sm-7-7 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-8 {
  flex-basis: 12.5%;
  max-width: 12.5%;
}
.l-grid__col--sm-2-8 {
  flex-basis: 25%;
  max-width: 25%;
}
.l-grid__col--sm-3-8 {
  flex-basis: 37.5%;
  max-width: 37.5%;
}
.l-grid__col--sm-4-8 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__col--sm-5-8 {
  flex-basis: 62.5%;
  max-width: 62.5%;
}
.l-grid__col--sm-6-8 {
  flex-basis: 75%;
  max-width: 75%;
}
.l-grid__col--sm-7-8 {
  flex-basis: 87.5%;
  max-width: 87.5%;
}
.l-grid__col--sm-8-8 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-9 {
  flex-basis: 11.1111111111%;
  max-width: 11.1111111111%;
}
.l-grid__col--sm-2-9 {
  flex-basis: 22.2222222222%;
  max-width: 22.2222222222%;
}
.l-grid__col--sm-3-9 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.l-grid__col--sm-4-9 {
  flex-basis: 44.4444444444%;
  max-width: 44.4444444444%;
}
.l-grid__col--sm-5-9 {
  flex-basis: 55.5555555556%;
  max-width: 55.5555555556%;
}
.l-grid__col--sm-6-9 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.l-grid__col--sm-7-9 {
  flex-basis: 77.7777777778%;
  max-width: 77.7777777778%;
}
.l-grid__col--sm-8-9 {
  flex-basis: 88.8888888889%;
  max-width: 88.8888888889%;
}
.l-grid__col--sm-9-9 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-10 {
  flex-basis: 10%;
  max-width: 10%;
}
.l-grid__col--sm-2-10 {
  flex-basis: 20%;
  max-width: 20%;
}
.l-grid__col--sm-3-10 {
  flex-basis: 30%;
  max-width: 30%;
}
.l-grid__col--sm-4-10 {
  flex-basis: 40%;
  max-width: 40%;
}
.l-grid__col--sm-5-10 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__col--sm-6-10 {
  flex-basis: 60%;
  max-width: 60%;
}
.l-grid__col--sm-7-10 {
  flex-basis: 70%;
  max-width: 70%;
}
.l-grid__col--sm-8-10 {
  flex-basis: 80%;
  max-width: 80%;
}
.l-grid__col--sm-9-10 {
  flex-basis: 90%;
  max-width: 90%;
}
.l-grid__col--sm-10-10 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-11 {
  flex-basis: 9.0909090909%;
  max-width: 9.0909090909%;
}
.l-grid__col--sm-2-11 {
  flex-basis: 18.1818181818%;
  max-width: 18.1818181818%;
}
.l-grid__col--sm-3-11 {
  flex-basis: 27.2727272727%;
  max-width: 27.2727272727%;
}
.l-grid__col--sm-4-11 {
  flex-basis: 36.3636363636%;
  max-width: 36.3636363636%;
}
.l-grid__col--sm-5-11 {
  flex-basis: 45.4545454545%;
  max-width: 45.4545454545%;
}
.l-grid__col--sm-6-11 {
  flex-basis: 54.5454545455%;
  max-width: 54.5454545455%;
}
.l-grid__col--sm-7-11 {
  flex-basis: 63.6363636364%;
  max-width: 63.6363636364%;
}
.l-grid__col--sm-8-11 {
  flex-basis: 72.7272727273%;
  max-width: 72.7272727273%;
}
.l-grid__col--sm-9-11 {
  flex-basis: 81.8181818182%;
  max-width: 81.8181818182%;
}
.l-grid__col--sm-10-11 {
  flex-basis: 90.9090909091%;
  max-width: 90.9090909091%;
}
.l-grid__col--sm-11-11 {
  flex-basis: 100%;
  max-width: 100%;
}
.l-grid__col--sm-1-12 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}
.l-grid__col--sm-2-12 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}
.l-grid__col--sm-3-12 {
  flex-basis: 25%;
  max-width: 25%;
}
.l-grid__col--sm-4-12 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.l-grid__col--sm-5-12 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}
.l-grid__col--sm-6-12 {
  flex-basis: 50%;
  max-width: 50%;
}
.l-grid__col--sm-7-12 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}
.l-grid__col--sm-8-12 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.l-grid__col--sm-9-12 {
  flex-basis: 75%;
  max-width: 75%;
}
.l-grid__col--sm-10-12 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}
.l-grid__col--sm-11-12 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}
.l-grid__col--sm-12-12 {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 48.0625em) {
  .l-grid__col--lg-1-1 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-2 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .l-grid__col--lg-2-2 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-3 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-grid__col--lg-2-3 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-grid__col--lg-3-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-4 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .l-grid__col--lg-2-4 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .l-grid__col--lg-3-4 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .l-grid__col--lg-4-4 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-5 {
    flex-basis: 20%;
    max-width: 20%;
  }
  .l-grid__col--lg-2-5 {
    flex-basis: 40%;
    max-width: 40%;
  }
  .l-grid__col--lg-3-5 {
    flex-basis: 60%;
    max-width: 60%;
  }
  .l-grid__col--lg-4-5 {
    flex-basis: 80%;
    max-width: 80%;
  }
  .l-grid__col--lg-5-5 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-6 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .l-grid__col--lg-2-6 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-grid__col--lg-3-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .l-grid__col--lg-4-6 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-grid__col--lg-5-6 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .l-grid__col--lg-6-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-7 {
    flex-basis: 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .l-grid__col--lg-2-7 {
    flex-basis: 28.5714285714%;
    max-width: 28.5714285714%;
  }
  .l-grid__col--lg-3-7 {
    flex-basis: 42.8571428571%;
    max-width: 42.8571428571%;
  }
  .l-grid__col--lg-4-7 {
    flex-basis: 57.1428571429%;
    max-width: 57.1428571429%;
  }
  .l-grid__col--lg-5-7 {
    flex-basis: 71.4285714286%;
    max-width: 71.4285714286%;
  }
  .l-grid__col--lg-6-7 {
    flex-basis: 85.7142857143%;
    max-width: 85.7142857143%;
  }
  .l-grid__col--lg-7-7 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-8 {
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .l-grid__col--lg-2-8 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .l-grid__col--lg-3-8 {
    flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .l-grid__col--lg-4-8 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .l-grid__col--lg-5-8 {
    flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .l-grid__col--lg-6-8 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .l-grid__col--lg-7-8 {
    flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .l-grid__col--lg-8-8 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-9 {
    flex-basis: 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .l-grid__col--lg-2-9 {
    flex-basis: 22.2222222222%;
    max-width: 22.2222222222%;
  }
  .l-grid__col--lg-3-9 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-grid__col--lg-4-9 {
    flex-basis: 44.4444444444%;
    max-width: 44.4444444444%;
  }
  .l-grid__col--lg-5-9 {
    flex-basis: 55.5555555556%;
    max-width: 55.5555555556%;
  }
  .l-grid__col--lg-6-9 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-grid__col--lg-7-9 {
    flex-basis: 77.7777777778%;
    max-width: 77.7777777778%;
  }
  .l-grid__col--lg-8-9 {
    flex-basis: 88.8888888889%;
    max-width: 88.8888888889%;
  }
  .l-grid__col--lg-9-9 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-10 {
    flex-basis: 10%;
    max-width: 10%;
  }
  .l-grid__col--lg-2-10 {
    flex-basis: 20%;
    max-width: 20%;
  }
  .l-grid__col--lg-3-10 {
    flex-basis: 30%;
    max-width: 30%;
  }
  .l-grid__col--lg-4-10 {
    flex-basis: 40%;
    max-width: 40%;
  }
  .l-grid__col--lg-5-10 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .l-grid__col--lg-6-10 {
    flex-basis: 60%;
    max-width: 60%;
  }
  .l-grid__col--lg-7-10 {
    flex-basis: 70%;
    max-width: 70%;
  }
  .l-grid__col--lg-8-10 {
    flex-basis: 80%;
    max-width: 80%;
  }
  .l-grid__col--lg-9-10 {
    flex-basis: 90%;
    max-width: 90%;
  }
  .l-grid__col--lg-10-10 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-11 {
    flex-basis: 9.0909090909%;
    max-width: 9.0909090909%;
  }
  .l-grid__col--lg-2-11 {
    flex-basis: 18.1818181818%;
    max-width: 18.1818181818%;
  }
  .l-grid__col--lg-3-11 {
    flex-basis: 27.2727272727%;
    max-width: 27.2727272727%;
  }
  .l-grid__col--lg-4-11 {
    flex-basis: 36.3636363636%;
    max-width: 36.3636363636%;
  }
  .l-grid__col--lg-5-11 {
    flex-basis: 45.4545454545%;
    max-width: 45.4545454545%;
  }
  .l-grid__col--lg-6-11 {
    flex-basis: 54.5454545455%;
    max-width: 54.5454545455%;
  }
  .l-grid__col--lg-7-11 {
    flex-basis: 63.6363636364%;
    max-width: 63.6363636364%;
  }
  .l-grid__col--lg-8-11 {
    flex-basis: 72.7272727273%;
    max-width: 72.7272727273%;
  }
  .l-grid__col--lg-9-11 {
    flex-basis: 81.8181818182%;
    max-width: 81.8181818182%;
  }
  .l-grid__col--lg-10-11 {
    flex-basis: 90.9090909091%;
    max-width: 90.9090909091%;
  }
  .l-grid__col--lg-11-11 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .l-grid__col--lg-1-12 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .l-grid__col--lg-2-12 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .l-grid__col--lg-3-12 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .l-grid__col--lg-4-12 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-grid__col--lg-5-12 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .l-grid__col--lg-6-12 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .l-grid__col--lg-7-12 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .l-grid__col--lg-8-12 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-grid__col--lg-9-12 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .l-grid__col--lg-10-12 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .l-grid__col--lg-11-12 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .l-grid__col--lg-12-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.l-header__head-logo {
  display: block;
  content: "";
  width: 110px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 48.0625em) {
  .l-header__head-logo {
    width: 128px;
  }
}
.l-header__left h1 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
}
.l-header__left h1 span {
  margin-left: 7px;
}

@media (min-width: 48.0625em) {
  .l-header__left h1 {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .l-header__left h1 span {
    margin-left: 12px;
  }
}
.l-header__right {
  display: flex;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 8px;
}

.l-header__menu {
  display: flex;
  align-items: center;
}
.l-header__menu > div {
  margin-right: 2px;
}

.l-side__leftmenu-box {
  background: var(--theme--color--table-cell2);
  display: block;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  z-index: 800;
}

@media (min-width: 48.0625em) {
  .l-side__leftmenu-box {
    width: 36px;
  }
}
.l-side__leftmenu-mneulist {
  width: 300px;
  display: block;
  position: fixed;
  background: var(--theme--color--table-cell2);
  margin-left: 36px;
  top: 40px;
  overflow-y: auto;
  width: 300px;
  height: calc(100vh - 40px);
  padding: 15px;
  box-sizing: border-box;
}
.l-side__leftmenu-mneulist .c-button__side-close {
  position: absolute;
  right: 10px;
  top: 20px;
}

@media (min-width: 48.0625em) {
  .l-side__leftmenu-mneulist {
    margin-left: 36px;
    top: 40px;
    height: calc(100vh - 40px);
    padding: 20px;
  }
}
.l-main__cpbody-leftmenu {
  box-sizing: border-box;
  display: none;
  opacity: 0;
}
.l-main__cpbody-leftmenu.open {
  padding-bottom: 30px;
  display: block;
  opacity: 1;
}

@media (min-width: 48.0625em) {
  .l-main__cpbody-wrap {
    display: flex;
    flex-wrap: nowrap;
  }
  .l-main__cpbody-wrap.open {
    width: calc(100% + 360px + 30px);
  }
  #cp_body.l-main__cpbody-wrap.open {
    padding-right: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 48.0625em) {
  .l-main__cpbody-leftmenu {
    position: relative;
    flex-basis: 0;
    min-width: 0;
    padding-right: 0;
    transition-property: "flex-basis", "min-width", "padding-right";
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
  }
  .l-main__cpbody-leftmenu .p-panel__side-filter.sticky {
    position: sticky;
    left: 0;
    top: 50px;
    z-index: 100;
  }
  .l-main__cpbody-leftmenu.open {
    flex-basis: 360px;
    min-width: 360px;
    padding-right: 20px;
  }
}
.l-main__cpbody-main {
  flex: 1;
}

/* ==========================================================================
Object
========================================================================== */
/* Component
----------------------------------------------------------------- */
.c-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
}
.c-message > i {
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-message--size-sm {
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.c-message--size-sm > i {
  margin-right: 5px;
}
.c-message__success {
  background: #E5F6EF;
}
.c-message__danger {
  background: #FDE7E7;
}
.c-message__warning {
  background: #fff8d4;
}
.c-message__info {
  background: #deedff;
  color: #1d63b7;
}
.c-message__info > i {
  color: #1d63b7;
}
.c-message__info-input {
  color: #6c6c6c;
  padding: 0;
}
.c-message__info-input > i {
  margin-right: 5px;
}
.c-message__valid-error {
  display: block;
  background: url(../img/icons/icon_ng.svg) no-repeat left center/14px auto;
  padding-left: 18px;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: 600;
  color: #EA1818;
}

.c-message + .c-message {
  margin-top: 10px;
}

input[type=checkbox] {
  cursor: pointer;
}

label[for] {
  cursor: pointer;
}

.c-form {
  width: 100%;
  border: 1px solid var(--theme--color--components--border);
  border-radius: 4px;
  padding: 2px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
.c-form:focus {
  border: 1px solid var(--theme--color--components--border--focus);
  -webkit-box-shadow: 0px 0px 0px 3px rgba(24, 108, 205, 0.2);
  box-shadow: 0px 0px 0px 3px rgba(24, 108, 205, 0.2);
}
.c-form--size-xs {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.c-form--size-sm {
  font-size: 1.4rem;
  line-height: 2.1rem;
}
@media (min-width: 48.0625em) {
  .c-form--size-lg {
    padding: 5px;
  }
}
.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  background: var(--theme--color--components--focus);
}

.c-form__input__primary {
  background: var(--theme--color--table-cell2);
  border: 1px solid var(--theme--color--table-cell2);
}
.c-form__input__primary:focus {
  background: var(--theme--color--table-cell2);
}

.c-form__radio {
  margin-right: 3px;
}
.c-form__radio--block {
  position: relative;
}
.c-form__radio--block span {
  border-radius: 4px;
  border: 1px solid var(--theme--color--components--border);
  padding: 8px 20px 8px 30px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-form__radio--block input[type=radio] {
  position: absolute;
  top: 5px;
  left: 10px;
}
.c-form__radio--block input[type=radio]:disabled + span {
  opacity: 0.5;
  background-color: #eee;
  cursor: default;
}
.c-form__radio--block input[type=radio]:focus + span {
  background-color: var(--theme--color--components--focus);
  border: 1px solid var(--theme--color--components--border--focus);
}
.c-form__radio--block input[type=radio]:checked + span {
  background-color: var(--theme--color--components--focus);
  border: 1px solid var(--theme--color--components--border--focus);
}
.c-form__radio--block + .c-form__radio--block {
  margin-left: 4px;
}

@media (min-width: 48.0625em) {
  .c-form__radio {
    margin-right: 5px;
  }
  .c-form__radio--block span {
    font-size: 1.5rem;
    line-height: 2.55rem;
  }
}
.c-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.c-form__checkbox {
  margin-right: 3px;
  cursor: pointer;
}

@media (min-width: 48.0625em) {
  .c-form__checkbox {
    margin-right: 5px;
  }
}
.c-form__label {
  font-weight: 700;
}

@media (min-width: 48.0625em) {
  .c-form__label {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
.c-form__inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.c-form__inline .c-form__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-form__inline .c-message__valid-error {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.c-form__multiselect, .c-form__shiftselect {
  overflow: hidden;
  padding: 0;
}
.c-form__multiselect ul, .c-form__shiftselect ul {
  min-height: 160px;
  resize: both;
  overflow-y: scroll;
  overflow-x: scroll;
  margin-left: 0;
  background: #fff;
}
.c-form__multiselect li, .c-form__shiftselect li {
  padding: 2px 0px 2px 10px;
  cursor: pointer;
  background: #fff;
}
.c-form__multiselect li, .c-form__shiftselect li, .c-form__multiselect li:nth-child(odd) {
  background: var(--theme--color--table-cell);
}
.c-form__multiselect li:nth-child(odd), .c-form__shiftselect li:nth-child(odd) {
  background: var(--theme--color--table-cell2);
}
.c-form__multiselect li:hover, .c-form__shiftselect li:hover {
  background-color: var(--theme--color--table-cell--hover);
}
.c-form__multiselect li.selected, .c-form__shiftselect li.selected {
  background-color: var(--theme--color--table-cell--hover);
}
.c-form__multiselect li.disabled, .c-form__shiftselect li.disabled {
  background: var(--theme--color--components--disabled);
}
.c-form__multiselect li .c-form__checkbox, .c-form__shiftselect li .c-form__checkbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-form__multiselect li .c-form__checkbox span, .c-form__shiftselect li .c-form__checkbox span {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 5px;
}

.c-form__shiftselect ul {
  height: 160px;
  resize: vertical;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-form__shiftselect li {
  cursor: unset;
}
.c-form__shiftselect li .c-form__checkbox {
  cursor: unset;
  pointer-events: none;
}
.c-form__shiftselect li .c-form__checkbox span {
  margin-left: -15px;
}
.c-form__shiftselect li .c-form__checkbox input[type=checkbox] {
  opacity: 0;
}
.c-form__shiftselect li.checked {
  background: var(--theme--color--components--primary);
  color: #fff;
  cursor: -webkit-grab;
  cursor: grab;
}
.c-form__shiftselect-disabled {
  pointer-events: none;
  background: var(--theme--color--components--disabled);
}
.c-form__shiftselect-disabled ul {
  background: var(--theme--color--components--disabled);
}

.drag-btn-wrap {
  padding: 3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.drag-btn-wrap .c-button {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.drag-helper {
  z-index: 2;
  opacity: 0.7;
  width: 25px;
  height: 25px;
  display: block;
  background-size: 100% auto;
  background: url(../img/icons/icon_drag-helper.svg) no-repeat center center;
}

.c-form__input-group, .c-form__input-group--append-icon, .c-form__input-group--prepend-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c-form__input-group--prepend-icon i {
  position: absolute;
  left: 12px;
}
.c-form__input-group--prepend-icon input {
  padding-left: 30px;
}
.c-form__input-group--prepend-icon input.c-form--size-xs {
  padding-left: 20px;
}
.c-form__input-group--prepend-icon input.c-form--size-sm {
  padding-left: 25px;
}
.c-form__input-group--prepend-icon .c-form--size-xs + i {
  left: 2px;
}
.c-form__input-group--append-icon i {
  position: absolute;
  right: 8px;
}
.c-form__input-group--append-icon input {
  padding-right: 30px;
}
.c-form__input-group--append-icon input.c-form--size-xs {
  padding-right: 20px;
}
.c-form__input-group--append-icon input.c-form--size-sm {
  padding-right: 25px;
}

.c-form__host-type-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: -10px 0 0 -10px;
}
.c-form__host-type-wrap > div {
  padding: 10px 0 0 10px;
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 48.0625em) {
  .c-form__host-type-wrap > div {
    -ms-flex-preferred-size: 135px;
    flex-basis: 135px;
    max-width: 135px;
  }
}
.c-form__host-type {
  display: block;
  width: 100%;
  height: 120px;
}
.c-form__host-type > input[type=radio] {
  position: absolute;
  opacity: 0;
  padding: 7px;
}
.c-form__host-type > span {
  border-radius: 4px;
  border: 1px solid var(--theme--color--components--border);
  width: 100%;
  height: 100%;
  padding: 5px 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 2.38rem;
  font-weight: 600;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-form__host-type > span > span {
  width: 100%;
  text-align: center;
}
.c-form__host-type > span:hover {
  background-color: #eee;
}
.c-form__host-type input[type=radio]:disabled + span {
  opacity: 0.5;
  background-color: #eee;
  cursor: default;
}
.c-form__host-type input[type=radio]:focus + span {
  background-color: var(--theme--color--components--focus);
  border: 1px solid var(--theme--color--components--border--focus);
}
.c-form__host-type input[type=radio]:checked + span {
  background-color: var(--theme--color--components--focus);
  border: 1px solid var(--theme--color--components--border--focus);
}
.c-form__host-type [class^=type-] {
  background-repeat: no-repeat;
  background-position: center bottom 10px;
  background-size: 60% auto;
}
.c-form__host-type .type-1 {
  background-image: url(../img/common/hosttype_1.svg);
}
.c-form__host-type .type-4 {
  background-image: url(../img/common/hosttype_6.svg);
}
.c-form__host-type .type-6 {
  background-image: url(../img/common/hosttype_6.svg);
}
.c-form__host-type .type-5 {
  background-image: url(../img/common/hosttype_5.svg);
}
.c-form__host-type .type-2 {
  background-image: url(../img/common/hosttype_2.svg);
}
.c-form__host-type .type-3 {
  background-image: url(../img/common/hosttype_2.svg);
}

@media (min-width: 48.0625em) {
  .c-form__host-type > span {
    padding: 10px 10px 0;
  }
}
.c-form__toggle {
  display: none;
}

.c-form__toggle + label {
  display: block;
  position: relative;
  width: 52px;
  height: 21px;
  border-radius: 25px;
  margin-bottom: 0px;
  background-color: var(--theme--color--border--light);
}
.c-form__toggle + label::before {
  color: #FFF;
  display: block;
  content: attr(data-off-label);
  position: absolute;
  top: 2px;
  right: 9px;
  font-size: 1.1rem;
  line-height: 1.65rem;
}
.c-form__toggle + label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  background-color: #fff;
  border-radius: 50%;
}
.c-form__toggle + label, .c-form__toggle + label::before, .c-form__toggle + label::after {
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

.c-form__toggle + label:before { /* ○のoff */ }

.c-form__toggle + label:after { /* ○のon */ }

.c-form__toggle:checked + label {
  background-color: #CCFFCC;
  background-color: var(--theme--color--components--primary);
}
.c-form__toggle:checked + label:before {
  content: attr(data-on-label);
  left: 7px;
  right: auto;
  color: #333;
  color: #fff;
}
.c-form__toggle:checked + label:after { /* ○のonの配置 */
  left: 34px;
  background-color: #fff;
  text-shadow: 1px 1px 0px rgba(10, 10, 10, 0.5);
}

.c-form__toggle-switch input {
  display: none;
}
.c-form__toggle-switch label {
  width: 37px;
  height: 16px;
  background: rgba(24, 108, 205, 0.2);
  position: relative;
  display: inline-block;
  border-radius: 46px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-form__toggle-switch input:checked + label {
  background-color: rgba(24, 108, 205, 0.25);
}
.c-form__toggle-switch label:after {
  width: 16px;
  height: 16px;
  top: -2px;
  content: "";
  position: absolute;
  border-radius: 100%;
  left: 0;
  background: #fff;
  border: 2px solid rgba(50, 50, 50, 0.2);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.c-form__toggle-switch input:checked + label:after {
  border: none;
  background: var(--theme--color--components--primary);
  border: 2px solid var(--theme--color--components--primary);
  left: 16px;
}
.c-form__toggle-switch--size-sm label {
  width: 33px;
  height: 14px;
}
.c-form__toggle-switch--size-sm label:after {
  width: 14px;
  height: 14px;
  top: -2px;
}
.c-form__toggle-switch--size-sm input:checked + label:after {
  left: 16px;
}

.c-table th,
.c-table td {
  box-sizing: border-box;
}

.c-table--responsive tr {
  display: block;
}
.c-table--responsive tr > :first-child {
  padding-top: 10px;
}
.c-table--responsive tr > :last-child {
  padding-bottom: 10px;
}
.c-table--responsive th,
.c-table--responsive td {
  display: block;
  width: 100%;
}
.c-table--responsive td {
  word-break: break-all;
}

@media (min-width: 48.0625em) {
  .c-table--responsive tr {
    display: table-row;
    padding: 0;
  }
  .c-table--responsive tr > :first-child {
    padding-top: 8px;
  }
  .c-table--responsive tr > :last-child {
    padding-bottom: 8px;
  }
  .c-table--responsive th,
  .c-table--responsive td {
    display: table-cell;
    width: auto;
    margin-bottom: 0;
    vertical-align: middle;
  }
}
.c-table__borderd th {
  background: var(--theme--color--table-header);
  text-align: left;
  white-space: nowrap;
  color: #fff;
  font-weight: normal;
}
.c-table__borderd th, .c-table__borderd td {
  padding: 5px 10px;
  word-break: break-all;
}
.c-table__borderd tr.odd {
  background-color: var(--theme--color--table-cell);
}
.c-table__borderd tr.even {
  background-color: var(--theme--color--table-cell2);
}
.c-table__borderd tbody tr {
  border-bottom: 1px solid var(--theme--color--border);
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-table__borderd tbody tr:hover {
  background-color: var(--theme--color--table-cell--hover);
}
.c-table__borderd input[type=checkbox] {
  margin-right: 8px;
}

@media (min-width: 48.0625em) {
  .c-table__borderd th, .c-table__borderd td {
    padding: 8px 5px;
  }
  .c-table__borderd tr > :first-child {
    padding-left: 15px;
  }
}
.c-table__round-borderd {
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 1px 1px rgba(9, 30, 66, 0.25), 0px 1px 1px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.31);
  overflow: hidden;
}
.c-table__round-borderd thead tr {
  border-bottom: 1px solid var(--theme--color--border--light);
}
.c-table__round-borderd tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--theme--color--border--light);
}
.c-table__round-borderd tbody > tr:nth-of-type(even) th, .c-table__round-borderd tbody > tr:nth-of-type(even) td:not([class^=xmonStatus]) {
  background-color: var(--theme--color--table-cell2);
}
.c-table__round-borderd th, .c-table__round-borderd td {
  padding: 5px 10px;
}

.c-table__hard-return {
  word-break: break-all;
  white-space: initial;
}

.c-badge {
  word-break: keep-all;
  font-size: 1.4rem;
  line-height: 2.1rem;
  padding: 2px 10px;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.c-badge > i {
  margin-right: 3px;
}
.c-badge--size-xs {
  font-size: 1.1rem;
  line-height: 1.65rem;
}
.c-badge--size-sm {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.c-badge__primary {
  background: var(--theme--color--components--primary);
  color: #fff;
}
.c-badge__secondary {
  background: var(--theme--color--components--secondary);
  color: #fff;
}
.c-badge__tertiary {
  background: var(--theme--color--table-cell2);
}
.c-badge__success {
  background: #E5F6EF;
}
.c-badge__danger {
  background: #FDE7E7;
  color: #cc3333;
}
.c-badge__warning {
  background: #fff8d4;
}
.c-badge__info {
  background: #deedff;
  color: #1d63b7;
}
.c-badge__enable {
  background: #deedff;
  color: #1d63b7;
}
.c-badge__disable {
  background: var(--theme--color--table-cell2);
}
.c-badge__report-weekly {
  background: #FFE292;
  color: #8C6400;
}
.c-badge__report-daily {
  background: rgb(224, 241, 216);
  color: #265f02;
}
.c-badge__report-monthly {
  background: rgb(204, 234, 236);
  color: #006f6c;
}
.c-badge__report-custom {
  background: rgb(229, 210, 249);
  color: #4D2D7F;
}

.c-badge__round {
  border-radius: 50px;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 2.1rem;
  text-decoration: none;
  text-shadow: none;
  margin: 0;
  cursor: pointer;
  padding: 2px 9px;
  border: solid 1px var(--theme--color--border);
  background-color: #fff;
  border-radius: 7px;
  box-sizing: border-box;
  min-height: 31px;
  color: var(--theme--color--base-text);
  float: left;
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button > span {
  padding: 0;
  height: unset;
  font-size: unset;
}
.c-button:disabled {
  opacity: 0.5;
  background-color: #eee;
  cursor: default;
}
.c-button + .c-button {
  margin-left: 4px;
}
.c-button:hover {
  background-color: #eee;
}
.c-button.c-button--active {
  background: #eee;
}
.c-button--size-xs {
  font-size: 1.2rem;
  line-height: 1.8rem;
  min-height: 26px;
}
.c-button--size-sm {
  font-size: 1.3rem;
  line-height: 1.95rem;
  min-height: 28px;
}
.c-button--size-lg {
  font-size: 1.5rem;
  line-height: 2.25rem;
  padding: 7px 15px;
}
.c-button__primary {
  border: none;
  background: var(--theme--color--components--primary);
  color: #fff;
}
.c-button__primary:hover {
  opacity: 0.9;
  background: var(--theme--color--components--primary);
}
.c-button__primary:disabled {
  opacity: 0.5;
  background: var(--theme--color--components--primary);
}
.c-button__primary:disabled:hover {
  opacity: 0.5;
  background: var(--theme--color--components--primary);
}
.c-button__primary.c-button--active {
  background: var(--theme--color--components--primary);
}
.c-button__secondary {
  border: none;
  background: var(--theme--color--components--secondary);
  color: #fff;
}
.c-button__secondary:hover {
  opacity: 0.9;
  background: var(--theme--color--components--secondary);
}
.c-button__secondary:disabled {
  opacity: 0.5;
  background: var(--theme--color--components--secondary);
}
.c-button__secondary:disabled:hover {
  opacity: 0.5;
  background: var(--theme--color--components--secondary);
}
.c-button__secondary.c-button--active {
  background: var(--theme--color--components--secondary);
}
.c-button__tertiary {
  border: none;
  background: none;
}
.c-button__tertiary:hover {
  opacity: 0.9;
  background: transparent;
}
.c-button__tertiary:disabled {
  opacity: 0.5;
  background: transparent;
}
.c-button__tertiary:disabled:hover {
  opacity: 0.5;
  background: transparent;
}

.c-button--view {
  float: none;
}

.c-button__icon {
  display: inline-flex;
  align-items: center;
}
.c-button__icon i + span {
  margin-left: 6px;
}
.c-button__icon span {
  text-indent: unset;
}
.c-button__icon.c-button--size-sm i + span {
  margin-left: 3px;
}

.c-button__message-close {
  border: none;
  background: none;
  margin: -10px -10px -10px auto;
  width: 45px;
  height: 45px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__message-close--success i {
  color: #088752;
}
.c-button__message-close--success:hover {
  background: rgba(0, 167, 98, 0.1);
}
.c-button__message-close--danger i {
  color: #cc3333;
}
.c-button__message-close--danger:hover {
  background: #ffd5d5;
}
.c-button__message-close--warning i {
  color: #a98504;
}
.c-button__message-close--warning:hover {
  background: #fbf0b8;
}
.c-button__message-close--info i {
  color: #1d63b7;
}
.c-button__message-close--info:hover {
  background: #cce3ff;
}

.c-button__table-sort {
  border-radius: 50px;
  width: 22px;
  height: 22px;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__table-sort:hover {
  background: rgba(255, 255, 255, 0.2);
}

.c-button__header-menu {
  border-radius: 50px;
  width: 24px;
  height: 24px;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__header-menu:hover {
  background: rgba(255, 255, 255, 0.2);
}

.c-button__side-leftmenu {
  border-radius: 50px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__side-leftmenu:hover {
  background-color: #dddddd;
}
.c-button__side-leftmenu.active {
  background-color: #dddddd;
}

.c-button__side-close {
  border-radius: 50px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 0px 5px var(--theme--color--components--border);
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__side-close i {
  background: url(../img/icons/icon_arrow-left.svg) no-repeat center/cover;
}
.c-button__side-close:hover {
  background: var(--theme--color--components--dark);
}
.c-button__side-close:hover i {
  background: url(../img/icons/icon_arrow-left_wt.svg) no-repeat center/cover;
}

.c-button__panel-open {
  border-radius: 50px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 0px 5px var(--theme--color--components--border);
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__panel-open i {
  background: url(../img/icons/icon_arrow-down.svg) no-repeat center/cover;
}
.c-button__panel-open:hover {
  background: var(--theme--color--components--dark);
}
.c-button__panel-open:hover i {
  background: url(../img/icons/icon_arrow-down_wt.svg) no-repeat center/cover;
}

.c-button__panel-close {
  border-radius: 50px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 0px 5px var(--theme--color--components--border);
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-button__panel-close i {
  background: url(../img/icons/icon_arrow-up.svg) no-repeat center/cover;
}
.c-button__panel-close:hover {
  background: var(--theme--color--components--dark);
}
.c-button__panel-close:hover i {
  background: url(../img/icons/icon_arrow-up_wt.svg) no-repeat center/cover;
}

.c-icon {
  width: 18px;
  height: 18px;
  content: "";
  display: inline-block;
}
.c-icon--size-xxs {
  width: 12px;
  height: 12px;
}
.c-icon--size-xs {
  width: 14px;
  height: 14px;
}
.c-icon--size-sm {
  width: 16px;
  height: 16px;
}
.c-icon--size-lg {
  width: 20px;
  height: 20px;
}
.c-icon--size-xl {
  width: 22px;
  height: 22px;
}
.c-icon--size-xxl {
  width: 24px;
  height: 24px;
}

.c-icon__success {
  background: url(../img/icons/icon_success.svg) no-repeat center/cover;
}

.c-icon__warning {
  background: url(../img/icons/icon_warning.svg) no-repeat center/cover;
}

.c-icon__danger {
  background: url(../img/icons/icon_ng.svg) no-repeat center/cover;
}

.c-icon__question {
  background: url(../img/icons/icon_question.svg) no-repeat center/cover;
}
.c-icon__question--borderd {
  background: url(../img/icons/icon_question_borderd.svg) no-repeat center/cover;
}

.c-icon__login {
  background: url(../img/icons/icon_login.svg) no-repeat center/cover;
}

.c-icon__restart {
  background: url(../img/icons/icon_restart.svg) no-repeat center/cover;
}

.c-icon__escalator {
  background: url(../img/icons/icon_escalator.svg) no-repeat center/cover;
}
.c-icon__escalator--wt {
  background: url(../img/icons/icon_escalator_wt.svg) no-repeat center/cover;
}

.c-icon__escalation-run {
  background: url(../img/icons/icon_escalation-run.svg) no-repeat center/cover;
}
.c-icon__escalation-run--wt {
  background: url(../img/icons/icon_escalation-run_wt.svg) no-repeat center/cover;
}

.c-icon__map {
  background: url(../img/icons/icon_map.svg) no-repeat center/cover;
}

.c-icon__management {
  background: url(../img/icons/icon_management.svg) no-repeat center/cover;
}
.c-icon__management--wt {
  background: url(../img/icons/icon_management_wt.svg) no-repeat center/cover;
}

.c-icon__user-search {
  background: url(../img/icons/icon_usersearch.svg) no-repeat center/cover;
}

.c-icon__searchtext {
  background: url(../img/icons/icon_searchtext.svg) no-repeat center/cover;
}

.c-icon__user-list {
  background: url(../img/icons/icon_team.svg) no-repeat center/cover;
}

.c-icon__user-package-add {
  background: url(../img/icons/icon_user-package-add.svg) no-repeat center/cover;
}

.c-icon__threedot {
  background: url(../img/icons/icon_threedot.svg) no-repeat center/cover;
}
.c-icon__threedot--wt {
  background: url(../img/icons/icon_threedot_wt.svg) no-repeat center/cover;
}

.c-icon__threedot-horizontal {
  background: url(../img/icons/icon_threedot-horizontal.svg) no-repeat center/cover;
}
.c-icon__threedot-horizontal--wt {
  background: url(../img/icons/icon_threedot-horizontal_wt.svg) no-repeat center/cover;
}

.c-icon__external-link {
  /* 以下よりダウンロード https://iconmonstr.com/share-11-png/ */
  background: url(../img/icons/icon_external_link.svg) no-repeat center/cover;
}

.c-icon__arrow-left {
  background: url(../img/icons/icon_arrow-left.svg) no-repeat center/cover;
}

.c-icon__check-active {
  background: url(../img/icons/icon_check-active.svg) no-repeat center/cover;
}

.c-icon__graph {
  background: url(../img/serviceicons/icon_graph.svg) no-repeat center/cover;
}

.c-icon__time {
  background: url(../img/serviceicons/icon_time.svg) no-repeat center/cover;
}

.c-icon__comment {
  background: url(../img/icons/icon_comment.svg) no-repeat center/cover;
}

.c-icon__star {
  background: url(../img/icons/icon_star.svg) no-repeat center/cover;
}

.c-icon__x-mon {
  background: url(../img/icons/icon_x-mon.svg) no-repeat center/cover;
}

.c-icon__overview {
  background: url(../img/icons/icon_overview.svg) no-repeat center/cover;
}

.c-icon__drilldown {
  background: url(../img/icons/icon_drilldown.svg) no-repeat center/cover;
}

.c-icon__server {
  background: url(../img/icons/icon_server.svg) no-repeat center/cover;
}

.c-icon__computers {
  background: url(../img/icons/icon_computers.svg) no-repeat center/cover;
}

.c-icon__status--unavailable {
  background: url(../img/icons/icon_diagonal-line.svg) no-repeat center/cover;
}
.c-icon__status--unavailable--wt {
  background: url(../img/icons/icon_diagonal-line_wt.svg) no-repeat center/cover;
}

.c-icon__status--scheduled {
  position: relative;
}
.c-icon__status--scheduled .gg-repeat {
  position: absolute;
  top: -6px;
  left: -6px;
}

.c-icon__animation-flashing {
  animation: flash 1.5s linear infinite;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-down {
  background: #EA3C47;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-critical {
  background: #EA3C47;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-unreachable {
  background: #ef7304;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-unknown {
  background: #ef7304;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-warning {
  background: #D3AE00;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-up {
  background: #51B224;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-ok {
  background: #51B224;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-flapping {
  background: #9673A6;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-downtime {
  background: #0E8088;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-acknowledged {
  background: #6C8EBF;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-pending {
  background: #333;
}

.c-icon__colorbar {
  width: 6px;
  border-radius: 2px;
  margin-right: 4px;
}
.c-icon__colorbar.status-info {
  background: #1d63b7;
}

.c-icon__hosticon {
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-icon__hosticon--size-lg {
  width: 35px;
  height: 35px;
}
.c-icon__hosticon--size-xl {
  width: 40px;
  height: 40px;
}

.c-tooltip {
  border-radius: 4px;
  background: var(--theme--color--components--dark);
  border: 1px solid var(--theme--color--border--light);
  padding: 6px;
}

.c-tooltip__header {
  overflow: hidden;
  color: #fff;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1.725rem;
  font-weight: normal;
}

.c-tooltip__content {
  overflow: hidden;
  color: #fff;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1.725rem;
}
.c-tooltip__content a {
  color: #fff;
}

.c-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.c-link__icon:hover {
  opacity: 0.8;
}

.c-link__lefticon {
  display: inline-flex;
  align-items: center;
}
.c-link__lefticon i {
  margin-right: 5px;
  flex: none;
}

.c-link__view-full-details {
  text-decoration: none;
  color: var(--theme--color--base-text);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.95rem;
}

/* Project
----------------------------------------------------------------- */
.p-message {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.p-message--overlay {
  position: fixed;
  top: 60px;
  z-index: 700;
  width: calc(100% - 36px - 50px);
  left: 55px;
}
.p-message--dashboard {
  padding: 0 10px 10px;
}

@media (min-width: 48.0625em) {
  .p-message--overlay {
    width: 50%;
    min-width: 600px;
    right: 30px;
    left: auto;
  }
}
.p-badge__group {
  display: flex;
  align-items: center;
}
.p-badge__group > .c-badge:first-of-type {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.p-badge__group > .c-badge:last-of-type {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.p-badge__group > .c-badge:not(:first-of-type):not(:last-of-type) {
  border-radius: 0;
}

.p-button__group {
  position: relative;
}
.p-button__group > .c-button {
  margin-left: 0px;
  min-width: 35px;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.p-button__group > .c-button:first-of-type {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: none;
}
.p-button__group > .c-button:last-of-type {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.p-button__group > .c-button:not(:first-of-type):not(:last-of-type) {
  border-radius: 0;
  border-right: none;
}
.p-button__group > .c-button--size-xs {
  min-width: 30px;
}
.p-button__group > .c-button.c-button__primary:not(:last-of-type) {
  border-right: 1px solid rgb(18.6550218341, 83.9475982533, 159.3449781659);
}

.p-button__group-menu {
  position: absolute;
  z-index: 20;
  right: 0;
  top: 34px;
  margin-left: 0;
  border: 1px solid #dce4e9;
  border-radius: 6px;
  box-shadow: 0px 0px 5px #e9e9e9;
  box-sizing: border-box;
  background: #fff;
}
.p-button__group-menu li a {
  font-size: 1.3rem;
  line-height: 1.95rem;
  word-break: keep-all;
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--theme--color--base-text);
  overflow: hidden;
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.p-button__group-menu li a:hover {
  background: var(--theme--color--table-cell--hover);
}
.p-button__group-menu li:first-child a {
  padding-top: 8px;
}
.p-button__group-menu li:last-child a {
  padding-bottom: 8px;
}
.p-button__group-menu li.separator {
  border-top: 1px solid #dce4e9;
}
.p-button__group-menu li.separator a {
  padding-top: 8px;
}

.p-button__group-menu-icon li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-button__group-menu-icon li a span:first-child {
  width: 22px;
  margin-right: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-form__input + .p-form__input {
  margin-top: 10px;
}
.p-form__input__label-stuck {
  position: relative;
}
.p-form__input__label-stuck > .c-form__input, .p-form__input__label-stuck > .c-form__select {
  padding: 5px;
}
.p-form__input__label-stuck label {
  position: absolute;
  font-size: 1.1rem;
  line-height: 0.1rem;
  background: #fff;
  top: 0px;
  left: 10px;
  font-weight: normal;
}

@media (min-width: 48.0625em) {
  .p-form__input + .p-form__input {
    margin-top: 15px;
  }
  .p-form__input > .c-form {
    margin-top: 3px;
  }
  .p-form__input > .c-form__toggle + label {
    margin-top: 3px;
  }
  .p-form__input__label-stuck label {
    top: 3px;
  }
}
.p-form__input-row + .p-form__input-row {
  margin-top: 10px;
}

@media (min-width: 48.0625em) {
  .p-form__input-row {
    display: flex;
    align-items: center;
  }
  .p-form__input-row + .p-form__input-row {
    margin-top: 15px;
  }
  .p-form__input-row > div:nth-of-type(2) {
    padding-left: 10px;
    box-sizing: border-box;
  }
}
.p-form__inline {
  display: flex;
  align-items: center;
}

.p-form__checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.p-form__checkbox-list li {
  margin-right: 7px;
}

.p-panel__setting-group {
  border: 1px solid #dce4e9;
  border-radius: 6px;
  box-shadow: 0px 0px 5px #e9e9e9;
  box-sizing: border-box;
}
.p-panel__setting-group .ttl {
  padding: 15px;
  border-bottom: 1px solid var(--theme--color--border--light);
}
.p-panel__setting-group > div {
  padding: 15px;
  background: #f9fafb;
}

@media (min-width: 48.0625em) {
  .p-panel__setting-group .ttl {
    padding: 25px 35px;
  }
  .p-panel__setting-group > div {
    padding: 25px 35px 40px;
  }
}
.p-panel__autocomplete-list {
  border-radius: 6px;
  padding: 10px 7px 7px 10px;
  box-shadow: 0px 1px 1px rgba(9, 30, 66, 0.25), 0px 1px 1px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.31);
  max-height: 140px;
  margin-left: 0px;
  overflow-y: auto;
  background-color: #fff;
  width: 394px;
  overflow-x: hidden;
  word-break: break-all;
  position: absolute;
  z-index: 1;
}
.p-panel__autocomplete-list li.category {
  font-weight: bold;
  color: #507AAA;
}
.p-panel__autocomplete-list li.item:hover {
  background: #ccc;
  cursor: pointer;
}

@media (min-width: 48.0625em) {
  .p-panel__autocomplete-list {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
.p-panel__border-round {
  box-shadow: 0px 2px 1px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.25), 0px 0px 3px rgba(9, 30, 66, 0.31);
  border-radius: 6px;
  padding: 15px;
}

.p-panel__extinfo {
  box-shadow: 0px 2px 1px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.25), 0px 0px 3px rgba(9, 30, 66, 0.31);
  border-radius: 6px;
  padding: 15px;
  position: relative;
}
.p-panel__extinfo .panel-ttl {
  position: absolute;
  background: var(--theme--color--table-cell2);
  left: 0;
  top: 3px;
  padding: 0 8px 0 10px;
  height: 27px;
  border-radius: 0 6px 6px 0;
  display: inline-flex;
  align-items: center;
}
.p-panel__extinfo .panel-ttl i + span {
  margin-left: 4px;
}
.p-panel__extinfo--accordion {
  padding: 0;
}
.p-panel__extinfo--accordion .ttl {
  border-radius: 6px;
  cursor: pointer;
  padding: 3px 11px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 25px;
  overflow: hidden;
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.p-panel__extinfo--accordion .ttl > span {
  position: absolute;
  right: 6px;
  top: 4px;
}
.p-panel__extinfo--accordion .ttl:hover {
  background: var(--theme--color--table-cell--hover);
}
.p-panel__extinfo--accordion .box {
  padding: 0 15px 15px;
}

.p-panel__comment-thread-wrap {
  border: 1px solid var(--theme--color--border--light);
  border-radius: 6px;
  overflow: hidden;
}
.p-panel__comment-thread-wrap .p-panel__comment-thread {
  border-bottom: 1px solid var(--theme--color--border--light);
}
.p-panel__comment-thread-wrap .p-panel__comment-thread:last-of-type {
  border-bottom: none;
}

.p-panel__comment-thread {
  cursor: pointer;
  padding: 10px;
  box-sizing: border-box;
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.p-panel__comment-thread:hover {
  background: var(--theme--color--table-cell2);
}
.p-panel__comment-thread.active {
  background: var(--theme--color--table-cell2);
}

.p-panel__side-filter {
  background: #fff;
  box-shadow: 0px 2px 1px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.25), 0px 0px 3px rgba(9, 30, 66, 0.31);
  border-radius: 6px;
  position: relative;
  padding: 15px 15px 25px;
  box-sizing: border-box;
}
.p-panel__side-filter .c-button__side-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}

@media (min-width: 48.0625em) {
  .p-panel__side-filter {
    padding: 20px;
  }
}
.p-panel__setting-accordion {
  border-bottom: 1px solid #95AFCA;
  position: relative;
}
.p-panel__setting-accordion .panel-header {
  padding: 8px 15px;
  background: #EDF2F6;
  color: #3F5F81;
  border: 1px solid #95AFCA;
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-panel__setting-accordion .panel-header label {
  display: inline-flex;
  align-items: center;
}
.p-panel__setting-accordion .panel-header label > span {
  display: inline-flex;
  align-items: center;
}
.p-panel__setting-accordion .panel-header label > span > span {
  margin-left: 7px;
}
.p-panel__setting-accordion .panel-header label + div {
  flex: none;
}
.p-panel__setting-accordion .panel-header label + div .c-button + .c-button {
  margin: 0;
}
.p-panel__setting-accordion .panel-body {
  border-left: 1px solid #95AFCA;
  border-right: 1px solid #95AFCA;
  background: #F6F6F6;
  padding: 8px 15px;
  position: relative;
  box-sizing: border-box;
}
.p-panel__setting-accordion .panel-body.disabled {
  background: rgb(204, 204, 204);
}
.p-panel__setting-accordion .panel-body:hover .panel-button-wrap {
  opacity: 1;
}
.p-panel__setting-accordion .panel-body + .panel-body {
  background: #fff;
}
.p-panel__setting-accordion .panel-button-wrap {
  position: absolute;
  width: 100%;
  display: flex;
  left: 0;
  bottom: -15px;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition-property: "all";
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.p-panel__setting-accordion .panel-fold {
  height: 0;
  overflow: hidden;
  transition: all 1s;
  width: 100%;
  opacity: 0;
  padding: 0 15px;
}
.p-panel__setting-accordion .panel-fold.open {
  height: auto;
  opacity: 1;
  padding: 8px 15px;
}

.p-panel__setting-accordion + .p-panel__setting-accordion {
  margin-top: 20px;
}

/* Utility
----------------------------------------------------------------- */
.u-margin__mt5 {
  margin-top: 5px;
}

.u-margin__mt10 {
  margin-top: 10px;
}

.u-margin__mt15 {
  margin-top: 15px;
}

.u-margin__mt20,
.u-margin__mt25,
.u-margin__mt30,
.u-margin__mt35,
.u-margin__mt40,
.u-margin__mt45,
.u-margin__mt50,
.u-margin__mt60,
.u-margin__mt70,
.u-margin__mt80,
.u-margin__mt90,
.u-margin__mt100 {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .u-margin__mt5 {
    margin-top: 5px;
  }
  .u-margin__mt10 {
    margin-top: 10px;
  }
  .u-margin__mt15 {
    margin-top: 15px;
  }
  .u-margin__mt20 {
    margin-top: 20px;
  }
  .u-margin__mt25 {
    margin-top: 25px;
  }
  .u-margin__mt30 {
    margin-top: 30px;
  }
  .u-margin__mt35 {
    margin-top: 35px;
  }
  .u-margin__mt40 {
    margin-top: 40px;
  }
  .u-margin__mt45 {
    margin-top: 45px;
  }
  .u-margin__mt50 {
    margin-top: 50px;
  }
  .u-margin__mt60 {
    margin-top: 60px;
  }
  .u-margin__mt70 {
    margin-top: 70px;
  }
  .u-margin__mt80 {
    margin-top: 80px;
  }
  .u-margin__mt90 {
    margin-top: 90px;
  }
  .u-margin__mt100 {
    margin-top: 100px;
  }
}
.u-padding__pl5 {
  padding-left: 5px;
}

.u-padding__pl10 {
  padding-left: 10px;
}

.u-padding__pl15 {
  padding-left: 15px;
}

.u-padding__pl20,
.u-padding__pl25,
.u-padding__pl30 {
  padding-left: 30px;
}

.u-padding__pl35,
.u-padding__pl40,
.u-padding__pl45,
.u-padding__pl50,
.u-padding__pl60,
.u-padding__pl70,
.u-padding__pl80,
.u-padding__pl90,
.u-padding__pl100 {
  padding-left: 20px;
}

@media (min-width: 48.0625em) {
  .u-padding__pl5 {
    padding-left: 5px;
  }
  .u-padding__pl10 {
    padding-left: 10px;
  }
  .u-padding__pl15 {
    padding-left: 15px;
  }
  .u-padding__pl20 {
    padding-left: 20px;
  }
  .u-padding__pl25 {
    padding-left: 25px;
  }
  .u-padding__pl30 {
    padding-left: 30px;
  }
  .u-padding__pl35 {
    padding-left: 35px;
  }
  .u-padding__pl40 {
    padding-left: 40px;
  }
  .u-padding__pl45 {
    padding-left: 45px;
  }
  .u-padding__pl50 {
    padding-left: 50px;
  }
  .u-padding__pl60 {
    padding-left: 60px;
  }
  .u-padding__pl70 {
    padding-left: 70px;
  }
  .u-padding__pl80 {
    padding-left: 80px;
  }
  .u-padding__pl90 {
    padding-left: 90px;
  }
  .u-padding__pl100 {
    padding-left: 100px;
  }
}
.u-float--clearfix::after {
  clear: both;
  display: block;
  content: "";
}

:root {
  --ggs: .9;
}

.ggs--0_55 {
  --ggs: .55;
}

.ggs--0_6 {
  --ggs: .6;
}

.ggs--0_65 {
  --ggs: .65;
}

.ggs--0_7 {
  --ggs: .7;
}

.ggs--0_75 {
  --ggs: .75;
}

.ggs--0_8 {
  --ggs: .8;
}

.ggs--1_0 {
  --ggs: 1;
}

.ggs--1_1 {
  --ggs: 1.1;
}

.ggs--1_2 {
  --ggs: 1.2;
}

.u-size__w100 {
  width: 100%;
}

.u-size__auto {
  width: auto;
}

.u-display__none {
  display: none;
}

.u-display__inline {
  display: inline;
}

.u-display__inline-block {
  display: inline-block;
}

.u-display__block {
  display: block;
}

.u-display__flex {
  display: flex;
}

.u-display__inline-flex {
  display: inline-flex;
}

.u-display__sm-none {
  display: none;
}

.u-display__sm-inline {
  display: inline;
}

.u-display__sm-inline-block {
  display: inline-block;
}

.u-display__sm-block {
  display: block;
}

.u-display__sm-flex {
  display: flex;
}

.u-display__sm-inline-flex {
  display: inline-flex;
}

@media (min-width: 48.0625em) {
  .u-display__lg-none {
    display: none;
  }
  .u-display__lg-inline {
    display: inline;
  }
  .u-display__lg-inline-block {
    display: inline-block;
  }
  .u-display__lg-block {
    display: block;
  }
  .u-display__lg-flex {
    display: flex;
  }
  .u-display__lg-inline-flex {
    display: inline-flex;
  }
}
.u-fs__0_8 {
  font-size: 0.8rem;
  line-height: 1.36rem;
}

.u-fs__1 {
  font-size: 1rem;
  line-height: 1.5rem;
}

.u-fs__1_1 {
  font-size: 1.1rem;
  line-height: 1.65rem;
}

.u-fs__1_2 {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.u-fs__1_3 {
  font-size: 1.3rem;
  line-height: 1.95rem;
}

.u-fs__1_4 {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.u-fs__1_6 {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.u-fw__normal {
  font-weight: 400;
}

.u-fw__medium {
  font-weight: 600;
}

.u-fw__bold {
  font-weight: 700;
}

.u-text__center {
  text-align: center;
}

.u-text__left {
  text-align: left;
}

.u-text__right {
  text-align: right;
}

.u-word-break__break-all {
  word-break: break-all;
}

.u-word-break__keep-all {
  word-break: keep-all;
}

.u-white-space__nowrap {
  white-space: nowrap;
}
