@charset "UTF-8";
/* =============================================================================
   #Foundation
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Overpass:100,200,300,400,600,700,800,900");
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ol, ul, dl {
  margin: 0px;
  padding: 0px;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

fieldset, img, abbr, acronym {
  border: 0px;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

img {
  vertical-align: bottom;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

ol, ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

body {
  font-style: normal;
  font-weight: normal;
  font-family: YakuHanJP,'Overpass','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  -webkit-font-feature-settings: 'palt' 1;
          font-feature-settings: 'palt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  letter-spacing: .03em;
}

/* spacer */
/* color */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 1281px) {
  html {
    font-size: 12px;
  }
}

body {
  color: #313131;
  background-color: #f7f7f7;
  outline: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  body {
    line-height: 2;
  }
}
body.login {
  background-color: #f7f7f7;
  height: 100vh;
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.login a {
  color: #0088cc;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}
body.login a:hover {
  color: #00a3f5;
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

a {
  color: #0088cc;
  text-decoration: none;
}

/*
=============================================================================
   #Layout
=============================================================================
*/
.l-header {
  position: relative;
  background-color: #16264e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  z-index: 10;
  color: #FFF;
}
.l-header .l-header__logo {
  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;
  height: 60px;
  background-color: #000;
}

.l-header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 60px;
  cursor: pointer;
}
.l-header__btn i {
  -webkit-transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
}
.l-header__btn.open {
  background-color: #7f8992;
}
.l-header__btn:hover i {
  opacity: 0.7;
}

.l-header__menu {
  display: none;
  background-color: #7f8992;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 9;
  top: 60px;
  right: 0;
  width: 250px;
}
.l-header__menu a {
  display: block;
  color: #FFF;
}
.l-header__menu.open {
  display: block;
}

.l-gronavi {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.l-gronavi .l-gronavi__item a {
  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;
  color: #FFF;
  height: 60px;
  /*border-bottom: 1px solid $color-E;*/
  -webkit-transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
}
.l-gronavi .l-gronavi__item a:hover {
  background-color: #7f8992;
}

main {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main:after {
  content: "";
  height: 80px;
  display: block;
}

.l-main__inner {
  background-color: #FFF;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15);
}

.l-main-A {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f7f7f7;
  height: 100vh;
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*
=============================================================================
   #Object
=============================================================================
*/
/* -----------------------------------------------------------------------------
   #Component
   -------------------------------------------------------------------------- */
.c-headingA {
  font-weight: bold;
}

.c-headingB {
  font-weight: 900;
  line-height: 1;
}

.c-headingC {
  font-weight: bold;
  border-bottom: 1px solid #313131;
}

.c-headingD {
  font-weight: bold;
}

.c-btn-h, .l-header__menu a, .c-btn-xs {
  -webkit-transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  cursor: pointer;
}
.c-btn-h:hover, .l-header__menu a:hover, .c-btn-xs:hover {
  opacity: 0.7;
}

.c-btn-s {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  line-height: 1;
  border-radius: 3px;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.c-btn-s.submit {
  background-color: #0088cc;
  color: #FFF;
  -webkit-transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  text-decoration: none;
}
.c-btn-s.submit:hover, .c-btn-s.submit:active, .c-btn-s.submit:focus {
  background-color: #00aaff;
  color: #FFF;
}
.c-btn-s.size-s {
  width: 150px;
}
.c-btn-s.size-m {
  width: 200px;
}

.c-btn-xs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  color: #FFF !important;
  background-color: #7f8992;
  border-radius: 3px;
  border: none;
  margin-left: auto;
  margin-right: auto;
}

.c-pager {
  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;
}
.c-pager .c-pager__item {
  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;
  width: 40px;
  height: 40px;
  background-color: #7f8992;
  color: #FFF;
  -webkit-transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  text-decoration: none;
  border-radius: 3px;
  color: #FFF;
  margin: 0 5px;
}
.c-pager .c-pager__item:hover, .c-pager .c-pager__item:active, .c-pager .c-pager__item:focus {
  background-color: #9ba2a9;
  color: #FFF;
}
.c-pager .current {
  color: #7f8992;
  border: 1px solid #7f8992;
  background-color: #FFF;
  color: #7f8992;
  -webkit-transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  transition: all 0.15s cubic-bezier(0, 0.5, 0.5, 1);
  text-decoration: none;
}
.c-pager .current:hover, .c-pager .current:active, .c-pager .current:focus {
  background-color: white;
  color: #7f8992;
}

.c-layout-A {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.c-layout-B {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-layout-C {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-column-A {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-layout-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-layout-side > li {
  display: inline-block;
}
.c-layout-side > li:nth-last-of-type(1) {
  margin-right: 0 !important;
}

.c-layout-vertical > li:nth-last-of-type(1) {
  margin-bottom: 0 !important;
}

.l-bottom-btn {
  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;
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #FFF;
  border-top: 1px solid #DDD;
}

.c-tableA .c-tableA__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.c-tableA .c-tableA__item .column {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border-bottom: 1px solid #DDD;
}
.c-tableA .c-tableA__item .column.w-7 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 7% !important;
          flex: 0 1 7% !important;
}
.c-tableA .c-tableA__item .column.w-10 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 10% !important;
          flex: 0 1 10% !important;
}
.c-tableA .c-tableA__item .column.w-15 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 15% !important;
          flex: 0 1 15% !important;
}
.c-tableA .c-tableA__item .column.w-20 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 20% !important;
          flex: 0 1 20% !important;
}
.c-tableA .c-tableA__item .column.w-30 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 30% !important;
          flex: 0 1 30% !important;
}
.c-tableA .c-tableA__item .column.w-40 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 40% !important;
          flex: 0 1 40% !important;
}
.c-tableA .c-tableA__item .column.w-50 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 50% !important;
          flex: 0 1 50% !important;
}
.c-tableA .c-tableA__item .column.w-60 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 60% !important;
          flex: 0 1 60% !important;
}
.c-tableA .c-tableA__item .column.w-70 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 70% !important;
          flex: 0 1 70% !important;
}
.c-tableA .c-tableA__item .column.w-80 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 80% !important;
          flex: 0 1 80% !important;
}
.c-tableA .c-tableA__item .column.w-90 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 90% !important;
          flex: 0 1 90% !important;
}
.c-tableA .c-tableA__item .column.left {
  text-align: left !important;
}
.c-tableA .c-tableA__item .column.right {
  text-align: right !important;
}
.c-tableA .c-tableA__item .column:before {
  content: "";
  background-color: #FFF;
  position: absolute;
  width: 10px;
  height: 1px;
  bottom: -1px;
  left: -5px;
}
.c-tableA .c-tableA__item.th {
  font-weight: bold;
}
.c-tableA .c-tableA__item.th .column {
  border-bottom: 1px solid #313131;
}

