@charset "UTF-8";
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.l-openbtn {
  position: absolute;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: #333;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999;
  /*ボタンを最前面に*/
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/ }
  .l-openbtn span {
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%; }
    .l-openbtn span:nth-of-type(1) {
      top: 15px; }
    .l-openbtn span:nth-of-type(2) {
      top: 23px; }
    .l-openbtn span:nth-of-type(3) {
      top: 31px; }
  .l-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 30%; }
  .l-openbtn.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/ }
  .l-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
    width: 30%; }

/*========= スクロール途中からヘッダーの高さが小さくなるためのCSS ===============*/
.l-header {
  /*はじめの高さを設定*/
  height: auto;
  width: 100%;
  /*以下はレイアウトのためのCSS*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 0;
  position: relative;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  z-index: 998; }
  .l-header_sub {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #90C31E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .l-header_sub-title {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-left: 15px;
      margin: 0; }
      .l-header_sub-title_badge {
        height: 25px;
        width: 110px;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #F45B37;
        font-size: 14px;
        margin-right: 8px; }
      .l-header_sub-title_main {
        font-size: 14px; }
    .l-header_sub-btns {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      height: 100%; }
    .l-header_sub-btn {
      position: relative;
      width: 150px;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0;
      font-weight: bold;
      font-size: 14px; }
      .l-header_sub-btn.user {
        background-color: #F4F437;
        color: #333; }
        .l-header_sub-btn.user:hover {
          background-color: #ffff00; }
      .l-header_sub-btn.dairiten {
        background-color: #1B9345;
        color: #fff; }
        .l-header_sub-btn.dairiten:hover {
          background-color: #04b241; }
      .l-header_sub-btn.logout {
        background-color: #626564;
        color: #fff; }
        .l-header_sub-btn.logout:hover {
          background-color: #383b3a; }
  .l-header_main {
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    position: relative; }
    .l-header_main-logo {
      width: 160px;
      height: auto; }
    .l-header_main-nav {
      position: relative; }
      .l-header_main-nav-list {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 6px; }
        .l-header_main-nav-list li {
          font-size: 16px;
          position: relative;
          list-style: none;
          padding: 0 6px; }
          .l-header_main-nav-list li a {
            color: #525252;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            height: 40px; }
          @media screen and (min-width: 769px) {
            .l-header_main-nav-list li::after {
              content: '';
              display: block;
              position: absolute;
              bottom: 0;
              left: 50%;
              -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              transform: translateX(-50%);
              height: 2px;
              width: 0;
              max-width: 40px;
              background-color: #90C31E;
              -webkit-transition: width .4s ease;
              -o-transition: width .4s ease;
              transition: width .4s ease; }
            .l-header_main-nav-list li.current-menu-item::after, .l-header_main-nav-list li:hover::after {
              width: 100%; } }

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-170px);
    transform: translateY(-170px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-170px);
    transform: translateY(-170px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@media screen and (min-width: 769px) {
  .l-openbtn {
    display: none; }
  .l-header.HeightMin {
    position: fixed;
    z-index: 999;
    top:0;
    left:0;
    /*最前面へ*/
    -webkit-animation: DownAnime 0.5s forwards;
    animation: DownAnime 0.5s forwards; } }

