@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@300;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&family=Noto+Serif+JP:wght@500&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  padding: 0;
  color: #0e1216;
}

.container-fluid {
  max-width: 810px;
}

/* ヘッダー */
.header {
  /* ヘッダーINFO */
}
.header a {
  color: #0e1216;
}
.header .d-nav-info {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: #f2f2f2;
  border-radius: 4px;
  padding: 12px;
  letter-spacing: -0.05em;
}
.header .d-nav-info a {
  position: relative;
}
.header .d-nav-info a:hover, .header .d-nav-info a:active, .header .d-nav-info a:visited, .header .d-nav-info a:focus {
  text-decoration: none;
}
.header .d-nav-info div:nth-child(2) {
  margin-right: 10px;
}
.header .d-nav-info div:nth-child(2)::before {
  content: "";
  border-left: #0e1216 1px solid;
  padding-left: 14px;
}
.header .d-nav-info .caret {
  border: none;
  position: relative;
  top: -2px;
  right: -16px;
  width: 17px;
  height: 2px;
  background: #0e1216;
}
.header .d-nav-info .caret::before {
  content: "";
  position: absolute;
  top: -6px;
  width: 17px;
  height: 2px;
  background: #0e1216;
}
.header .d-nav-info .caret::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 17px;
  height: 2px;
  background: #0e1216;
}

/* ナビゲーションバー */
.navbar {
  min-height: auto;
  background-color: #ffdc50;
  border: none;
  margin-bottom: 0;
}
.navbar ul.nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.navbar ul.nav-pills li {
  width: 25%;
  text-align: center;
  border-left: #fff 1px solid;
}
.navbar ul.nav-pills li:last-child {
  border-right: #fff 1px solid;
}
.navbar ul.nav-pills li:nth-child(1) {
  background: url(/cli03/img/ico-record.svg) no-repeat 10px center;
  background-size: 32px;
  position: initial;
}
.navbar ul.nav-pills li:nth-child(2) {
  background: url(/cli03/img/ico-admin.svg) no-repeat 10px center;
  background-size: 32px;
  position: initial;
}
.navbar ul.nav-pills li:nth-child(3) {
  background: url(/cli03/img/ico-office.svg) no-repeat 10px center;
  background-size: 32px;
  position: initial;
}
.navbar ul.nav-pills li:nth-child(4) {
  background: url(/cli03/img/ico-business.svg) no-repeat 10px center;
  background-size: 32px;
  position: initial;
}
.navbar ul.nav-pills li.menu__multi > a {
  position: relative;
  padding: 14px 15px;
  color: #0e1216;
}
.navbar ul.nav-pills li.menu__multi > a::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0e1216;
  border-right: 1px solid #0e1216;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.navbar ul.nav-pills li.menu__multi > a:hover, .navbar ul.nav-pills li.menu__multi > a:active, .navbar ul.nav-pills li.menu__multi > a:visited, .navbar ul.nav-pills li.menu__multi > a:focus {
  background-color: transparent;
  border-radius: inherit;
}
.navbar ul.nav-pills li.menu__multi > a.is-active + .nav__second-level {
  visibility: visible;
  opacity: 1;
}
.navbar ul.nav-pills li .nav__second-level {
  position: absolute;
  width: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 20px 0;
  text-align: left;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.navbar ul.nav-pills li .nav__second-level .row {
  margin-bottom: 20px;
}
.navbar ul.nav-pills li .nav__second-level p {
  margin-bottom: 10px;
  font-size: 14px;
}
.navbar ul.nav-pills li .nav__second-level .c-btn--icon__arrow::after {
  right: 8px;
}

/* Button */
.c-btn {
  position: relative;
  display: block;
  width: 100%;
  border: #0e1216 1px solid;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 12px;
  text-align: center;
  color: #0e1216;
}
.c-btn--icon {
  padding: 10px;
}
.c-btn--icon__arrow::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #0e1216;
  border-right: 1px solid #0e1216;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btn--icon__pic {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 110px;
  padding: 10px 20px;
}
.c-btn--icon__dl::after {
  content: url(/cli03/img/ico-dl.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(12%, -40%);
          transform: translate(12%, -40%);
}
.c-btn:hover, .c-btn:active, .c-btn:visited, .c-btn:focus {
  text-decoration: none;
  color: #0e1216;
}
.c-btn span {
  display: inline-block;
  font-size: 13px;
}
.c-btn + p {
  font-size: 13px;
}
.c-btn--nav {
  padding: 14px;
  background-color: #333;
  border: #fff 1px solid;
  text-align: left;
  color: #fff !important;
}
.c-btn--nav::after {
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.c-btn--nav.bg-primary {
  color: #0e1216 !important;
}
.c-btn--nav.bg-primary::after {
  content: "";
  border-top: 1px solid #0e1216;
  border-right: 1px solid #0e1216;
}
.col-xs-3 a.c-btn + p {
  margin-bottom: 24px;
}

/* Flex */
.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-flex.al-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-txt__link {
  color: #fff !important;
  display: block;
  line-height: 2.4;
  letter-spacing: -0.05em;
  text-indent: -0.5em;
}

.bg-primary {
  background-color: #ffdc50;
}

.bg-secondary {
  background-color: #f2f2f2;
}
.bg-secondary__radius {
  border-radius: 4px;
}

.bg-third {
  background-color: #fff4f5;
}
.bg-third__radius {
  border-radius: 4px;
}

.bg-fourth {
  background-color: #5cb270;
}

a:hover, a:active, a:visited, a:focus {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.adress {
  display: block;
  margin-top: 75px;
  padding: 35px 0;
  border-top: #0e1216 1px solid;
  font-size: 12px;
  text-align: center;
}

/* ページトップ */
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  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: 64px;
  height: 64px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.1);
  /*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  left: 40%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #0e1216;
  border-right: 1px solid #0e1216;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}/*# sourceMappingURL=glovalnav-style.css.map */