.c-update {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10000;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.c-update__inner {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFF;
  border-radius: 3px;
  padding: calc(0.65rem*2.5) !important;
}

/* -----------------------------------------------------------------------------
   #Project
   -------------------------------------------------------------------------- */
.p-login-frame {
  width: 520px;
  background-color: #FFF;
}
.p-login-frame .logo {
  margin-left: auto;
  margin-right: auto;
  background-color: #16264e;
  color: #FFF;
  line-height: 1.4;
}

*:focus {
  outline: none !important;
}

input[type="text"], input[type="number"], input[type="password"],
textarea {
  font-size: 1.6rem;
  background-color: #e8e8e8;
  border: none;
  padding: 10px;
}

.p-must {
  color: #f83f60;
}

/* size */
.p-size-f {
  width: 100%;
}

.p-size-xs {
  width: 50px;
}

.p-size-s {
  width: 100px;
}

.p-size-m {
  width: 300px;
}

.p-size-lg {
  width: 500px;
}

.p-size-A {
  width: 200px;
}

.p-error {
  color: #f83f60;
}

.p-cap {
  color: #009588;
}

/* checkbox */
.p-checkbox {
  display: none;
}

.p-checkbox-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-checkbox-text:before {
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  content: "\f0c8";
}

.p-checkbox:checked + .p-checkbox-text:before {
  content: "\f14a";
  font-weight: 900;
}

/* radio */
.p-radio {
  display: none;
}

.p-radio-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-radio-text:before {
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  content: "\f111";
}

.p-radio:checked + .p-radio-text:before {
  content: "\f058";
  font-weight: 900;
}

/* カレンダーのインジケータカスタマイズ */
/* date */
input[type="date"] {
  font-size: 1.5rem;
  position: relative;
  padding: 0 10px;
  width: 211px;
  border: 0;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: block;
  background: none;
  color: transparent;
  cursor: pointer;
}

/* month */
input[type="month"] {
  font-size: 1.5rem;
  position: relative;
  padding: 0 10px;
  width: 200px;
  border: 0;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="month"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="month"]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type="month"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: block;
  background: none;
  color: transparent;
  cursor: pointer;
}