@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    z-index: 1000; }
    .l-header_sub {
      height: 30px;
      padding: 4px 8px; }
      .l-header_sub-title {
        padding-left: 0; }
        .l-header_sub-title_badge {
          height: 20px;
          width: 100px;
          font-size: 12px; }
        .l-header_sub-title_main {
          font-size: 12px; }
    .l-header_main {
      z-index: 1000; }
  .l-header_main-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    top: 90px;
    right: -100%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    height: calc(100vh - 90px);
    background: #fff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1) inset;
    /*動き*/
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    padding: 30px 15px;
    /*アクティブクラスがついたら位置を0に*/ }
    .l-header_main-nav .l-header_main-nav-list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0;
      border-bottom: solid 1px #ccc;
      gap: 0; }
      .l-header_main-nav .l-header_main-nav-list li {
        list-style: none;
        text-align: center;
        border-top: solid 1px #ccc;
        padding: 0; }
        .l-header_main-nav .l-header_main-nav-list li a {
          color: #333;
          text-decoration: none;
          padding: 6px 10px;
          display: block;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          font-weight: bold; }
          .l-header_main-nav .l-header_main-nav-list li a:hover {
            background-color: rgba(144, 195, 30, 0.5); }
    .l-header_main-nav .l-header_main-nav-btns {
      position: relative;
      margin-top: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 10px; }
      .l-header_main-nav .l-header_main-nav-btns .l-header_main-nav-btn {
        position: relative;
        width: 100%;
        max-width: 360px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        font-weight: bold;
        font-size: 14px; }
        .l-header_main-nav .l-header_main-nav-btns .l-header_main-nav-btn.user {
          background-color: #F4F437;
          color: #333; }
          .l-header_main-nav .l-header_main-nav-btns .l-header_main-nav-btn.user:hover {
            background-color: #ffff00; }
        .l-header_main-nav .l-header_main-nav-btns .l-header_main-nav-btn.dairiten {
          background-color: #1B9345;
          color: #fff; }
          .l-header_main-nav .l-header_main-nav-btns .l-header_main-nav-btn.dairiten:hover {
            background-color: #04b241; }
    .l-header_main-nav.panelactive {
      top: 0;
      top: 90px;
      right: 0; } }

.l-footer {
  position: relative;
  width: 100%; }
  .l-footer-body {
    position: relative;
    width: 100%;
    background-color: #EFEFEF;
    padding-top: 60px;
    padding-bottom: 60px; }
    .l-footer-body_contents {
      position: relative;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 50px; }
      .l-footer-body_contents:not(:last-of-type) {
        margin-bottom: 30px; }
  .l-footer_sitename {
    position: relative;
    width: 290px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px; }
    .l-footer_sitename-logo {
      position: relative;
      width: 100%;
      height: auto; }
    .l-footer_sitename-title {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 6px;
      width: 100%;
      margin: 0; }
      .l-footer_sitename-title_badge {
        position: relative;
        width: 100%;
        padding: 4px 6px;
        background-color: #F45B37;
        color: #fff;
        text-align: center;
        font-size: 12px;
        font-weight: 600; }
      .l-footer_sitename-title_main {
        text-align: center;
        font-size: 15px;
        color: #333;
        letter-spacing: .1em;
        font-weight: 600; }
  .l-footer_sitemap {
    position: relative;
    width: calc(100% - 340px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px; }
    .l-footer_sitemap ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 10px 20px;
      padding-left: 0; }
      .l-footer_sitemap ul li {
        list-style: none; }
        .l-footer_sitemap ul li::before {
          content: '-';
          display: inline-block;
          margin-right: 4px;
          font-weight: bold; }
        .l-footer_sitemap ul li a {
          font-size: 14px;
          letter-spacing: .1em;
          color: #333; }
          .l-footer_sitemap ul li a:hover {
            color: #90C31E; }
  .l-footer-inner {
    position: relative;
    width: 100%;
    max-width: 1030px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto; }
  .l-footer-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #90C31E;
    position: relative;
    color: #fff; }
    .l-footer-bottom_contents {
      position: relative;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .l-footer-bottom_copy {
      font-size: 12px; }
    .l-footer-bottom_sns {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 6px;
      padding-left: 0; }
      .l-footer-bottom_sns li {
        list-style: none;
        height: 20px;
        overflow: hidden; }
  @media screen and (max-width: 768px) {
    .l-footer-body {
      padding-top: 40px;
      padding-bottom: 40px; }
      .l-footer-body_contents {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px; }
    .l-footer_sitename {
      width: 240px; }
      .l-footer_sitename-title_main {
        font-size: 13px; }
    .l-footer_sitemap {
      width: 100%; }
      .l-footer_sitemap ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px; }
        .l-footer_sitemap ul li {
          list-style: none; }
          .l-footer_sitemap ul li::before {
            content: '-';
            display: inline-block;
            margin-right: 4px;
            font-weight: bold; }
          .l-footer_sitemap ul li a {
            font-size: 13px;
            letter-spacing: .05em;
            color: #333; }
            .l-footer_sitemap ul li a:hover {
              color: #90C31E; }
    .l-footer-bottom_contents {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      gap: 10px; }
    .l-footer-bottom_copy {
      font-size: 12px; }
    .l-footer-bottom_sns {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 6px; }
      .l-footer-bottom_sns li {
        list-style: none; } }

.p-dairiten-banner {
  position: relative;
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  border: solid 2px #CF5207; }
  .p-dairiten-banner_heading {
    background-color: #CF5207;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 6px 10px; }
  .p-dairiten-banner_body {
    background-color: #ffffff;
    padding: 15px 10px;
    text-align: center; }
  .p-dairiten-banner_text {
    font-size: 18px;
    letter-spacing: .1em;
    font-weight: bold;
    position: relative;
    margin-bottom: 15px; }
    .p-dairiten-banner_text span {
      display: inline-block; }
  .p-dairiten-banner_btn {
    background-color: #90C31E;
    width: 100%;
    max-width: 250px;
    height: 40px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px; }
    .p-dairiten-banner_btn:hover {
      color: #ffffff;
      background-color: #04b241; }
  @media screen and (max-width: 768px) {
    .p-dairiten-banner_heading {
      font-size: 16px; }
    .p-dairiten-banner_text {
      font-size: 16px; } }

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important; } }

@media screen and (min-width: 769px) {
  .u-sp-only {
    display: none !important; } }

.p-news-list {
  position: relative;
  width: 100%;
  padding: 0;
  border-top: solid 1px #C3C3C3; }
  .p-news-list.large .p-news-item_date {
    font-size: 16px;
    width: 140px; }
  .p-news-list.large .p-news-item_title {
    width: 100%; }
    .p-news-list.large .p-news-item_title a {
      font-size: 18px;
      font-weight: bold; }
  .p-news-list.large .p-news-item_body {
    position: relative;
    width: calc(100% - 100px - 140px); }
  .p-news-list.large .p-news-item_contents {
    font-size: 16px;
    position: relative;
    margin-top: 10px; }

.p-news-item {
  position: relative;
  list-style: none;
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: solid 1px #C3C3C3;
  gap: 20px; }
  .p-news-item_date {
    position: relative;
    font-size: 13px;
    letter-spacing: .1em;
    line-height: 24px;
    width: 120px; }
  .p-news-item_category {
    position: relative;
    width: 100px;
    height: 24px;
    font-size: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #c5de8f;
    border-radius: 3px; }
  .p-news-item_title {
    position: relative;
    width: calc(100% - 100px - 160px); }
    .p-news-item_title.new {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
      .p-news-item_title.new::before {
        content: 'NEW';
        margin: 0 10px 0 0;
        background-color: #e0943b;
        color: #FFF;
        padding: 0 15px;
        border-radius: 12px;
        letter-spacing: 0.1em;
        font-size: 14px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
    .p-news-item_title a {
      font-size: 14px;
      letter-spacing: .1em;
      line-height: 1.35em;
      text-decoration: none;
      color: #333333; }
      .p-news-item_title a:hover {
        text-decoration: underline;
        color: #1B9345; }
  .p-news-item_contents {
    line-height: 1.5em; }

@media screen and (max-width: 768px) {
  .p-news-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 20px; }
    .p-news-item_date {
      width: 100%; }
    .p-news-item_title {
      width: 100%; }
  .p-news-list.large .p-news-item_date {
    width: 100%; }
  .p-news-list.large .p-news-item_body {
    width: 100%; }
  .p-news-list.large .p-news-item_contents {
    font-size: 14px; } }

#faq .pref_agency > ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
padding-left:0; }
#faq .pref_agency .pref_agency_rp{margin-bottom:0;}

#faq .pref_agency > ul > li:nth-child(1) {
  width: 40%;
  position: relative; }

#faq .pref_agency > ul > li:nth-child(1):after {
  content: "\f002";
  font-family: FontAwesome;
  position: absolute;
  top: 25%;
  left: 8px;
  color: #666; }

#faq .pref_agency > ul > li:nth-child(1) input {
  padding: 17px 0 17px 30px;
  height: 100%; }

#faq .pref_agency > ul > li:nth-child(2) {
  width: 60%; }

#faq .pref_agency_result {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px dashed #666;
  border-radius: 5px;
  padding: 10px 10px;
  margin: 0 0 0 14px; }

#faq .pref_agency_result > p {
  padding: 0 15px;
  font-size: 100%; }

#faq .pref_agency_result > p > span {
  font-size: 125%;
  margin: 0 0px 0 10px;
  font-weight: bold; }

#faq .t_agency_dd h4 {
  margin: 15px 0 10px; }

#faq .faqs_install_img {
  text-align: center;
  margin: 15px 0; }

#faq .faqs_install_img > img {
  width: 800px;
  height: auto; }

#faq.faqmember .faqs > dd {
  margin: 0 0 1.75em;
  font-size: 105%; }

#faq.faqmember .faqs > dt {
  font-weight: bold;
  font-size: 105%;
  /*padding-top: 30px;*/ }

/*
#faq.faqmember .faqs>dt:before{
	top: 5px;
    position: absolute;
    font-size: 72%;
    padding: 1px 5px;
    border-radius: 10px;
    left: auto;
    border: 1px solid #555;
}
 dtの色分け
#faq.faqmember .faqs>dt[data-groups='["install"]']:before{
	content: "インストール";
    background-color: #FFE4C4;
}
#faq.faqmember .faqs>dt[data-groups='["technology"]']:before{
	content: "技　術";
    background-color: #FFF0F5;
}
#faq.faqmember .faqs>dt[data-groups='["license"]']:before{
	content: "契約・ライセンス";
    background-color: #FFFFFF;
}
#faq.faqmember .faqs>dt[data-groups='["environment"]']:before{
	content: "動作構成・環境";
    background-color: #FFFAFA;
}
#faq.faqmember .faqs>dt[data-groups='["audit"]']:before{
	content: "処方監査・薬剤";
    background-color: #F0F8FF;
}
#faq.faqmember .faqs>dt[data-groups='["homepage"]']:before{
	content: "ホームページ";
    background-color: #F5FFFA;
}
#faq.faqmember .faqs>dt[data-groups='["trouble"]']:before{
	content: "トラブル";
    background-color: #F5DEB3;
}
#faq.faqmember .faqs>dt[data-groups='["cost"]']:before{
	content: "費　用";
    background-color: #DCDCDC;
}

#faq.faqmember .faqs>dt[data-groups='["etc"]']:before{
	content: "その他";
    background-color: #F5F5DC;
}
 */