.input_date_area {
  position: relative;
  display: inline-block;
  width: 200px;
  line-height: 40px;
  border: 1px solid #DDD;
}
.input_date_area:before {
  position: absolute;
  top: 0;
  right: 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;
  width: 40px;
  height: 40px;
  font-family: 'Font Awesome 5 Free';
  content: "\f073";
}

/* select */
.p-select {
  overflow: hidden;
  text-align: center;
}

.p-select select {
  width: 100%;
  font-size: 1.6rem;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 10px 38px 10px 10px;
  outline: none;
}

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

.p-select {
  position: relative;
  border: 1px solid #DDD;
  background: #ffffff;
}
.p-select:before {
  position: absolute;
  top: 5px;
  right: 10px;
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  content: "\f0d7";
  font-weight: 700;
  pointer-events: none;
}

/* -----------------------------------------------------------------------------
   #Utility
   -------------------------------------------------------------------------- */
.u-d-p {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-d-p {
    display: inline-block;
  }
}

.u-d-m {
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .u-d-m {
    display: none;
  }
}

.u-i-b {
  display: inline-block;
}

.u-m0 {
  margin: 0 !important;
}

.u-m-a {
  margin: auto;
}

.u-m0-a {
  margin: 0 auto !important;
}

.u-m-a-0 {
  margin: auto 0 !important;
}

.u-m-xs {
  margin: calc(0.65rem*1.5);
}

.u-m-sm {
  margin: calc(0.65rem*2.5);
}

.u-m-md {
  margin: calc(0.65rem*4);
}

.u-m-lg {
  margin: calc(0.65rem*6);
}

.u-m-xl {
  margin: calc(0.65rem*10);
}