#faq.faqmember .faq_at > li:before {
  content: "\f101";
  position: absolute;
  left: 5px;
  font-size: 95%;
  top: 1px; }

#faq #faq_menu li a {
  margin: 0 5px;
  padding: 3px 7px;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 10px; }

#faq #faq_menu li a[href="#faq_cost"] {
  background-color: #DCDCDC; }

#faq #faq_menu li a[href="#faq_license"] {
  background-color: #FFFFFF; }

#faq #faq_menu li a[href="#faq_environment"] {
  background-color: #FFFAFA; }

#faq #faq_menu li a[href="#faq_install"] {
  background-color: #FFE4C4; }

#faq #faq_menu li a[href="#faq_audit"] {
  background-color: #F0F8FF; }

#faq #faq_menu li a[href="#faq_technology"] {
  background-color: #FFF0F5; }

#faq #faq_menu li a[href="#faq_trouble"] {
  background-color: #F5DEB3; }

#faq #faq_menu li a[href="#faq_homepage"] {
  background-color: #F5FFFA; }

#faq #faq_menu li a[href="#faq_etc"] {
  background-color: #F5F5DC; }

#faq.faqmember .faqs > dt:after {
  top: 30%; }

#faq.faqmember dd p.d_txt.dd_list {
  margin: 5px 0 10px 10px; }

#faq.faqmember dd p.d_txt.dd_list span {
  display: block;
  padding: 0 0 0 10px;
  font-size: 90%; }

#faq.faqmember dd p.d_txt.dd_list span.dd_list_span2 {
  padding: 0 0 0px 25px;
  position: relative; }

#faq.faqmember dd p.d_txt.dd_list span.spa_ttl {
  font-weight: bold;
  text-decoration: underline;
  font-size: 100%; }

#faq.faqmember dd p.d_txt.dd_list span.dd_list_span2.spanfa:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 10px; }

#faq.faqmember {
  margin-top: -255px;
  padding-top: 255px; }

#faq_menu > ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

#faq_menu > ul > li {
  margin-bottom: 10px; }

#faq h3.ttl {
  text-align: left;
  font-size: 135%; }

#faq h3.ttl:before {
  content: "\f054";
  font-family: FontAwesome;
  padding: 0 5px 0 0px;
  font-size: 80%; }

.ui-menu .ui-menu-item {
  padding: 10px 0 10px 10px !important;
  width: 100% !important;
  font-size: 14px; }

#faq .faqs > dd table.faq_dr th, #faq .faqs > dd table.faq_dr td {
  padding: 0.4375em; }

#faq .elementor-accordion-item {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden; }
  #faq .elementor-accordion-item .elementor-tab-title .elementor-accordion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 1.5em; }
    #faq .elementor-accordion-item .elementor-tab-title .elementor-accordion-title::before {
      content: 'Q.';
      display: inline-block;
      margin-right: 6px;
      font-weight: bold;
      font-size: 1.2em;
      position: relative; }
  #faq .elementor-accordion-item .elementor-tab-content {
    padding-left: 35px; }
    #faq .elementor-accordion-item .elementor-tab-content::before {
      content: 'A.';
      display: block;
      position: absolute;
      left: 15px;
      font-weight: bold;
      font-size: 1.2em; }

#faq .pref_agency > ul {
  list-style: none; }

@media screen and (max-width: 768px) {
  .l-header + main {
    padding-top: 90px; }
  #top-header .lBox {
    margin-top: 20px; }
  #sns-area-f {
    top: -20px;
    right: 0; }
  #faq .faqs > dt {
    background: url(../images/img_q.png) 13px 9px no-repeat;
    background-size: 35px auto; }
  #faq .pref_agency > ul {
    display: block; }
  #faq .pref_agency > ul > li:nth-child(1) {
    width: 100%; }
  #faq .pref_agency > ul > li:nth-child(1) input {
    padding: 17px 0 17px 30px;
    height: 100%; }
  #faq .pref_agency > ul > li:nth-child(2) {
    width: 100%; }
  #faq .pref_agency_result {
    margin: 15px 0 0 0; }
  div#logo_area.main_logo {
    display: table-cell;
    vertical-align: middle; }
  div#logo_area.main_logo img {
    height: auto;
    vertical-align: middle;
    width: 90%; } }

@media screen and (max-width: 500px) {
  #faq .faqs > dd table.faq_cp th,
  #faq .faqs > dd table.faq_cp td {
    display: block;
    border-top: none;
    padding: 5px;
    text-align: left;
    width: 100%; }
  #faq .faqs > dd table.faq_cp th,
  #faq .faqs > dd table.faq_dr th {
    background-color: #dae3b6;
    font-weight: bold; }
  #faq .faqs > dd table.faq_dr th,
  #faq .faqs > dd table.faq_dr td {
    display: block;
    border-top: none;
    padding: 5px;
    text-align: left;
    width: 100%; }
  #faq .faqs > dd table th.faq_t {
    border-top: 1px solid #666 !important; } }

table.qa_cmp {
  vertical-align: top; }