.u-m-xxl {
  margin: calc(0.65rem*14);
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt-a {
  margin-top: auto;
}

.u-mt-xs {
  margin-top: calc(0.65rem*1.5);
}

.u-mt-sm {
  margin-top: calc(0.65rem*2.5);
}

.u-mt-md {
  margin-top: calc(0.65rem*4);
}

.u-mt-lg, .c-headingC, .c-headingD {
  margin-top: calc(0.65rem*6);
}

.u-mt-xl {
  margin-top: calc(0.65rem*10);
}

.u-mt-xxl {
  margin-top: calc(0.65rem*14);
}

.u-mr0 {
  margin-right: 0 !important;
}

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

.u-mr-xs, input[type="checkbox"], .p-checkbox-text:before, input[type="radio"], .p-radio-text:before {
  margin-right: calc(0.65rem*1.5);
}

.u-mr-sm, .c-layout-side > li {
  margin-right: calc(0.65rem*2.5);
}

.u-mr-md {
  margin-right: calc(0.65rem*4);
}

.u-mr-lg {
  margin-right: calc(0.65rem*6);
}

.u-mr-xl {
  margin-right: calc(0.65rem*10);
}

.u-mr-xxl {
  margin-right: calc(0.65rem*14);
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb-a {
  margin-bottom: auto;
}

.u-mb-xs {
  margin-bottom: calc(0.65rem*1.5);
}

.u-mb-sm, .c-headingC, .c-layout-vertical > li {
  margin-bottom: calc(0.65rem*2.5);
}

.u-mb-md {
  margin-bottom: calc(0.65rem*4);
}

.u-mb-lg {
  margin-bottom: calc(0.65rem*6);
}

.u-mb-xl {
  margin-bottom: calc(0.65rem*10);
}

.u-mb-xxl {
  margin-bottom: calc(0.65rem*14);
}

.u-ml0 {
  margin-left: 0 !important;
}

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

.u-ml-xs {
  margin-left: calc(0.65rem*1.5);
}

.u-ml-sm {
  margin-left: calc(0.65rem*2.5);
}

.u-ml-md {
  margin-left: calc(0.65rem*4);
}

.u-ml-lg {
  margin-left: calc(0.65rem*6);
}

.u-ml-xl {
  margin-left: calc(0.65rem*10);
}

.u-ml-xxl {
  margin-left: calc(0.65rem*14);
}

.u-mx0 {
  margin-left: 0;
  margin-right: 0;
}

.u-my0 {
  margin-top: 0;
  margin-bottom: 0;
}

.u-mx-a {
  margin-left: auto;
  margin-right: auto;
}

.u-my-a {
  margin-top: auto;
  margin-bottom: auto;
}

.u-mx-xs {
  margin-left: calc(0.65rem*1.5);
  margin-right: calc(0.65rem*1.5);
}

.u-my-xs {
  margin-top: calc(0.65rem*1.5);
  margin-bottom: calc(0.65rem*1.5);
}

.u-mx-sm {
  margin-left: calc(0.65rem*2.5);
  margin-right: calc(0.65rem*2.5);
}

.u-my-sm {
  margin-top: calc(0.65rem*2.5);
  margin-bottom: calc(0.65rem*2.5);
}

.u-mx-md {
  margin-left: calc(0.65rem*4);
  margin-right: calc(0.65rem*4);
}

.u-my-md {
  margin-top: calc(0.65rem*4);
  margin-bottom: calc(0.65rem*4);
}

.u-mx-lg {
  margin-left: calc(0.65rem*6);
  margin-right: calc(0.65rem*6);
}

.u-my-lg {
  margin-top: calc(0.65rem*6);
  margin-bottom: calc(0.65rem*6);
}

.u-mx-xl {
  margin-left: calc(0.65rem*10);
  margin-right: calc(0.65rem*10);
}

.u-my-xl {
  margin-top: calc(0.65rem*10);
  margin-bottom: calc(0.65rem*10);
}

.u-mx-xxl {
  margin-left: calc(0.65rem*14);
  margin-right: calc(0.65rem*14);
}

.u-my-xxl {
  margin-top: calc(0.65rem*14);
  margin-bottom: calc(0.65rem*14);
}

.u-p0 {
  padding: 0 !important;
}

.u-p-xs, .l-header__menu a {
  padding: calc(0.65rem*1.5) !important;
}

.u-p-sm, main, .l-main__inner, .c-tableA .c-tableA__item .column, .p-login-frame .logo {
  padding: calc(0.65rem*2.5) !important;
}

.u-p-md {
  padding: calc(0.65rem*4) !important;
}

.u-p-lg {
  padding: calc(0.65rem*6) !important;
}

.u-p-xl {
  padding: calc(0.65rem*10) !important;
}

.u-p-xxl {
  padding: calc(0.65rem*14) !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: calc(0.65rem*1.5) !important;
}

.u-pt-sm {
  padding-top: calc(0.65rem*2.5) !important;
}

.u-pt-md {
  padding-top: calc(0.65rem*4) !important;
}

.u-pt-lg {
  padding-top: calc(0.65rem*6) !important;
}

.u-pt-xl {
  padding-top: calc(0.65rem*10) !important;
}

.u-pt-xxl {
  padding-top: calc(0.65rem*14) !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pr-xs {
  padding-right: calc(0.65rem*1.5) !important;
}

.u-pr-sm {
  padding-right: calc(0.65rem*2.5) !important;
}

.u-pr-md {
  padding-right: calc(0.65rem*4) !important;
}

.u-pr-lg {
  padding-right: calc(0.65rem*6) !important;
}

.u-pr-xl {
  padding-right: calc(0.65rem*10) !important;
}

.u-pr-xxl {
  padding-right: calc(0.65rem*14) !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb-xs, .c-pager {
  padding-bottom: calc(0.65rem*1.5) !important;
}

.u-pb-sm {
  padding-bottom: calc(0.65rem*2.5) !important;
}

.u-pb-md {
  padding-bottom: calc(0.65rem*4) !important;
}

.u-pb-lg {
  padding-bottom: calc(0.65rem*6) !important;
}

.u-pb-xl {
  padding-bottom: calc(0.65rem*10) !important;
}

.u-pb-xxl {
  padding-bottom: calc(0.65rem*14) !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pl-xs {
  padding-left: calc(0.65rem*1.5) !important;
}

.u-pl-sm {
  padding-left: calc(0.65rem*2.5) !important;
}

.u-pl-md {
  padding-left: calc(0.65rem*4) !important;
}

.u-pl-lg {
  padding-left: calc(0.65rem*6) !important;
}

.u-pl-xl {
  padding-left: calc(0.65rem*10) !important;
}

.u-pl-xxl {
  padding-left: calc(0.65rem*14) !important;
}

.u-px0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-py0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-px-xs {
  padding-left: calc(0.65rem*1.5) !important;
  padding-right: calc(0.65rem*1.5) !important;
}

.u-py-xs {
  padding-top: calc(0.65rem*1.5) !important;
  padding-bottom: calc(0.65rem*1.5) !important;
}

.u-px-sm, .l-header .l-header__logo, .l-gronavi .l-gronavi__item a {
  padding-left: calc(0.65rem*2.5) !important;
  padding-right: calc(0.65rem*2.5) !important;
}

.u-py-sm {
  padding-top: calc(0.65rem*2.5) !important;
  padding-bottom: calc(0.65rem*2.5) !important;
}

.u-px-md {
  padding-left: calc(0.65rem*4) !important;
  padding-right: calc(0.65rem*4) !important;
}

.u-py-md {
  padding-top: calc(0.65rem*4) !important;
  padding-bottom: calc(0.65rem*4) !important;
}

.u-px-lg {
  padding-left: calc(0.65rem*6) !important;
  padding-right: calc(0.65rem*6) !important;
}

.u-py-lg {
  padding-top: calc(0.65rem*6) !important;
  padding-bottom: calc(0.65rem*6) !important;
}

.u-px-xl {
  padding-left: calc(0.65rem*10) !important;
  padding-right: calc(0.65rem*10) !important;
}

.u-py-xl {
  padding-top: calc(0.65rem*10) !important;
  padding-bottom: calc(0.65rem*10) !important;
}

.u-px-xxl {
  padding-left: calc(0.65rem*14) !important;
  padding-right: calc(0.65rem*14) !important;
}

.u-py-xxl {
  padding-top: calc(0.65rem*14) !important;
  padding-bottom: calc(0.65rem*14) !important;
}

.u-fs-xxxl {
  font-size: 5.4em !important;
}
@media screen and (min-width: 960px) {
  .u-fs-xxxl {
    font-size: 7.2rem !important;
  }
}

.u-fs-xxl, .c-headingB {
  font-size: 2.4rem !important;
}
@media screen and (min-width: 600px) {
  .u-fs-xxl, .c-headingB {
    font-size: 3.6rem !important;
  }
}
@media screen and (min-width: 960px) {
  .u-fs-xxl, .c-headingB {
    font-size: 4.4rem !important;
  }
}

.u-fs-xl {
  font-size: 2.4rem !important;
}
@media screen and (min-width: 1281px) {
  .u-fs-xl {
    font-size: 3.2rem !important;
  }
}

.u-fs-lg, .c-headingA, .p-checkbox-text:before, .p-radio-text:before {
  font-size: 2rem !important;
}
@media screen and (min-width: 1281px) {
  .u-fs-lg, .c-headingA, .p-checkbox-text:before, .p-radio-text:before {
    font-size: 2.4rem !important;
  }
}

.u-fs-md, .c-headingD {
  font-size: 1.7rem !important;
}
@media screen and (min-width: 960px) {
  .u-fs-md, .c-headingD {
    font-size: 1.8rem !important;
  }
}

.u-fs-sm, .l-header__menu, .c-tableA .c-tableA__item.th, .p-error, .p-cap {
  font-size: 1.4rem !important;
}

.u-fs-xs {
  font-size: 1.2rem !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fw-br {
  font-weight: bolder !important;
}

.u-fw-lr {
  font-weight: lighter !important;
}

.u-fw100 {
  font-weight: 100 !important;
}

.u-fw200 {
  font-weight: 200 !important;
}

.u-fw300 {
  font-weight: 300 !important;
}

.u-fw400 {
  font-weight: 400 !important;
}

.u-fw500 {
  font-weight: 500 !important;
}

.u-fw600 {
  font-weight: 600 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-fw800 {
  font-weight: 800 !important;
}

.u-fw900 {
  font-weight: 900 !important;
}

.u-fsmt {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
}

.u-br-m {
  display: block;
}
@media screen and (min-width: 600px) {
  .u-br-m {
    display: none;
  }
}

.u-br-p {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-br-p {
    display: block;
  }
}

span.br {
  display: inline-block;
}

.u-lh-1 {
  line-height: 1;
}

.u-cf:before,
.u-cf:after {
  content: " ";
  display: table;
}

.u-cf:after {
  clear: both;
}

.u-cf {
  *zoom: 1;
}