table.qa_cmp td {
  vertical-align: top;
  border: none;
  padding:8px;
  background-color: transparent !important; }

@media screen and (min-width: 769px) {
table.qa_cmp td.qa_cmp_l {
  width: 50%; }

table.qa_cmp td.qa_cmp_2 {
  height: 50%; }
}

table.qa_cmp td img {
  width: 100%;
  height: auto;
  margin: 0; }

@media screen and (max-width: 1100px) {
  table.qa_cmp td {
    display: block;
    width: 100%; } }

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto; }

.l-container {
  padding-top: 50px;
  padding-bottom: 80px; }

.blog-container {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px; }
  .blog-container .page-header {
    position: relative;
    border-bottom: 1px solid #222222;
    padding-bottom: 0.5em;
    margin-bottom: 30px; }
    .blog-container .page-header .entry-title {
      font-size: 1.4em;
      font-weight: bold;
      font-style: normal;
      border-top: 0;
      border-right: 0;
      border-left: 0;
      padding-top: 0;
      padding-right: 0;
      padding-left: 0;
      margin-bottom: 10px; }
    .blog-container .page-header .entry_date {
      position: relative;
      font-size: 12px;
      color: #999;
      letter-spacing: .1em; }
  .blog-container .pagination {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px; }
    .blog-container .pagination .page-numbers {
      line-height: 1;
      font-size: 15px;
      padding: 12px 24px;
      border-radius: 3px;
      fill: #fff;
      text-align: center;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
      background-color: #90C31E;
      display: block;
      color: #fff;
      text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
      border-style: none; }
      .blog-container .pagination .page-numbers.current {
        background-color: #61CE70;
        pointer-events: none; }
    .blog-container .pagination a {
      line-height: 1;
      font-size: 15px;
      padding: 12px 24px;
      border-radius: 3px;
      fill: #fff;
      text-align: center;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
      background-color: #90C31E;
      display: block;
      color: #fff;
      text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
      border-style: none; }
      .blog-container .pagination a.current {
        background-color: #61CE70;
        pointer-events: none; }

.l-header_main-nav-list li::after {
  content: none !important; }

.p-login {
  border-bottom: solid 1px #ccc; }

.p-login-blk {
  position: relative;
  width: 90%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #90C31E;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 9px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 30px; }
  .p-login-blk .entry-title {
    position: relative;
    text-align: center;
    font-weight: bold; }
  .p-login-blk p label {
    margin-bottom: 10px; }
  .p-login-blk .login-remember {
    text-align: center; }
  .p-login-blk .login-submit {
    text-align: center; }
    .p-login-blk .login-submit .button {
      line-height: 1;
      font-size: 15px;
      padding: 12px 24px;
      border-radius: 3px;
      fill: #fff;
      text-align: center;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
      background-color: #90C31E;
      display: block;
      color: #fff;
      text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
      border-style: none;
      margin-left: auto;
      margin-right: auto; }

#hiddenInfo {
  display: none; }
  #hiddenInfo .p-news-list {
    border-top: none !important; }

#openInfoBtn {
  cursor: pointer; }

.p-seminor {
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border: solid 1px #90C31E;
  border-radius: 3px; }
  .p-seminor h3 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: .1em;
    line-height: 1.5em;
    position: relative;
    margin-top: 0; }
  .p-seminor-content {
    line-height: 1.5em;
    letter-spacing: .1em;
    font-size: 16px; }

.p-contact form.wpcf7-form {
  width: 100%; }

.p-contact_forms dd {
  margin-left: 0; }
  .p-contact_forms dd select {
    max-width: 520px; }

.p-contact_btns {
  margin-top: 32px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .p-contact_btns [type=button] {
    border-radius: 6px;
    margin-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    max-width: 200px;
    width: 40%;
    display: block;
    letter-spacing: 0.05em;
    background: #999999;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border: solid 2px #888888; }
  .p-contact_btns [type=submit] {
    border-radius: 6px;
    margin-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    max-width: 200px;
    width: 40%;
    display: block;
    letter-spacing: 0.05em;
    background-color: #61CE70;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border: solid 2px #388f44; }

.p-contact dl dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px; }
  .p-contact dl dt label {
    margin: 0; }
  .p-contact dl dt .badge-require {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #c85b5b;
    color: #fff;
    font-size: 14px; }

.p-contact dl dd {
  margin-bottom: 20px;
  font-size: 16px; }
  .p-contact dl dd input, .p-contact dl dd textarea, .p-contact dl dd select {
    width: 100%;
    margin-top: 0; }
  .p-contact dl dd select {
    max-width: 400px;
    font-size: 128.6%;
    padding: 5px; }
  .p-contact dl dd .input-check {
    font-size: 128.6%;
    padding: 5px;
    margin: 5px 0 0 0;
    resize: vertical;
    border: solid 1px #767676;
    border-radius: 2px;
    background-color: #efefef; }
    .p-contact dl dt p{margin-bottom:0;}

@media screen and (max-width: 768px) {
  .p-contact-comment p{
    font-size:13px;
  }
  .p-contact dl dt p{margin-bottom:0;}
  .p-contact dl dt label{
    font-size:14px;
  }
  .p-contact dd p{margin-bottom:0;}
  .p-contact dl dd input, .p-contact dl dd textarea, .p-contact dl dd select {
    padding: .25rem .5rem;
    font-size:14px; }
  .p-contact dl dt .badge-require{
    margin-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 36px;
    font-size: 12px;
  }
  .p-contact_btns [type=button] {
    line-height: 1;
    display: inline-block;
    width: auto;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    text-align: center; }
  .p-contact_btns [type=submit] {
    line-height: 1;
    display: inline-block;
    width: auto;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    text-align: center; }
}

.p-important{
  position: relative;
  width:100%;
  display: flex;
  flex-direction: column;
  gap:30px;
  padding:0;
}
  .p-important .p-important-item{
    position: relative;
    width:100%;
    border: 1px solid red;
    text-align: justify;
    letter-spacing: 0px;
    color: #333;
    padding: 20px 15px;
    line-height: 1.55;
    position: relative;
    list-style: none;
  }
    .p-important .p-important-item .p-important-item_title{
      position: relative;
      text-align: center;
      font-size: 22px;
      font-weight:bold;
      color:red;
      margin-bottom:15px;
    }
    .p-important .p-important-item .p-important-item_contents{
      font-size:16px;
    }
@media screen and (max-width: 768px) {
  .p-important{
    gap:20px;
  }
    .p-important .p-important-item{
    padding: 15px 12px;
    }
      .p-important .p-important-item .p-important-item_title{
        font-size: 18px;
        margin-bottom:10px;
      }
      .p-important .p-important-item .p-important-item_contents{
        font-size:14px;
      }
}


table.tbl_01{
	width:100%;
	margin:2% auto;
	border-top:#bcbbbb 1px solid !important;
	}

table.tbl_01 th{
	width:15%;
	background:#f5f5f0;
	border-left:#bcbbbb 1px solid !important;
	border-bottom:#bcbbbb 1px solid !important;
	padding:1%;
	}

table.tbl_01 td{
	padding:1%;
	border-left:#bcbbbb 1px solid !important;
	border-right:#bcbbbb 1px solid !important;
	border-bottom:#bcbbbb 1px solid !important;
	}
@media screen and (max-width: 768px) {
  table.tbl_01 {
  width: 94%;
  font-size:14px;
  }

  table.tbl_01 th {
  border-right: #bcbbbb 1px solid !important;
  }
  table.tbl_01 th ,table.tbl_01 td{
		width:100% !important;
		display:block;
		}
  table.tbl_01 tr:first-child th{display:none;}
  table.tbl_01 tr:nth-child(2){display:none;}
  table.tbl_01 td{
    background-color: #ffffff !important;
    display: flex;
    flex-direction: column;
  }
  table.tbl_01 td div{padding-left:15px;}
  table.tbl_01 td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
}
