@charset "UTF-8";
/* scss Document */
/*============================mixin==================================*/
/* ブレークポイントのmixin */
/*============================/mixin==================================*/
/*============================common==================================*/

/* -------- 変数定義 -------- */
:root {
  /* JUST.DB基本カラー */
  --color-justdb-blue: #00b2ab; /* #399afe */
  --color-justdb-blue-dec: 0 178 171;
  --color-justdb-violet: #000080;
  --color-justdb-violet-dec: 0 0 128;
  --color-justdb-orange: #ff6114;
  --color-justdb-orange-dec: 255 97 20;
  --color-justdb-grayish-white: #f4f6f7;
  --color-justdb-grayish-white-dec: 244 246 247;
  --color-justdb-yellow: #ffc402;
  --color-justdb-yellow-dec: 255 196 2;
  --color-justdb-navy: #153346;
  --color-justdb-navy-dec: 21 51 70;

  /* メディア別の色 */
  --color-medium-article: #0050cc;
  --color-medium-article-light: #588eea;
  --color-medium-article-dark: #002a6b;
  --color-medium-whitepaper: #17a767;
  --color-medium-whitepaper-light: #69cca2;
  --color-medium-whitepaper-dark: #0a462b;
  --color-medium-seminar: #e74767;
  --color-medium-seminar-light: #ff8a9f;
  --color-medium-seminar-dark: #86293c;
  --color-medium-article-dec: 0 80 204;
  --color-medium-article-light-dec: 88 142 234;
  --color-medium-article-dark-dec: 0 42 107;
  --color-medium-whitepaper-dec: 23 167 103;
  --color-medium-whitepaper-light-dec: 105 204 162;
  --color-medium-whitepaper-dark-dec: 10 70 43;
  --color-medium-seminar-dec: 231 71 103;
  --color-medium-seminar-light-dec: 255 138 159;
  --color-medium-seminar-dark-dec: 134 41 60;

  /* カテゴリーの色 */
  --color-category-utilization: #811f8e;
  --color-category-utilization-dec: 129 31 142;
  --color-category-utilization-dark: #57155f;
  --color-category-utilization-dark-dec: 87 21 95;
  --color-category-operation: #2f2979;
  --color-category-operation-dec: 47 41 121;
  --color-category-operation-dark: #1d194a;
  --color-category-operation-dark-dec: 29 25 74;
  --color-category-dx: #197f86;
  --color-category-dx-dec: 25 127 134;
  --color-category-dx-dark: #105357;
  --color-category-dx-dark-dec: 16 83 87;
  --color-category-efficiency: #426d18;
  --color-category-efficiency-dec: 66 109 24;
  --color-category-efficiency-dark: #263e0e;
  --color-category-efficiency-dark-dec: 38 62 14;
  --color-category-breakaway: #9d7d21;
  --color-category-breakaway-dec: 157 125 33;
  --color-category-breakaway-dark: #6e5817;
  --color-category-breakaway-dark-dec: 110 88 23;
  --color-category-others: #b24f28;
  --color-category-others-dec: 178 79 40;
  --color-category-others-dark: #833a1d;
  --color-category-others-dark-dec: 131 58 29;

  /* その他 */
  --color-gray: #ccc;
  --color-gray-dec: 204 204 204;
  --color-light-gray: #e6e6e6;
  --color-light-gray-dec: 230 230 230;
  --color-footer-gray: #979fa5;
  --color-footer-gray-dec: 151 159 165;
  --color-sea-green: #0086a0;
  --color-sea-green-dec: 0 134 160;
  --color-light-teal: #009ca6;
  --color-light-teal-dec: 0 156 166;
  --color-light-sage-green: #ccf0ee;
  --color-light-sage-green-dec: 204 240 238;
  --color-lighter-sea-green: #cceaf7;
  --color-lighter-sea-green-dec: 204 234 247;
}

::selection {
  background: var(--color-justdb-blue);
  color: #fff;
  text-shadow: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', sans-serif;
  font-feature-settings: "palt";
  /* font-family: 'Noto Sans JP', sans-serif; */
  color: #070b0f;
}

/*
@media only screen and (max-width: 500px) {
  body {
    font-family: 'Hiragino Kaku Gothic Pro';
  }
}
*/

p {
  letter-spacing: 1.5px;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: #070b0f;
}

ul {
  list-style: none;
}

/*pc表示時のみblock*/
.pc-b {
  display: block;
}

@media only screen and (max-width: 500px) {
  .pc-b {
    display: none;
  }
}

/*sp表示時のみblock*/
.sp-b {
  display: none;
}

@media only screen and (max-width: 500px) {
  .sp-b {
    display: block;
  }
}

/*pc表示時のみ改行*/
.pc-line {
  display: inline-block;
}

@media only screen and (max-width: 500px) {
  .pc-line {
    display: none;
  }
}

/*sp表示時のみ改行*/
.sp-line {
  display: none;
}

@media only screen and (max-width: 500px) {
  .sp-line {
    display: inline;
  }
}

/*pc表示時のみflex*/
.pc-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  .pc-flex {
    display: none;
  }
}

/*sp表示時のみflex*/
.sp-flex {
  display: none;
}

@media only screen and (max-width: 500px) {
  .sp-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/*テキストを強調する*/
.text-highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #fff), color-stop(76%, #c1e4db));
  background: -webkit-linear-gradient(#fff 70%, #c1e4db 76%);
  background: linear-gradient(#fff 70%, #c1e4db 76%);
  border-radius: 2px;
  font-weight: 600;
}

/*画像上下にスペースを挿入*/
div.mainvisual,
div.img-frame {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

@media only screen and (max-width: 500px) {
  div.mainvisual,
  div.img-frame {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

/*画像上下のスペースを統一*/
/*.break-height {
    content: "";
    display: block;
    height: 50px;
    @include media(s) {
        height: 20px;
    }
}*/
.break-height {
  display: none;
}
/*トップにスムーススクロールするボタン*/
section.scrolltop .arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

section.scrolltop .arrow::after, section.scrolltop .arrow::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
}

section.scrolltop .arrow_up::before {
  top: auto;
  left: 19px;
  bottom: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

section.scrolltop #btn-backtotop {
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 1000;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition: bottom 0.2s ease-out;
  transition: bottom 0.2s ease-out;
  opacity: 0;
}

section.scrolltop #btn-backtotop.fadein {
  opacity: 1;
}

section.scrolltop #btn-backtotop:hover {
  opacity: .8;
  bottom: 10px;
}

section.scrolltop #btn-backtotop:hover::after {
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 500px) {
  section.scrolltop #btn-backtotop:hover::after {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

section.scrolltop #btn-backtotop::after {
  content: "";
  display: block;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 50%;
  background-color: var(--color-justdb-blue);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0.8) rotate(45deg);
          transform: scale(0.8) rotate(45deg);
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}

@media only screen and (max-width: 500px) {
  section.scrolltop #btn-backtotop::after {
    opacity: 0.9;
  }
}

section.scrolltop #btn-backtotop .arrow {
  top: 46px;
  left: -1px;
}

section.scrolltop #btn-backtotop .arrow::before {
  width: 10px;
  height: 10px;
  z-index: 1;
}

section.scrolltop-secondary {
  display: block;
}

@media only screen and (max-width: 500px) {
  section.scrolltop-secondary {
    display: none;
  }
}

section.scrolltop-secondary .arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

section.scrolltop-secondary .arrow::after, section.scrolltop-secondary .arrow::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
}

section.scrolltop-secondary .arrow_up::before {
  top: auto;
  left: 19px;
  bottom: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

section.scrolltop-secondary #btn-backtotop {
  position: fixed;
  bottom: 30px;
  right: 5px;
  z-index: 1000;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition: bottom 0.2s ease-out;
  transition: bottom 0.2s ease-out;
  opacity: 0;
}

section.scrolltop-secondary #btn-backtotop.fadein {
  opacity: 1;
}

section.scrolltop-secondary #btn-backtotop:hover {
  opacity: .8;
  bottom: 28px;
}

section.scrolltop-secondary #btn-backtotop:hover::after {
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 500px) {
  section.scrolltop-secondary #btn-backtotop:hover::after {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

section.scrolltop-secondary #btn-backtotop::after {
  content: "";
  display: block;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 50%;
  background-color: var(--color-justdb-blue);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0.8) rotate(45deg);
          transform: scale(0.8) rotate(45deg);
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}

@media only screen and (max-width: 500px) {
  section.scrolltop-secondary #btn-backtotop::after {
    opacity: 0.9;
  }
}

section.scrolltop-secondary #btn-backtotop .arrow {
  top: 46px;
  left: -1px;
}

section.scrolltop-secondary #btn-backtotop .arrow::before {
  width: 10px;
  height: 10px;
  z-index: 1;
}

/*スマフォのナビゲーション*/
@media only screen and (max-width: 500px) {
/* @media only screen and (max-width: 1024px) { */
  section#header-sp-nav {
    height: 100%;
    overflow-x: hidden;
    position: relative;
  }
  section#header-sp-nav div.nav-trigger {
    width: 27px;
    height: 21px;
    top: 19px;
    right: -20px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    z-index: 9100;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
  section#header-sp-nav div.nav-trigger.active {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  section#header-sp-nav div.nav-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
            transform: translateY(11px) rotate(-45deg);
  }
  section#header-sp-nav div.nav-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  section#header-sp-nav div.nav-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
  section#header-sp-nav div.nav-trigger span {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-justdb-blue);
  }
  section#header-sp-nav div.nav-trigger span:nth-of-type(1) {
    top: -1px;
  }
  section#header-sp-nav div.nav-trigger span:nth-of-type(2) {
    top: 9px;
  }
  section#header-sp-nav div.nav-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  section#header-sp-nav nav#header-sp-nav-contents {
    display: none;
    margin-top: 55px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9000;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  section#header-sp-nav nav#header-sp-nav-contents.open {
    display: block;
  }
  section#header-sp-nav nav#header-sp-nav-contents ul {
    padding-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    /* background-color: var(--color-justdb-blue); */
    /* background-color: rgba(255,255,255,.9); */
    background-color: #fff;
    -webkit-box-shadow: 0px -8px 8px -1px rgba(0, 0, 0, 0.1) inset;
            box-shadow: 0px -8px 8px -1px rgba(0, 0, 0, 0.1) inset;
  }
  
  section#header-sp-nav nav#header-sp-nav-contents ul li {
    padding: 12px 20px;
    border-bottom: solid 1px #afd7d7;
    text-align: center;
  }
  section#header-sp-nav nav#header-sp-nav-contents ul li:first-child {
    padding-top: 20px;
    background-color: #fff;
  }
  section#header-sp-nav nav#header-sp-nav-contents ul li:first-child a div {
    color: var(--color-justdb-blue);
  }

  section#header-sp-nav.disable-med-article nav#header-sp-nav-contents ul li.article,
  section#header-sp-nav.disable-med-whitepaper nav#header-sp-nav-contents ul li.whitepaper,
  section#header-sp-nav.disable-med-seminar nav#header-sp-nav-contents ul li.seminar {
    display: none;
  }

  section#header-sp-nav nav#header-sp-nav-contents ul li a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
  }

  section#header-sp-nav nav#header-sp-nav-contents ul li a div {
    font-size: 14px;
    /* font-weight: 400; */
    /* color: #fff; */
    font-weight: bold;
    color: var(--color-justdb-blue);
  }

  section#header-sp-nav nav#header-sp-nav-contents ul li.article a div {
    color: var(--color-medium-article-dark);
  }

  section#header-sp-nav nav#header-sp-nav-contents ul li.whitepaper a div {
    color: var(--color-medium-whitepaper-dark);
  }

  section#header-sp-nav nav#header-sp-nav-contents ul li.seminar a div {
    color: var(--color-medium-seminar-dark);
  }
}

/*============================/common=================================*/
/*============================header==================================*/
header#header {
  margin-top: 10px !important;
  margin: auto;
  width: 1500px;
  max-width: calc(100% - 40px);
  /* max-width: 1100px; */
  height: 50px;
  /*
    @include media(s) {
        position: fixed;
        margin-top: 0 !important;
        margin-left: 0px;
        padding-top: 17px;
        width: 100%;
        height: 40px;
        z-index: 1000;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,.16);
    }
    */
}

@media only screen and (max-width: 500px) {
  header#header {
    margin-top: 17px !important;
    margin-left: 0px;
    width: 90%;
    height: 40px;
  }
}

header#header .header-inner {
  /* width: 400px; */
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 500px) {
  header#header .header-inner {
    width: 90%;
    margin: auto;
  }
}

header#header .header-inner a {
  transition: color 0.3s ease;
}

header#header .header-inner a img {
  transition: opacity 0.3s ease;
}

header#header .header-inner a:first-child:hover {
  color: var(--color-light-teal);
}

/*
header#header .header-inner a:hover {
  color: var(--color-light-teal);
}
*/

header#header .header-inner a:hover img {
  opacity: 0.7;
}

header#header .header-inner a div.logo {
  height: 40px;
}

header#header .header-inner a div.logo img {
  height: 100%;
  vertical-align: bottom;
}

header#header .header-inner a div.logo span {
  display: inline-block;
  margin-left: 0.85em;
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.01em;
}

/*
@media only screen and (max-width: 1024px) {
  header#header .header-inner {
    width: 400px;
    display: block;
  }

  header#header .header-inner #header-nav-contents {
    display: none;
  }
}
  */

@media only screen and (max-width: 500px) {
  header#header .header-inner a div.logo {
    display: none;
  }

  header#header .header-inner #header-nav-contents {
    display: none;
  }
}

/*
header#header .header-inner a div.logo {
  height: 40px;
  background-image: url(/jp/marketing-research/local/images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 500px) {
  header#header .header-inner a div.logo {
    height: 30px;
    background-image: none;
  }
}
*/

section.header-sp-fixed {
  display: none;
  margin: auto;
}

@media only screen and (max-width: 500px) {
  section.header-sp-fixed {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    margin-top: 0 !important;
    margin-left: 0px;
    padding-top: 17px;
    width: 100%;
    height: 40px;
    z-index: 9001;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
}

@media only screen and (max-width: 500px) {
  section.header-sp-fixed .header-inner {
    width: 240px;
    margin: 0;
    margin-left: 20px;
  }
}

section.header-sp-fixed .header-inner a:hover {
  opacity: 0.7;
}

section.header .header-inner a div.logo {
  display: none;
}

@media only screen and (max-width: 500px) {
  section.header-sp-fixed .header-inner a div.logo {
    height: 30px;
    white-space: nowrap;
  }

  section.header-sp-fixed .header-inner a div.logo img {
    height: 100%;
    vertical-align: bottom;
  }

  section.header-sp-fixed .header-inner a div.logo span {
    display: inline-block;
    margin-left: 0.8em;
    margin-bottom: 6px;
    font-size: 18px;
    /*
    margin-left: 1em;
    margin-bottom: 7px;
    font-size: 14px;
    */
    font-weight: bold;
    line-height: 1;
    letter-spacing: -0.01em;
    /* letter-spacing: 0.05em; */
  }
}

/* PC用ナビ */
#header-nav-contents ul {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  margin-top: 3px;
  display: flex;
  font-size: 16px;
  letter-spacing: 0;
  /* letter-spacing: -0.03em; */
}

header#header .header-inner #header-nav-contents a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 5px 20px;
  text-decoration: none;
  color: #002a6b;
  font-weight: 600;
}

#header-nav-contents li ~ li {
  margin-left: 10px;
}

header#header.disable-med-article #header-nav-contents li,
header#header.disable-med-whitepaper #header-nav-contents li,
header#header.disable-med-seminar #header-nav-contents li {
  display: none;
}

header#header .header-inner #header-nav-contents li a {
  transition: color 0.3s ease, background-color 0.3s ease;
}

header#header .header-inner #header-nav-contents li.article a {
  color: var(--color-medium-article-dark);
  background-color: rgb(var(--color-medium-article-dec) / 0.1);
}

header#header .header-inner #header-nav-contents li.whitepaper a {
  color: var(--color-medium-whitepaper-dark);
  background-color: rgb(var(--color-medium-whitepaper-dec) / 0.1);
}

header#header .header-inner #header-nav-contents li.seminar a {
  color: var(--color-medium-seminar-dark);
  background-color: rgb(var(--color-medium-seminar-dec) / 0.1);
}

header#header .header-inner #header-nav-contents li.article:hover a {
  color: var(--color-medium-article);
  background-color: rgb(var(--color-medium-article-dec) / 0.2);
}

header#header .header-inner #header-nav-contents li.whitepaper:hover a {
  color: var(--color-medium-whitepaper);
  background-color: rgb(var(--color-medium-whitepaper-dec) / 0.2);
}

header#header .header-inner #header-nav-contents li.seminar:hover a {
  color: var(--color-medium-seminar);
  background-color: rgb(var(--color-medium-seminar-dec) / 0.2);
}

/* 角罫線ボタン */
/*
#header-nav-contents ul {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  margin-top: 5px;
  display: flex;
  font-size: 16px;
}

#header-nav-contents li {
  position: relative;
}

#header-nav-contents li::before,
#header-nav-contents li::after,
#header-nav-contents a::before,
#header-nav-contents a::after {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 25%;
}

#header-nav-contents li::before {
  top: 0;
  left: 0;
  width: 55%;
  height: 25%;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
}

#header-nav-contents li::after {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 25%;
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
#header-nav-contents a::before {
  top: 0;
  right: 0;
  width: 10%;
  height: 20%;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
#header-nav-contents a::after {
  bottom: 0;
  left: 0;
  width: 10%;
  height: 20%;
  border-bottom: 2px solid #ccc;
  border-left: 2px solid #ccc;
}

#header-nav-contents li ~ li {
  margin-left: 30px;
}

#header-nav-contents li span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(231 231 231 / 0);
  transform-origin: center left;
  transform: scale(0, 1);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#header-nav-contents li:hover span {
  background-color: rgb(231 231 231 / 0.7);
  transform: scale(1, 1);
}
#header-nav-contents a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 5px 20px;
  text-decoration: none;
  color: #002a6b;
  font-weight: bold;
}
*/

/* 角丸ボタン */
/*
#header-nav-contents ul {
  list-style: none;
  padding-inline: 0;
  display: flex;
}

#header-nav-contents li {
  background-color: white;
  box-shadow: inset 0 0 2px #ff6666;
  border: 3px solid #cc3300;
  border-radius: 20px;
}

#header-nav-contents li ~ li {
  margin-left: 5px;
}

#header-nav-contents a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  text-shadow: 0 0 2px #ff6666;
  color: #cc3300;
}
*/
/* グレーボタン */
/*
#header-nav-contents ul {
  list-style: none;
  padding-inline: 0;
  display: flex;
}

#header-nav-contents li {
  background-color: #f7f7f7;
  box-shadow: inset 0 0 3px #e7e7e7;
  border-bottom: 2px solid #e7e7e7;
}

#header-nav-contents li ~ li {
  margin-left: 5px;
}

#header-nav-contents a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  text-shadow: 0 0 2px #ff6666;
  color: #cc3300;
}
*/

/*============================/header===============================*/
/*============================main==================================*/
main #lab div.firstView-pc {
  -webkit-box-shadow: 0px 1px 6px 0 #1e717129 inset;
          box-shadow: 0px 1px 6px 0 #1e717129 inset;
  width: 100%;
  background-color: #E8F0F2;
}

main #lab div.firstView-pc ul.firstView-inner {
  margin: auto;
  padding: 30px 0;
  width: 1120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 500px) {
  main #lab div.firstView-pc ul.firstView-inner {
    width: 90%;
  }
}

main #lab div.firstView-pc ul.firstView-inner li.content {
  width: 360px;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 3px 0 #1e717129;
          box-shadow: 0px 1px 3px 0 #1e717129;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media only screen and (max-width: 500px) {
  main #lab div.firstView-pc ul.firstView-inner li.content {
    width: 90%;
  }
}

main #lab div.firstView-pc ul.firstView-inner li.content:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-img img.img {
  position: relative;
  z-index: 1;
  width: 360px;
  height: auto;
}

@media only screen and (max-width: 500px) {
  main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-img img.img {
    width: 100%;
  }
}

main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-img div.group {
  text-align: center;
}

main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-img div.group div {
  display: table;
  position: relative;
  z-index: 2;
  margin: -17px auto 0;
  width: 120px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--color-justdb-blue);
  border: solid 1px #fff;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}

main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-text {
  position: relative;
  padding: 15px;
  height: 120px;
}

main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-text h1 {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  letter-spacing: 1px;
}

@media only screen and (max-width: 500px) {
  main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-text h1 {
    font-size: 16px;
  }
}

main #lab div.firstView-pc ul.firstView-inner li.content a div.frame-text div.date {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 15px;
  font-size: 12px;
  color: var(--color-justdb-blue);
}

main #lab div.container {
  width: 100%;
}

main #lab div.container div.container-inner {
  margin: auto;
  /* width: 1100px; */
  width: 1500px;
  max-width: calc(90% - 20px);
  display: grid;
  /* grid-template-columns: minmax(auto, 750px) 35px; */
  grid-template-columns: minmax(0, 65%) minmax(400px, 35%);
  gap: 50px;
  /*
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  */
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner {
    width: 90%;
    grid-template-columns: 100%;
    /*
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
            */
  }
}

main #lab div.container div.container-inner ul.lab-contents {
  padding-left: 0;
  /* width: 750px; */
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents {
    width: 100%;
  }
}

main #lab div.container div.container-inner ul.lab-contents div.title {
  margin: 30px 0 20px;
  width: 300px;
  letter-spacing: 2px;
  border-bottom: solid 1px #000;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents div.title {
    width: 100%;
  }
}

main #lab div.container div.container-inner ul.lab-contents div.title div {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

main #lab div.container div.container-inner ul.lab-contents li.content {
  position: relative;
  opacity: 1;
  margin: 20px 0;
  height: auto;
  list-style: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

main #lab div.container div.container-inner ul.lab-contents li.content.is-hidden {
  opacity: 0;
  margin: 0;
  height: 0;
}

/* ---------------- コンテンツ一覧 2025/07 ---------------- */
main #lab div.container div.container-inner ul.lab-contents li.content > a {
  transition: color 0.5s ease;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a:hover {
  color: var(--color-light-teal);
}

main #lab div.container div.container-inner ul.lab-contents li.content > a > .content-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(120px, 25%) minmax(0, 75%);
  grid-template-rows: 120px;
  column-gap: 20px;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a > .content-inner .thumb {
  overflow: hidden;
  /*
  position: relative;
  background-color: rgb(var(--color-sea-green-dec) / 0.1);
  */
}

main #lab div.container div.container-inner ul.lab-contents li.content > a > .content-inner .thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a:hover > .content-inner .thumb > img {
  transform: scale(1.2);
}

main #lab div.container div.container-inner ul.lab-contents li.content.thumb-contain > a > .content-inner .thumb {
  background: center / cover no-repeat linear-gradient(165deg, #fafcfd, #f1f8fa);
}

main #lab div.container div.container-inner ul.lab-contents li.content.thumb-contain > a > .content-inner .thumb > img {
  /*
  position: relative;
  z-index: 2;
  */
  object-fit: contain;
}

/*
main #lab div.container div.container-inner ul.lab-contents li.content.thumb-contain > a > .content-inner .thumb > .thumb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  opacity: 0.2;
}
*/

main #lab div.container div.container-inner ul.lab-contents li.content > a > .content-inner .subjects {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr minmax(23px, auto);
  align-items: center;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a > .content-inner .subjects > p {
  /* height: calc(16px * 1.55 * 3); */
  max-height: calc(16px * 1.55 * 3);
  margin-block: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  /* letter-spacing: 0; */
  line-clamp: 3;
  text-overflow: ellipsis;
  line-height: 1.55;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a .med-cat-wrapper {
  /*
  position: absolute;
  left: 0;
  bottom: 0;
  */
  align-self: end;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a .medium,
main #lab div.container div.container-inner ul.lab-contents li.content > a .category {
  width: fit-content;
  max-width: calc(100% - 12px);
  margin-top: 5px;
  padding: 3px 6px;
  color: var(--color-justdb-blue);
  background-color: rgb(var(--color-justdb-blue-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content > a .medium:first-child {
  margin-right: 5px;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a .medium > p,
main #lab div.container div.container-inner ul.lab-contents li.content > a .category p {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
  /* letter-spacing: -0.05em; */
  white-space: nowrap;
  text-overflow: ellipsis;
}

main #lab div.container div.container-inner ul.lab-contents li.content > a .medium > p {
  font-size: 12px;
  font-weight: 600;
}
main #lab div.container div.container-inner ul.lab-contents li.content > a .category p {
  font-size: 12px;
  font-weight: normal;
}

main #lab div.container div.container-inner ul.lab-contents li.content.med-article > a .medium {
  color: var(--color-medium-article-dark);
  background-color: rgb(var(--color-medium-article-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.med-whitepaper > a .medium {
  color: var(--color-medium-whitepaper-dark);
  background-color: rgb(var(--color-medium-whitepaper-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.med-seminar > a .medium {
  color: var(--color-medium-seminar-dark);
  background-color: rgb(var(--color-medium-seminar-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.cat-utilization > a .category {
  color: var(--color-category-utilization-dark);
  background-color: rgb(var(--color-category-utilization-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.cat-operation > a .category {
  color: var(--color-category-operation-dark);
  background-color: rgb(var(--color-category-operation-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.cat-dx > a .category {
  color: var(--color-category-dx-dark);
  background-color: rgb(var(--color-category-dx-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.cat-efficiency > a .category {
  color: var(--color-category-efficiency-dark);
  background-color: rgb(var(--color-category-efficiency-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.cat-breakaway > a .category {
  color: var(--color-category-breakaway-dark);
  background-color: rgb(var(--color-category-breakaway-dec) / 0.1);
}

main #lab div.container div.container-inner ul.lab-contents li.content.cat-others > a .category {
  color: var(--color-category-others-dark);
  background-color: rgb(var(--color-category-others-dec) / 0.1);
}

/* ---------------- /コンテンツ一覧 2025/07 ---------------- */

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 3fr;
  grid-template-rows: 120px;
  /*
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  */
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner {
    /*
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
            */
    /* border: solid 1px #eee; */
    /* border-radius: 5px; */
    -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner:hover {
  text-decoration: underline;
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner:hover div.frame-img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner:hover div.frame-img img.img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-img {
  /*
  padding-right: 110px;
  width: 180px;
  height: 120px;
  border-radius: 5px;
  */
  overflow: hidden;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-img {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    border-radius: 0;
    width: 100%;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-img img.img {
  /*
  width: 235px;
  height: auto;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-img img.img {
    width: 100%;
    height: auto;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text {
  position: relative;
  margin-left: 20px;
  /* width: 100%; */
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text {
    margin: auto;
    width: 90%;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text div.date {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 12px;
  color: var(--color-justdb-blue);
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text div.date {
    top: 10px;
    left: 0;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text h2 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  /*
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  */
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text h2 {
    margin-top: 15px;
    margin-bottom: 45px;
    font-size: 16px;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text div.group {
  text-align: center;
}

main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text div.group div {
  position: absolute;
  bottom: 2px;
  padding: 0 10px;
  /* width: 80px; */
  height: 20px;
  border: solid 1px var(--color-justdb-blue);
  border-radius: 5px;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-justdb-blue);
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content a.content-inner div.frame-text div.group div {
    bottom: 15px;
  }
}

main #lab div.container div.container-inner ul.lab-contents li.content br.splitLine {
  content: "";
  display: block;
  margin: 25px 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents li.content br.splitLine {
    display: none;
  }
}

main #lab div.container div.container-inner ul.lab-contents div.more {
  position: relative;
  z-index: 10;
}

main #lab div.container div.container-inner ul.lab-contents div.more button {
  margin: -10px 0 30px 10px;
  width: 100%;
  background-color: #fff;
  border: none;
  font-size: 14px;
  color: #070b0f;
  outline: none;
  cursor: pointer;
}

main #lab div.container div.container-inner ul.lab-contents div.more button:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner ul.lab-contents div.more button {
    margin: 10px 0 30px;
  }
}

main #lab div.container div.container-inner ul.lab-contents div.more button span {
  padding: 3px 10px;
}

main #lab div.container div.container-inner ul.lab-contents div.more button span::after {
  content: "";
  display: inline-block;
  margin: 0 0 3px 4px;
  width: 5px;
  height: 5px;
  border: 2px solid;
  border-color: transparent transparent #243746 #243746;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

main #lab div.container div.container-inner section.side-contents {
  position: sticky;
  top: 30px;
  height: 100dvh;
  color: #070b0f;
  /* z-index: 200; */
  scrollbar-width: none;
  /* scrollbar-width: thin; */
  -ms-overflow-style: none;
  overflow: hidden;
  overflow-y: scroll;

}
main #lab div.container div.container-inner section.side-contents::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner section.side-contents {
    grid-row: 1 / 2;
    height: auto;
    position: static;
    /* width: 100%; */
    /* display: none; */
  }
}

main #lab div.container div.container-inner section.side-contents div.category-groups div.title {
  margin: 30px 0 20px;
  width: 300px;
  border-bottom: solid 1px #000;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner section.side-contents div.category-groups div.title {
    width: 100%;
  }
}

main #lab div.container div.container-inner section.side-contents div.category-groups div.title div {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}

main #lab div.container div.container-inner section.side-contents div.category-groups ul.groups {
  padding: 0;
}

main #lab div.container div.container-inner section.side-contents div.category-groups ul.groups li.group {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

main #lab div.container div.container-inner section.side-contents div.category-groups ul.groups li.group a {
  font-size: 14px;
  letter-spacing: 2px;
}

main #lab div.container div.container-inner section.side-contents div.category-groups ul.groups li.group a:hover {
  opacity: 0.7;
}

main #lab div.container div.container-inner section.side-contents div.category-groups ul.groups li.group div.number {
  margin-left: 15px;
  width: 30px;
  height: 16px;
  background-color: #e8f1f1;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
  font-size: 12px;
  color: #456a87;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems {
  margin-bottom: 100px;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems:has(+ *) {
  margin-bottom: 50px;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems div.title {
  margin: 30px 0 20px;
  width: 300px;
  border-bottom: solid 1px #000;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner section.side-contents div.category-downloadItems div.title {
    width: 100%;
  }
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems div.title div {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems {
  padding: 0;
  border-bottom: solid 1px #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem {
  margin-top: 25px;
  margin-bottom: 25px;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner:hover {
  opacity: 0.7;
  text-decoration: underline;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner div.frame-img img.img {
  width: 90px;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner h3 {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems br.splitLine {
  content: "";
  display: block;
  margin: 10px 0;
  width: 100%;
  height: 2px;
  background-color: #eee;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems div.link {
  position: relative;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems div.link a {
  position: absolute;
  margin-top: 20px;
  right: 0;
  font-size: 14px;
  font-weight: 400;
}

main #lab div.container div.container-inner section.side-contents div.category-downloadItems div.link a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner section.side-contents div.category-list {
    display: none;
  }
}

main #lab div.container div.container-inner section.side-contents div.category-list div.title {
  margin: 30px 0 20px;
  width: 300px;
  border-bottom: solid 1px #000;
}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner section.side-contents div.category-list div.title {
    width: 100%;
  }
}

main #lab div.container div.container-inner section.side-contents div.category-list div.title div {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}

main #lab div.container div.container-inner section.side-contents div.category-list ul.groups {
  padding: 0;
}

main #lab div.container div.container-inner section.side-contents div.category-list ul.groups li.group {
  position: relative;
  padding-bottom: 20px;
}

main #lab div.container div.container-inner section.side-contents div.category-list ul.groups li.group a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 14px;
  letter-spacing: 2px;
  /*&:hover {
                                        opacity: 0.7;
                                    }*/
}

main #lab div.container div.container-inner section.side-contents div.category-list ul.groups li.group a span:first-child {
  margin-right: 10px;
  color: var(--color-justdb-blue);
}

main #lab div.container div.container-inner section.side-contents div.category-list ul.groups li.group a span:last-child {
  display: inline-block;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

main #lab div.container div.container-inner section.side-contents div.category-list ul.groups li.group a.link-current {
  background-color: rgba(38, 141, 141, 0.1);
  font-weight: 500;
}

main #lab div.container div.container-inner section.side-contents .category-frame.fixed {
  position: fixed;
  top: 0;
  padding-right: 14px;
  height: 100vh;
  width: 300px;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
main #lab div.container div.container-inner section.side-contents .category-frame.fixed::-webkit-scrollbar {
  display: none;
}
main #lab div.container div.container-inner section.side-contents div.category-list.fixed {
  position: fixed;
  top: 0;
  width: 300px;
}

main #lab div.container {
  box-sizing: border-box;
  /* padding: 0 10px; */
}
@media only screen and (min-width: 501px) {
  footer div.footer-inner {
      width: 1200px;
  }
}


/*============================/main==================================*/
/*============================overlay==================================*/
section.overlay-frame {
  display: none;
}

@media only screen and (max-width: 500px) {
  section.overlay-frame {
    display: block;
  }
}

section.overlay-frame div.overlay-inner {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

section.overlay-frame div.overlay-inner.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/*============================/overlay=================================*/
/*============================footer=================================*/
footer {
  position: relative;
  z-index: 300;
  width: 100%;
  background-color: var(--color-justdb-grayish-white);
  /* background-color: #182634; */
}

footer div.footer-inner {
  padding: 50px 0 0;
  width: 1100px;
  max-width: 90%;
  margin: auto;
  background-color: var(--color-justdb-grayish-white);
  /* background-color: #182634; */
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner {
    width: 100%;
  }
}

/*
@media only screen and (min-width: 501px) {
  footer div.footer-inner div.service {
    margin: auto;
    width: 850px;
  }
}
*/

footer div.footer-inner div.service div.title {
  font-size: 18px;
  color: #fff;
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.title {
    margin-left: 20px;
  }
}

footer div.footer-inner div.service div.contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer div.footer-inner div.service div.contents a.content {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 320px;
  font-size: 12px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--color-footer-gray);
  /* color: #a7afb5; */
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.contents a.content {
    width: 260px;
  }
}

/* footer div.footer-inner div.service div.contents a.content:nth-child(2) {
  margin-left: 180px;
} */

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.contents a.content:nth-child(2) {
    margin-left: 20px;
  }
}

/* footer div.footer-inner div.service div.contents a.content:last-child {
  text-indent: 90px;
} */

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.contents a.content:last-child {
    text-indent: initial;
  }
}

footer div.footer-inner div.service div.contents a.content:last-child span:last-child {
  padding-left: 90px;
  font-size: 12px;
  white-space: nowrap;
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.contents a.content:last-child span:last-child {
    padding-left: 0;
    white-space: initial;
  }
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.service div.contents a.content {
    margin: 20px 20px 10px 20px;
  }
}

footer div.footer-inner div.service div.contents a.content:hover {
  opacity: 0.7;
}

footer div.footer-inner div.service div.contents a.content span {
  font-size: 16px;
}

footer div.footer-inner div + div.company {
  margin: 40px 0 0 0;
}

footer div.footer-inner div.company {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
/*
@media only screen and (min-width: 501px) {
  footer div.footer-inner div.company {
    margin: 0px auto;
    width: 850px;
  }
}
*/
@media only screen and (max-width: 500px) {
  footer div.footer-inner div.company {
    padding-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
    -webkit-align-items: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

footer div.footer-inner div.company div.overview div.contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.company div.overview div.contents {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer div.footer-inner div.company div.overview div.contents a.content {
  margin: 20px;
  font-size: 12px;
  color: var(--color-footer-gray);
  /* color: #a7afb5; */
}

footer div.footer-inner div.company div.overview div.contents a.content:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.company div.overview div.contents a.content:first-child {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.company div.overview div.contents a.content {
    margin: 0 20px 10px 20px;
    /* color: #fff; */
  }
}

footer div.footer-inner div.company div.overview div.contents a.content:hover {
  opacity: 0.7;
}

footer div.footer-inner div.company div.copyright a {
  margin: 20px 0 0 0;
  font-size: 12px;
  color: var(--color-footer-gray);
}

footer div.footer-inner div.company div.copyright a span + span {
  margin-left: 1em;
}

@media only screen and (max-width: 500px) {
  footer div.footer-inner div.company div.copyright a {
    display: block;
    margin-left: 20px;
    color: var(--color-footer-gray);
  }

  footer div.footer-inner div.company div.copyright a span {
    display: block;
  }

  footer div.footer-inner div.company div.copyright a span + span {
    margin-left: 0;
  }
}

footer div.footer-inner div.company div.copyright a:hover {
  opacity: 0.7;
}

/*============================/footer==================================*/
/*============================article-contents=========================*/
/*
div.article-wrapper {
  width: 1100px !important;
}


@media only screen and (max-width: 500px) {
  div.article-wrapper {
    width: 90% !important;
  }
}

div.article-contents {
  width: 750px;
}

@media only screen and (max-width: 500px) {
  div.article-contents {
    width: 100%;
  }
}
*/

div.article-contents h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.article-contents h1 {
    font-size: 19px;
  }
}

div.article-contents h2 {
  font-size: 28px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.article-contents h2 {
    font-size: 19px;
    font-weight: 900;
  }
}

div.article-contents h3 {
  margin-top: 50px;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  div.article-contents h3 {
    margin-top: initial;
    font-size: 16px;
    font-weight: 900;
  }
}

div.article-contents h4 {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  div.article-contents h4 {
    margin-top: initial;
    font-size: 16px;
    font-weight: 900;
  }
}

div.article-contents p {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 16px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.02em;
  /* letter-spacing: 0; */
  word-break: break-all;
}

@media only screen and (max-width: 500px) {
  div.article-contents p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }
}

div.article-contents div.link-home {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  div.article-contents div.link-home {
    flex-wrap: wrap;
  }
}

div.article-contents div.link-home a {
  color: var(--color-justdb-blue);
  white-space: nowrap;
}

div.article-contents div.link-home a:hover {
  opacity: 0.7;
}

div.article-contents div.link-home a img {
  width: 10px;
  height: auto;
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

div.article-contents div.link-home span {
  padding-left: 5px;
  padding-right: 5px;
}

div.article-contents div.link-home div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #070b0f;
}

div.article-contents div.mainvisual img {
  width: 100%;
}

div.article-contents div.list_secondary {
  margin-top: 50px;
  font-size: 16px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-top: 40px;
    width: 100%;
    z-index: 1001;
  }
}

div.article-contents div.list_secondary table {
  width: 100%;
  border-collapse: collapse;
}

div.article-contents div.list_secondary table tr, div.article-contents div.list_secondary table tr.accordion-list {
  border: solid 1px #eee;
}

div.article-contents div.list_secondary table tr th.js-accordion-list-title, div.article-contents div.list_secondary table tr.accordion-list th.js-accordion-list-title {
  position: relative;
  height: 40px;
  cursor: pointer;
}

div.article-contents div.list_secondary table tr th.js-accordion-list-title::after, div.article-contents div.list_secondary table tr.accordion-list th.js-accordion-list-title::after {
  content: "";
  position: absolute;
  right: 40%;
  top: 33%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #070b0f;
  border-right: solid 2px #070b0f;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr th.js-accordion-list-title::after, div.article-contents div.list_secondary table tr.accordion-list th.js-accordion-list-title::after {
    display: none;
    /*
                            top: 43%;
                            right: 5px;
                            border-top: solid 2px #fff;
                            border-right: solid 2px #fff;
                            transform: rotate(-45deg);
                            */
  }
}

div.article-contents div.list_secondary table tr th.js-accordion-list-title.open::after, div.article-contents div.list_secondary table tr.accordion-list th.js-accordion-list-title.open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 45%;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr th.js-accordion-list-title.open::after, div.article-contents div.list_secondary table tr.accordion-list th.js-accordion-list-title.open::after {
    /*
                            top: 35%;
                            transform: rotate(135deg);
                            */
  }
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr th.js-accordion-list-title, div.article-contents div.list_secondary table tr.accordion-list th.js-accordion-list-title {
    /*padding-left: 3px;*/
    width: 80px;
    height: 60px;
    /*text-align: left;*/
    line-height: 40px;
    color: #fff;
    font-weight: 300;
    font-size: 0;
    background-image: url(/local/images/mokuji_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

div.article-contents div.list_secondary table tr td, div.article-contents div.list_secondary table tr.accordion-list td {
  padding: 0;
  padding-right: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr td, div.article-contents div.list_secondary table tr.accordion-list td {
    padding-bottom: 53px;
  }
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr td ul, div.article-contents div.list_secondary table tr.accordion-list td ul {
    padding-left: 0;
  }
}

div.article-contents div.list_secondary table tr td ul li, div.article-contents div.list_secondary table tr.accordion-list td ul li {
  margin-left: 1.4em;
  text-indent: -1.4em;
  height: 40px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr td ul li, div.article-contents div.list_secondary table tr.accordion-list td ul li {
    height: initial;
    min-height: 40px;
  }
}

div.article-contents div.list_secondary table tr td ul li a, div.article-contents div.list_secondary table tr.accordion-list td ul li a {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr td ul li a, div.article-contents div.list_secondary table tr.accordion-list td ul li a {
    font-size: 14px;
    color: #070b0f;
  }
}

div.article-contents div.list_secondary table tr td ul li a:hover, div.article-contents div.list_secondary table tr.accordion-list td ul li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

div.article-contents div.list_secondary table tr td ul li a span, div.article-contents div.list_secondary table tr.accordion-list td ul li a span {
  margin-right: 10px;
  color: var(--color-justdb-blue);
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr td ul li a span, div.article-contents div.list_secondary table tr.accordion-list td ul li a span {
    color: #070b0f;
  }
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr:first-child, div.article-contents div.list_secondary table tr.accordion-list:first-child {
    position: fixed;
    bottom: 35px;
    left: 12px;
    height: 40px;
    z-index: 3;
    border: none;
  }
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list_secondary table tr:last-child, div.article-contents div.list_secondary table tr.accordion-list:last-child {
    background-color: #fff;
  }
}

div.article-contents div.list {
  margin-top: 50px;
  font-size: 16px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list {
    margin-top: 40px;
  }
}

div.article-contents div.list table {
  width: 100%;
  border-collapse: collapse;
}

div.article-contents div.list table tr {
  border: solid 1px #eee;
}

div.article-contents div.list table tr th {
  height: 40px;
}

div.article-contents div.list table tr th span.list-toggle {
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
  color: var(--color-justdb-blue);
}

div.article-contents div.list table tr th span.list-toggle:hover {
  opacity: 0.7;
  cursor: pointer;
}

div.article-contents div.list table tr td {
  padding: 0;
  padding-right: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list table tr td ul {
    padding-left: 0;
  }
}

div.article-contents div.list table tr td ul li {
  margin-left: 1.4em;
  text-indent: -1.4em;
  height: 40px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list table tr td ul li {
    margin-bottom: 15px;
  }
}

div.article-contents div.list table tr td ul li a {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.article-contents div.list table tr td ul li a {
    font-size: 14px;
  }
}

div.article-contents div.list table tr td ul li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

div.article-contents div.list table tr td ul li a span {
  margin-right: 10px;
  color: var(--color-justdb-blue);
}

div.article-contents > div.content {
  margin-top: 80px;
  margin-bottom: 40px;
  /*p {}*/
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content {
    margin-top: 40px;
  }
}

div.article-contents > div.content div.introduction {
  margin: 20px auto;
  padding: 20px 15px 25px;
  border: solid 1px #a8edda;
}

div.article-contents > div.content h2 {
  margin-bottom: 40px;
  padding-left: 15px;
  border-left: solid 5px var(--color-justdb-blue);
}

div.article-contents > div.content h3 {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 15px;
  line-height: 1.5;
  /* border-left: solid 5px #c8d8d8; */
  border-left: 5px solid rgb(var(--color-justdb-blue-dec) / 0.4);
}

div.article-contents > div.content h4.plusline {
  position: relative;
  left: 35px;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content h4.plusline {
    width: 75vw;
  }
}

div.article-contents > div.content h4.plusline:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: -35px;
  width: 25px;
  height: 1.5px;
  background-color: rgb(var(--color-justdb-blue-dec) / 0.8);
  /*
  height: 1px;
  background-color: var(--color-justdb-blue);
  */
}

div.article-contents > div.content ul {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: justify;
  font-feature-settings: "palt";
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content ul {
    padding-left: 0;
  }
}

div.article-contents > div.content ul li {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
  list-style: disc;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content ul li {
    font-size: 14px;
  }
}

div.article-contents > div.content ul.listStyleNone li {
  list-style: none !important;
}

div.article-contents > div.content ol {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content ol {
    padding-left: 0;
  }
}

div.article-contents > div.content ol li {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
}

div.article-contents > div.content div.img-frame {
  margin: auto;
  width: 80%;
}

div.article-contents > div.content div.img-frame img {
  width: 100%;
  height: auto;
}

div.article-contents > div.content div.img-frame + div.reference {
  margin: -40px 0 0 65px !important;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content div.img-frame + div.reference {
    margin: -20px 0 25px 35px !important;
  }
}

div.article-contents > div.content div.pre-reference {
  margin: -20px 0 0 65px;
  font-size: 12px;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content div.pre-reference {
    margin: -20px 0 0 20px;
  }
  div.article-contents > div.content div.pre-reference + div.reference {
    margin-top: 0px !important;
  }
}

div.article-contents > div.content div.reference {
  margin: 20px 0 0 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content div.reference {
    margin: -20px 0 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    word-break: break-all;
  }
}

div.article-contents > div.content div.reference div.heading {
  font-size: 12px;
}

@media only screen and (max-width: 500px) {
  div.article-contents > div.content div.reference div.heading {
    font-size: 12px;
  }
}
div.article-contents > div.content div.reference div.link {
  font-size: 12px;
  font-feature-settings: "palt";
}
div.article-contents > div.content div.reference div.link a {
  font-size: 12px;
  color: var(--color-justdb-blue);
}

div.article-contents div.writer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: solid 2px #eee;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.writer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

div.article-contents div.writer div.frame-img {
  margin: 40px 20px 20px 20px;
  text-align: center;
}

div.article-contents div.writer div.frame-img img {
  border-radius: 50%;
}

div.article-contents div.writer div.text {
  margin: 40px 20px 20px 20px;
  padding: 10px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.writer div.text {
    margin: 10px 20px 20px 20px;
  }
}

@media only screen and (max-width: 500px) {
  div.article-contents div.writer div.text div {
    text-align: center;
  }
}

div.article-contents div.writer div.text div span.tag {
  position: relative;
  padding: 7px 20px;
  background-color: var(--color-justdb-blue);
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  /*
                    &::before {
                        content: "";
                        position: absolute;
                        top: 4px;
                        left: 69px;
                        z-index: -1;
                        display: block;
                        width: 20px;
                        height: 22px;
                        transform:rotate(-42deg);
                        background-color: var(--color-justdb-blue);
                        @include media(s) {
                            left: 61px;
                        }
                    }
                    */
}

@media only screen and (max-width: 500px) {
  div.article-contents div.writer div.text div span.tag {
    padding: 4px 2px 2px 4px;
    font-size: 16px;
  }
}

div.article-contents div.writer div.text div span.name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.writer div.text div span.name {
    font-size: 18px;
  }
}

div.article-contents div.writer div.text p {
  font-size: 14px;
  margin-top: 30px;
}

div.article-contents div.articles {
  margin-bottom: 100px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles {
    margin-bottom: 0;
  }
}

div.article-contents div.articles div.title {
  margin: 60px 0 20px;
}

div.article-contents div.articles div.title div {
  margin: 0 auto;
  width: 100px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

div.article-contents div.articles div.content {
  position: relative;
  margin: 20px 0;
}

div.article-contents div.articles div.content a.content-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border: solid 1px #eee;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
}

div.article-contents div.articles div.content a.content-inner:hover {
  opacity: 0.7;
  text-decoration: underline;
}

div.article-contents div.articles div.content a.content-inner div.frame-img {
  border-radius: 5px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner div.frame-img {
    padding-top: 0;
    padding-bottom: 0;
    background-color: none;
  }
}

div.article-contents div.articles div.content a.content-inner div.frame-img img.img {
  width: 235px;
  height: auto;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner div.frame-img img.img {
    width: 100%;
    height: auto;
  }
}

div.article-contents div.articles div.content a.content-inner div.frame-text {
  position: relative;
  margin-left: 20px;
  width: 100%;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner div.frame-text {
    margin: auto;
    width: 90%;
  }
}

div.article-contents div.articles div.content a.content-inner div.frame-text div.date {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 12px;
  color: var(--color-justdb-blue);
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner div.frame-text div.date {
    top: 10px;
    left: 0;
  }
}

div.article-contents div.articles div.content a.content-inner div.frame-text h3 {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner div.frame-text h3 {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}

div.article-contents div.articles div.content a.content-inner div.frame-text div.group {
  text-align: center;
}

div.article-contents div.articles div.content a.content-inner div.frame-text div.group div {
  position: absolute;
  bottom: 2px;
  width: 80px;
  height: 20px;
  line-height: 20px;
  color: var(--color-justdb-blue);
  border: solid 1px var(--color-justdb-blue);
  border-radius: 5px;
  font-size: 12px;
}

@media only screen and (max-width: 500px) {
  div.article-contents div.articles div.content a.content-inner div.frame-text div.group div {
    bottom: 15px;
  }
}

/*============================/article-contents==================================*/
/*============================category-contents=========================*/
/*mainvisual*/
div.mainVisual.cate-bi {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_bi.jpg);
}

div.mainVisual.cate-sfa {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_sfa.jpg);
}

div.mainVisual.cate-crm {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_crm.jpg);
}

div.mainVisual.cate-sales {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_sales.jpg);
}

div.mainVisual.cate-efficiency {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_efficiency.jpg);
}

div.mainVisual.cate-e-book {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_e-book.jpg);
}

div.mainVisual.cate-seminar {
  background-image: url(/jp/marketing-research/local/images/cate_mainvisual_seminar.jpg);
}

div.mainVisual {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 2500px;
  height: 400px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 501px) {
  div.mainVisual {
    min-width: 1100px;
  }
}
@media only screen and (max-width: 500px) {
  div.mainVisual {
    height: 200px;
  }
}

div.mainVisual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #070b0f;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
  opacity: 0.4;
}

div.mainVisual div.mainVisual-inner {
  position: relative;
  margin: auto;
  width: 1100px;
  padding-top: 110px;
}
div.mainVisual.cate-seminar div.mainVisual-inner {
  position: relative;
  margin: auto;
  /* width: 1100px; */
  padding-top: 70px;
}
@media only screen and (max-width: 500px) {
  div.mainVisual.cate-seminar div.mainVisual-inner {
    padding-top: 35px;
  }
}
@media only screen and (max-width: 500px) {
  div.mainVisual div.mainVisual-inner {
    width: 90%;
    padding-top: 50px;
  }
}

div.mainVisual div.mainVisual-inner div.link-home {
  position: absolute;
  top: 20px;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  div.mainVisual div.mainVisual-inner div.link-home {
    display: none;
  }
}

div.mainVisual div.mainVisual-inner div.link-home a {
  color: #fff;
}

div.mainVisual div.mainVisual-inner div.link-home a:hover {
  opacity: 0.7;
}

div.mainVisual div.mainVisual-inner div.link-home a img {
  width: 13px;
  height: auto;
}

div.mainVisual div.mainVisual-inner div.link-home span {
  padding-left: 5px;
  padding-right: 5px;
  color: #fff;
}

div.mainVisual div.mainVisual-inner div.link-home div {
  color: #070b0f;
}

div.mainVisual div.mainVisual-inner div.title {
  text-align: center;
  color: #fff;
}

div.mainVisual div.mainVisual-inner div.title h1 {
  font-size: 20px;
  font-weight: 300;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.mainVisual div.mainVisual-inner div.title h1 {
    font-size: 16px;
  }
}

div.mainVisual div.mainVisual-inner div.title h1 span {
  font-size: 40px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.mainVisual div.mainVisual-inner div.title h1 span {
    font-size: 25px;
    line-height: 2.3;
  }
}

div.mainVisual div.mainVisual-inner div.title div {
  font-size: 18px;
  font-weight: 100;
  line-height: 2;
}

div.mainVisual div.mainVisual-inner div.title div.sp-line {
  font-size: 12px;
  line-height: initial;
}

/*category-contents*/
div.category-contents {
  margin: auto;
  width: 850px;
}

@media only screen and (max-width: 500px) {
  div.category-contents {
    width: 100%;
  }
}

div.category-contents h1 {
  font-size: 28px;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.category-contents h1 {
    font-size: 19px;
  }
}

div.category-contents h2 {
  font-size: 28px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.category-contents h2 {
    font-size: 19px;
    font-weight: 900;
  }
}

div.category-contents h3 {
  margin-top: 50px;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  div.category-contents h3 {
    margin-top: initial;
    font-size: 16px;
    font-weight: 900;
  }
}

div.category-contents h4 {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  div.category-contents h4 {
    margin-top: initial;
    font-size: 16px;
    font-weight: 900;
  }
}

div.category-contents p {
  font-size: 16px;
  text-align: justify;
  letter-spacing: 2px;
  line-height: 1.8;
  word-break: break-all;
}

@media only screen and (max-width: 500px) {
  div.category-contents p {
    font-size: 14px;
  }
}

div.category-contents > div.content {
  margin-top: 80px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content {
    margin-top: 40px;
  }
}

div.category-contents > div.content h2 {
  margin-bottom: 40px;
  padding-left: 15px;
  border-left: solid 5px var(--color-light-teal);
}

div.category-contents > div.content h3 {
  margin-top: 50px;
  margin-bottom: 40px;
  padding-left: 15px;
  line-height: 1.5;
  border-left: solid 5px #c8d8d8;
}

div.category-contents > div.content h4.plusline {
  position: relative;
  left: 35px;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content h4.plusline {
    width: 75vw;
  }
}

div.category-contents > div.content h4.plusline:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: -35px;
  width: 25px;
  height: 1px;
  background-color: var(--color-light-teal);
}

div.category-contents > div.content ul {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: justify;
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content ul {
    padding-left: 0;
  }
}

div.category-contents > div.content ul li {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
  list-style: disc;
  font-weight: 400;
  word-break: break-all;
  text-align: justify;
}

div.category-contents > div.content ul li span {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content ul li {
    font-size: 14px;
  }
  div.category-contents > div.content ul li span:first-child {
    font-size: 14px;
  }
}

div.category-contents > div.content ol {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content ol {
    padding-left: 0;
  }
}

div.category-contents > div.content ol li {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 400;
  word-break: break-all;
  text-align: justify;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content ol li {
    font-size: 14px;
  }
}

div.category-contents > div.content div.img-frame {
  margin: auto;
  width: 80%;
}

div.category-contents > div.content div.img-frame img {
  width: 100%;
  height: auto;
}

div.category-contents > div.content div.reference {
  margin: -40px 0 0 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content div.reference {
    margin: -20px 0 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    word-break: break-all;
  }
}

div.category-contents > div.content div.reference div.heading {
  font-size: 12px;
}

@media only screen and (max-width: 500px) {
  div.category-contents > div.content div.reference div.heading {
    font-size: 12px;
  }
}

div.category-contents > div.content div.reference div.link a {
  font-size: 12px;
  color: var(--color-justdb-blue);
}

div.category-contents div.articles {
  margin-bottom: 100px;
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles {
    margin-bottom: 0;
  }
}

div.category-contents div.articles div.title {
  margin: 60px 0 20px;
}

div.category-contents div.articles div.title div {
  margin: 0 auto;
  width: 100px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

div.category-contents div.articles div.content {
  position: relative;
  margin: 20px 0;
}

div.category-contents div.articles div.content a.content-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border: solid 1px #eee;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
}

div.category-contents div.articles div.content a.content-inner:hover {
  opacity: 0.7;
  text-decoration: underline;
}

div.category-contents div.articles div.content a.content-inner div.frame-img {
  border-radius: 5px;
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner div.frame-img {
    padding-top: 0;
    padding-bottom: 0;
    background-color: none;
  }
}

div.category-contents div.articles div.content a.content-inner div.frame-img img.img {
  width: 235px;
  height: auto;
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner div.frame-img img.img {
    width: 100%;
    height: auto;
  }
}

div.category-contents div.articles div.content a.content-inner div.frame-text {
  position: relative;
  margin-left: 20px;
  width: 100%;
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner div.frame-text {
    margin: auto;
    width: 90%;
  }
}

div.category-contents div.articles div.content a.content-inner div.frame-text div.date {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 12px;
  color: var(--color-justdb-blue);
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner div.frame-text div.date {
    top: 10px;
    left: 0;
  }
}

div.category-contents div.articles div.content a.content-inner div.frame-text h3 {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner div.frame-text h3 {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}

div.category-contents div.articles div.content a.content-inner div.frame-text div.group {
  text-align: center;
}

div.category-contents div.articles div.content a.content-inner div.frame-text div.group div {
  position: absolute;
  bottom: 2px;
  width: 80px;
  height: 20px;
  line-height: 20px;
  color: var(--color-justdb-blue);
  border: solid 1px var(--color-justdb-blue);
  border-radius: 5px;
  font-size: 12px;
}

@media only screen and (max-width: 500px) {
  div.category-contents div.articles div.content a.content-inner div.frame-text div.group div {
    bottom: 15px;
  }
}

div.side-contents-frame > section.side-contents {
  display: none;
  width: 300px;
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.side-contents-frame > section.side-contents {
    display: block;
    width: 100%;
  }
}

div.side-contents-frame > section.side-contents div.category-groups div.title {
  margin: 30px 0 20px;
  width: 300px;
  border-bottom: solid 1px #000;
}

@media only screen and (max-width: 500px) {
  div.side-contents-frame > section.side-contents div.category-groups div.title {
    width: 100%;
  }
}

div.side-contents-frame > section.side-contents div.category-groups div.title div {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

div.side-contents-frame > section.side-contents div.category-groups ul.groups {
  padding: 0;
}

div.side-contents-frame > section.side-contents div.category-groups ul.groups li.group {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

div.side-contents-frame > section.side-contents div.category-groups ul.groups li.group a {
  font-size: 16px;
}

div.side-contents-frame > section.side-contents div.category-groups ul.groups li.group a:hover {
  opacity: 0.7;
}

div.side-contents-frame > section.side-contents div.category-groups ul.groups li.group div.number {
  margin-left: 20px;
  width: 30px;
  height: 16px;
  background-color: #e8f1f1;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
  font-size: 12px;
  color: #456a87;
}

@media only screen and (max-width: 500px) {
  div.side-contents-frame > section.side-contents div.category-downloadItems {
    margin-bottom: 100px;
  }
}

div.side-contents-frame > section.side-contents div.category-downloadItems div.title {
  margin: 30px 0 20px;
  width: 300px;
  border-bottom: solid 1px #000;
}

@media only screen and (max-width: 500px) {
  div.side-contents-frame > section.side-contents div.category-downloadItems div.title {
    width: 100%;
  }
}

div.side-contents-frame > section.side-contents div.category-downloadItems div.title div {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems {
  padding: 0;
  border-bottom: solid 1px #000;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem:last-child {
  margin-bottom: 20px;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner:hover {
  opacity: 0.7;
  text-decoration: underline;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner div.frame-img img.img {
  width: 90px;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner h3 {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
}

div.side-contents-frame > section.side-contents div.category-downloadItems ul.downloadItems br.splitLine {
  content: "";
  display: block;
  margin: 10px 0;
  width: 100%;
  height: 2px;
  background-color: #eee;
}

div.side-contents-frame > section.side-contents div.category-downloadItems div.link {
  position: relative;
}

div.side-contents-frame > section.side-contents div.category-downloadItems div.link a {
  position: absolute;
  margin-top: 20px;
  right: 0;
  font-size: 16px;
  font-weight: 400;
}

div.side-contents-frame > section.side-contents div.category-downloadItems div.link a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/*============================/category-contents=========================*/
/*============================bottom-category-groups=========================*/
section.bottom-category-groups {
  display: block;
  background-color: #e8f1f1;
  color: #070b0f;
}

@media only screen and (min-width: 501px) {
  section.bottom-category-groups {
    min-width: 1100px;
  }
}
@media only screen and (max-width: 500px) {
  section.bottom-category-groups {
    display: none;
  }
}

section.bottom-category-groups div.category-inner {
  margin: auto;
  padding-bottom: 40px;
  width: 850px;
}

section.bottom-category-groups div.category-inner div.title {
  padding: 30px 0;
  text-align: center;
}

section.bottom-category-groups div.category-inner div.title div {
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}

section.bottom-category-groups div.category-inner div.groups-frame {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups {
  padding-left: 0;
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups:nth-child(2) {
  margin-left: 160px;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups:last-child li.group {
  margin-left: 100px;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups li.group {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups li.group a {
  font-size: 16px;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups li.group a:hover {
  opacity: 0.7;
}

section.bottom-category-groups div.category-inner div.groups-frame ul.groups li.group div.number {
  margin-top: 3px;
  margin-left: 20px;
  width: 30px;
  height: 16px;
  background-color: #d6dede;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
  font-size: 12px;
  color: #456a87;
}

/*============================/bottom-category-groups=========================*/
/*=====================================e-book====================================*/
div.category-e-book {
  margin: auto;
  width: 100%;
}

div.category-e-book section.gnavi {
  margin: 50px auto;
}

div.category-e-book section.gnavi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media only screen and (max-width: 500px) {
  div.category-e-book section.gnavi ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 500px) {
  div.category-e-book section.gnavi ul li {
    margin: 20px auto;
    text-align: center;
  }
}

div.category-e-book section.gnavi ul li a {
  display: inline-block;
  width: 250px;
  height: 40px;
  border-radius: 25px;
  background-color: var(--color-justdb-blue);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: white;
}

div.category-e-book section.gnavi ul li a:hover {
  opacity: 0.7;
}

div.category-e-book div.content-wrapper {
  margin: 50px auto;
}

div.category-e-book div.content-wrapper:last-child div.contents div.content a.title {
  height: 60px;
}

@media only screen and (max-width: 500px) {
  div.category-e-book div.content-wrapper:last-child div.contents div.content a.title {
    height: initial;
  }
}

div.category-e-book div.content-wrapper:last-child div.contents div.content p {
  height: 120px;
}

div.category-e-book div.content-wrapper h2 {
  text-align: center;
  font-size: 18px;
}

div.category-e-book div.content-wrapper h2 span {
  font-size: 32px;
}

div.category-e-book div.content-wrapper div.contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.category-e-book div.content-wrapper div.contents div.content {
  margin: 30px auto;
  width: 340px;
}

@media only screen and (max-width: 500px) {
  div.category-e-book div.content-wrapper div.contents div.content {
    width: 100%;
  }
}

div.category-e-book div.content-wrapper div.contents div.content a.img-frame {
  display: block;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

div.category-e-book div.content-wrapper div.contents div.content a.img-frame img {
  width: 340px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 500px) {
  div.category-e-book div.content-wrapper div.contents div.content a.img-frame img {
    width: 100%;
  }
}

div.category-e-book div.content-wrapper div.contents div.content a.img-frame img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

div.category-e-book div.content-wrapper div.contents div.content a.title {
  display: block;
  margin: 15px auto;
  width: 95%;
  height: 80px;
}

@media only screen and (max-width: 500px) {
  div.category-e-book div.content-wrapper div.contents div.content a.title {
    height: initial;
  }
}

div.category-e-book div.content-wrapper div.contents div.content a.title h3 {
  margin: 15px auto 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  letter-spacing: 2px;
  text-align: justify;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

div.category-e-book div.content-wrapper div.contents div.content a.title h3 span.text-ellipsis {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div.category-e-book div.content-wrapper div.contents div.content a.title h3:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 500px) {
  div.category-e-book div.content-wrapper div.contents div.content a.title h3 {
    height: initial;
  }
}

div.category-e-book div.content-wrapper div.contents div.content p {
  margin: auto;
  width: 95%;
  height: 100px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 14px;
  line-height: 1.4;
}

div.category-e-book div.content-wrapper div.contents div.content p span.text-ellipsis {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div.category-e-book div.content-wrapper div.contents div.content a.button-frame {
  /*div.button {
                        margin: 20px auto;
                        text-align: center;
                        span {
                            margin: 10px auto;
                            padding: 7px 20px 8px;
                            border-radius: 5px;
                            background-color: var(--color-justdb-blue);
                            font-size: 16px;
                            color: #fff;
                            transition: all 0.3s ease-out;
                            &:hover {
                                opacity: 0.7;
                            }
                            &::after {
                                content: "";
                                display: inline-block;
                                margin: 0 0 1.3px 30px;
                                width: 5px;
                                height: 5px;
                                border: 2px solid;
                                border-color: transparent #fff #fff transparent ;
                                transform: rotate(-45deg);
                            }
                        }
                    }*/
}

div.category-e-book div.content-wrapper div.contents div.content a.button-frame div.button {
  background: #ff8808;
  display: block;
  font-size: 16px;
  width: 75%;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  -webkit-box-shadow: 0px 1px 3px -2px #ce7200;
          box-shadow: 0px 1px 3px -2px #ce7200;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 500px) {
  div.category-e-book div.content-wrapper div.contents div.content a.button-frame div.button {
    margin: 15px auto;
  }
}

div.category-e-book div.content-wrapper div.contents div.content a.button-frame div.button:hover {
  opacity: 0.7;
}

/*=====================================/e-book====================================*/
/*=====================================seminar====================================*/
div.category-seminar {
  margin: auto;
  width: 100%;
}

div.category-seminar div.content-wrapper {
  margin: 50px auto;
}

div.category-seminar div.content-wrapper:last-child div.contents div.content a.title {
  height: 60px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper:last-child div.contents div.content a.title {
    height: initial;
  }
}

div.category-seminar div.content-wrapper:last-child div.contents div.content p {
  height: 120px;
}

div.category-seminar div.content-wrapper h2 {
  text-align: center;
  font-size: 18px;
}

div.category-seminar div.content-wrapper h2 span {
  font-size: 32px;
}

div.category-seminar div.content-wrapper div.content-sort {
  margin-left: auto;
  width: 650px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.content-sort {
    overflow: hidden;
    max-width: 285px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

div.category-seminar div.content-wrapper div.content-sort p {
  position: relative;
  margin-right: 20px;
  padding-right: 25px;
  color: #243746;
  font-size: 16px;
  border-right: solid 1px #ccc;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.content-sort p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 20px;
    border-right: none;
    line-height: 40px;
  }
}

div.category-seminar div.content-wrapper div.content-sort p span.cate-logo {
  margin-right: 5px;
  padding: 0 5px 1px;
  font-size: .8em;
}

div.category-seminar div.content-wrapper div.content-sort p span {
  margin-left: 3px;
}

div.category-seminar div.content-wrapper div.content-sort p span strong {
  font-size: 30px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.content-sort p::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
    width: 1px;
    height: 30px;
    background: #ccc;
  }
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.content-sort p::after {
    content: "カテゴリーで検索";
    display: block;
    position: absolute;
    top: 53%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -250px;
    width: 250px;
  }
}

div.category-seminar div.content-wrapper div.content-sort ul.sortNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.content-sort ul.sortNav {
    margin-top: 0;
  }
}

div.category-seminar div.content-wrapper div.content-sort ul.sortNav li {
  position: relative;
  margin: 0 3px;
  padding: 5px 20px;
  border-radius: 20px;
  background: #ccc;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.content-sort ul.sortNav li {
    padding: 5px 10px;
  }
}

div.category-seminar div.content-wrapper div.content-sort ul.sortNav li:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

div.category-seminar div.content-wrapper div.content-sort ul.sortNav li.current {
  background: #243746;
  color: #fff;
}

div.category-seminar div.content-wrapper div.content-sort .sortNav {
  font-size: 16px;
}

div.category-seminar div.content-wrapper div.contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: initial;
  -webkit-justify-content: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

div.category-seminar div.content-wrapper div.contents div.content {
  margin: 30px 13px;
  width: 340px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content {
    margin: 30px auto;
    width: 100%;
  }
}

div.category-seminar div.content-wrapper div.contents div.content a.img-frame {
  display: block;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

div.category-seminar div.content-wrapper div.contents div.content a.img-frame img {
  width: 340px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content a.img-frame img {
    width: 100%;
  }
}

div.category-seminar div.content-wrapper div.contents div.content a.img-frame img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

div.category-seminar div.content-wrapper div.contents div.content div.img-frame-noLink {
  display: block;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

div.category-seminar div.content-wrapper div.contents div.content div.img-frame-noLink img {
  width: 340px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content div.img-frame-noLink img {
    width: 100%;
  }
}

div.category-seminar div.content-wrapper div.contents div.content div.title, div.category-seminar div.content-wrapper div.contents div.content a.title {
  display: block;
  margin: 15px auto;
  width: 95%;
  height: 100px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content div.title, div.category-seminar div.content-wrapper div.contents div.content a.title {
    height: initial;
  }
}

div.category-seminar div.content-wrapper div.contents div.content div.title h3, div.category-seminar div.content-wrapper div.contents div.content a.title h3 {
  margin: 15px auto 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  letter-spacing: 2px;
  text-align: justify;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

div.category-seminar div.content-wrapper div.contents div.content div.title h3 span.text-ellipsis, div.category-seminar div.content-wrapper div.contents div.content a.title h3 span.text-ellipsis {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div.category-seminar div.content-wrapper div.contents div.content div.title h3:hover, div.category-seminar div.content-wrapper div.contents div.content a.title h3:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content div.title h3, div.category-seminar div.content-wrapper div.contents div.content a.title h3 {
    height: initial;
  }
}

div.category-seminar div.content-wrapper div.contents div.content p {
  margin: auto;
  width: 95%;
  height: 100px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 14px;
  line-height: 1.4;
}

div.category-seminar div.content-wrapper div.contents div.content p span.text-ellipsis {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div.category-seminar div.content-wrapper div.contents div.content a.button-frame div.button {
  background: var(--color-justdb-blue);
  display: block;
  font-size: 16px;
  width: 85%;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  -webkit-box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
          box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content a.button-frame div.button {
    margin: 15px auto;
  }
}

div.category-seminar div.content-wrapper div.contents div.content a.button-frame div.button:hover {
  opacity: 0.7;
}

div.category-seminar div.content-wrapper div.contents div.content a.button-frame div.button_full {
  background: #fff;
  display: block;
  font-size: 16px;
  width: 85%;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
  color: rgba(38, 141, 141, 0.5);
  text-align: center;
  border-radius: 25px;
  border: solid 1px rgba(38, 141, 141, 0.5);
  -webkit-box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
          box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content a.button-frame div.button_full {
    margin: 15px auto;
  }
}

div.category-seminar div.content-wrapper div.contents div.content a.button-frame div.button_full:hover {
  opacity: 0.7;
}

div.category-seminar div.content-wrapper div.contents div.content div.button-frame-noLink div.button_full {
  background: #fff;
  display: block;
  font-size: 16px;
  width: 85%;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
  color: rgba(38, 141, 141, 0.5);
  text-align: center;
  border-radius: 25px;
  border: solid 1px rgba(38, 141, 141, 0.5);
  -webkit-box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
          box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 500px) {
  div.category-seminar div.content-wrapper div.contents div.content div.button-frame-noLink div.button_full {
    margin: 15px auto;
  }
}

div.seminar-container {
  background-color: rgba(38, 141, 141, 0.1);
}

@media only screen and (max-width: 500px) {
  div.seminar-container {
    background-color: #fff;
  }
}

div.category-seminar-content {
  margin: auto;
  width: 100%;
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content {
    text-align: justify;
  }
}

div.category-seminar-content div.floatMain {
  display: block;
  position: relative;
  padding: 0 0 64px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

div.category-seminar-content div.floatMain div.floatMainInner {
  max-width: 900px;
  margin: -150px auto 0;
  padding-bottom: 180px;
  background: #fff;
  word-break: break-all;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner {
    margin: 0 auto;
    padding-bottom: 0;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 54px 0 70px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle {
    padding: 54px 0 34px;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle div.publishDate {
  position: absolute;
  width: 100%;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 36px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle div.publishDate {
    font-size: 14px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle div.publishDate time {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle div.publishDate time {
    margin-right: 10px;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection {
  padding: 54px 0 0;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection {
    padding: 34px 4% 40px;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection h3, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection h3 {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
  font-size: 28px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection h3, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection h3 {
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection h3::before, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection h3::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 40px;
  margin: auto;
  background: #373737;
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection p, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection p {
  margin: 1em 0;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection p, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection p {
    font-size: 14px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection ul, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection ul {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: justify;
  color: #070b0f;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection ul, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection ul {
    padding-left: 0;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection ul li, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection ul li {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
  list-style: disc;
  font-weight: 400;
  word-break: break-all;
  text-align: justify;
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection ul li span, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection ul li span {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection ul li, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection ul li {
    font-size: 14px;
  }
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection ul li span:first-child, div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.seminarSection ul li span:first-child {
    font-size: 14px;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap {
  border: 1px solid #E7E9ED;
  line-height: 1.4;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap {
    border: initial;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 4%;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
    -webkit-align-items: initial;
        -ms-flex-align: initial;
            align-items: initial;
    padding: 40px 0;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  border-bottom: 1px solid #E7E9ED;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl::before {
    width: 85vw;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dt {
    display: initial;
    margin-bottom: 20px;
    width: 100%;
    -webkit-box-align: initial;
    -webkit-align-items: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd {
  font-size: 16px;
  font-weight: 400;
  width: 70%;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd {
    width: initial;
    margin-left: 0;
    font-size: 14px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd div.seminarAddress p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd div.seminarAddress p {
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd div.seminarAddress p span {
  font-weight: bold;
  margin: 0;
  display: inline-block;
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd ul.seminarTarget {
  margin-left: 15px;
  padding: 0;
  list-style: none;
}

div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd ul.seminarTarget li {
  list-style: disc;
  font-size: 16px;
  font-weight: 400;
  margin-left: 0;
  margin-bottom: 7px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner article#eventArticle section.innerSection div.tableWrap dl dd ul.seminarTarget li {
    font-size: 14px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection, div.category-seminar-content div.floatMain div.floatMainInner section#saform {
  padding-top: 50px;
  padding-bottom: 0;
  padding: 40px 20px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection, div.category-seminar-content div.floatMain div.floatMainInner section#saform {
    padding: 60px 4%;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection h2, div.category-seminar-content div.floatMain div.floatMainInner section#saform h2 {
  position: relative;
  top: -30px;
  margin: auto auto 48px;
  padding-left: 24px;
  max-width: 615px;
  font-size: 28px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection h2, div.category-seminar-content div.floatMain div.floatMainInner section#saform h2 {
    font-size: 18px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection h2::before, div.category-seminar-content div.floatMain div.floatMainInner section#saform h2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 40px;
  margin: auto;
  background: #373737;
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box {
  margin-top: 80px;
  padding: 10px 60px 15px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box {
    padding: 10px 20px 15px;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box div.p-mark, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box div.p-mark {
  float: left;
  margin-left: 30%;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box div.p-mark, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box div.p-mark {
    margin-left: initial;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box div.links, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box div.links {
  padding-top: 30px;
  padding-left: 100px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box div.links, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box div.links {
    padding-right: 5px;
    padding-left: initial;
    text-align: right;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box div.links a, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box div.links a {
  font-size: 16px;
  color: #69C;
  text-decoration: none;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box div.links a, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box div.links a {
    font-size: 14px;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box p.notice, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box p.notice {
  width: 80%;
  margin: auto;
  padding: 15px 0;
  color: #070b0f;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.privacy-box p.notice, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.privacy-box p.notice {
    width: 100%;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner section.outsideSection div.seminarClose, div.category-seminar-content div.floatMain div.floatMainInner section#saform div.seminarClose {
  margin: 0 auto 30px;
}

div.category-seminar-content div.floatMain div.floatMainInner div.seminarClose {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  color: #FF7070;
  border: 2px solid #FF7070;
  margin: 70px auto;
  font-size: 16px;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner div.seminarClose {
    font-size: 14px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner div.reply {
  padding: 50px 0;
}

div.category-seminar-content div.floatMain div.floatMainInner div.reply p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  div.category-seminar-content div.floatMain div.floatMainInner div.reply p {
    font-size: 14px;
    font-weight: 100;
  }
}

div.category-seminar-content div.floatMain div.floatMainInner div.reply p:first-child {
  font-size: 20px;
}

div.category-seminar-content div.floatMain div.floatMainInner div.reply a.button-frame div.button {
  background: var(--color-justdb-blue);
  display: block;
  font-size: 16px;
  width: 290px;
  margin: 50px auto 0;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  -webkit-box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
          box-shadow: 0px 1px 3px -2px var(--color-justdb-blue);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

div.category-seminar-content div.floatMain div.floatMainInner div.reply a.button-frame div.button:hover {
  opacity: 0.7;
}

/*=====================================/seminar====================================*/
/*=====================================cta========================================*/
.cta {
  border: 1px solid #ccc;
  padding: 22px;
}

@media only screen and (max-width: 500px) {
  .cta {
    padding: 18px;
  }
}

.cta .itembox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 500px) {
  .cta .itembox {
    display: block;
  }
}

.cta .item-img {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-right: 12px;
}

.cta .item-img img {
  width: 95%;
}

@media only screen and (max-width: 500px) {
  .cta .item-img img {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .cta .sp-line {
    margin-right: 0;
    margin-top: 14px;
    display: block;
  }
}

.cta .item-text {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.cta .item-text p {
  text-align: initial;
  letter-spacing: initial;
}

.cta .item-text .title {
  margin: 0;
  color: var(--color-justdb-blue);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.cta .item-text .title span {
  font-size: 1.2em;
}

.cta .item-text .detail {
  font-size: 14px;
  border-top: 1px solid #CCC;
  padding-top: 18px;
  margin-top: 18px;
  margin-bottom: 0;
}

.cta .btn {
  position: relative;
  margin: 30px auto 0;
}

.cta .btn a {
  display: block;
  background: #ff8000;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  border-radius: 60px;
}

@media only screen and (max-width: 500px) {
  .cta .btn a {
    border-radius: 40px;
  }
}

.cta a {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cta a:hover {
  opacity: .7;
}

/*
  @media only screen and (max-width: 500px) {
    .cta {
      padding: 18px;
  
      .itembox {
        display: block;
      }
  
      .item-img.sp-line {
        margin-right: 0;
        margin-top: 14px;
        display: block;
      }
  
      .btn a {
        border-radius: 40px;
      }
    }
  }
  */
/*=====================================/cta=======================================*/
/*=====================================追記_20220419=======================================*/
.lead ul {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #070b0f;
}
.lead ul li {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
  list-style: disc;
}
/* #content-6 .case a {
  word-break: break-all;
} */

@media only screen and (max-width: 500px) {
  .lead ul {
      padding-left: 0;
  }
  .lead ul li {
      font-size: 14px;
  }
}
.txt-annotation {
  color: var(--color-justdb-blue);
  font-size: .8em;
}
.btn-reg a {
  display: inline-block;
  position: relative;
  /* margin-top: 20px; */
  background-color: #ff7e00;
  padding: 15px 30px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
}
/* .btn-reg a {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  background-color: #ff7e00;
  padding: 20px 70px 20px 30px;
  border-radius: 40px;
  font-weight: bold;
  color: #fff;
  font-size: 26px;
} */
.btn-reg a:hover {
  opacity: .7;
}
/* .btn-reg a i{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  background-image: url(/local/images/icon-arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
} */
@media only screen and (max-width: 500px) {
  .btn-reg {
    text-align: center;
  }
  .btn-reg a {
    font-size: 16px;
  }
  .btn-reg a i{
    right: 25px;
    width: 20px;
    height: 20px;
  }
}
a.add-link {
  font-feature-settings: "palt";
  text-decoration: none;
  color: var(--color-justdb-blue);
}
a.add-link:hover {
  text-decoration: underline;
  color: #9eceff;
}
/* satori ポップアップ */
#satori__popup_wrapper {
  font-size: 16px;
}
/*=====================================/追記_20220419=======================================*/
/*=====================================追記_20220825=======================================*/
a.link-color { color:var(--color-justdb-blue); }
a.link-color {text-decoration: underline!important;}
a.link-color:hover {color: red}
/*=====================================/追記_20220825=======================================*/

/*=====================================/追記_20250707=======================================*/
/* ---- 目次の追加分 ---- */
div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent {
  height: auto;
  /* min-height: 35px; */
  min-height: 40px;
  padding-left: 2.15em;
  text-indent: -1.15em;
}

div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent.example {
  /* 1.2emで2行目行頭位置を合わせる */
  padding-left: calc(2.15em + 8em - 1.2em);
  text-indent: calc(-1.15em - 8em + 1.2em);
  padding-bottom: 15px;
}

div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent.example a span.ex-name {
  display: inline-block;
  width: 8em;
  margin-right: 0;
  color: #070b0f;
  text-indent: 0;
}

div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent.example.ex2 {
  padding-left: calc(2.15em + 7em - 1.2em);
  text-indent: calc(-1.15em - 7em + 1.2em);
}

div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent.example.ex2 a span.ex-name {
  width: 7em;
}

div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent.example.ex3 {
  padding-left: calc(2.15em + 5em - 1.2em);
  text-indent: calc(-1.15em - 5em + 1.2em);
}

div.article-contents div.list_secondary table tr.accordion-list td ul li.js-accordion-list-indent.example.ex3 a span.ex-name {
  width: 5em;
}

div.article-contents div.content h3.example {
  padding-left: calc(15px + 8em);
  text-indent: -8em;
}

div.article-contents div.content h3.example .ex-name {
  display: inline-block;
  width: 8em;
  text-indent: 0;
}

div.article-contents div.content h3.example:nth-of-type(2) {
  padding-left: calc(15px + 7em);
  text-indent: -7em;
}

div.article-contents div.content h3.example:nth-of-type(2) .ex-name {
  display: inline-block;
  width: 7em;
  text-indent: 0;
}

div.article-contents div.content h3.example:nth-of-type(3) {
  padding-left: calc(15px + 5em);
  text-indent: -5em;
}

div.article-contents div.content h3.example:nth-of-type(3) .ex-name {
  display: inline-block;
  width: 5em;
  text-indent: 0;
}

/* ---- コンテンツの情報 ---- */
div.article-contents .info-wrapper {
  display: flex;
  justify-content: space-between;
  justify-items: center;
}

div.article-contents .info-wrapper .med-cat-wrapper {
  display: flex;
  justify-content: flex-start;
}

div.article-contents .info-wrapper .medium,
div.article-contents .info-wrapper .category {
  padding: 3px 6px;
  color: var(--color-justdb-blue);
  background-color: rgb(var(--color-justdb-blue-dec) / 0.1);
  font-size: 15px;
  font-weight: 450;
  line-height: 1;
  letter-spacing: 0;
  /* letter-spacing: -0.05em; */
  white-space: nowrap;
  text-overflow: ellipsis;
}

div.article-contents .info-wrapper .medium {
  display: block;
  font-weight: 550;
  margin-right: 5px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

div.article-contents .info-wrapper .update {
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {
  div.article-contents .info-wrapper .med-cat-wrapper {
    flex-wrap: wrap;
  }

  div.article-contents .info-wrapper .medium,
  div.article-contents .info-wrapper .category {
    margin-top: 5px;
  }

  div.article-contents .info-wrapper .update {
    margin-top: 5px;
  }
}

@media only screen and (max-width: 1024px) {
  div.article-contents .info-wrapper .medium,
  div.article-contents .info-wrapper .category {
    font-size: 13px;
  }

  div.article-contents .info-wrapper .update {
    font-size: 12px;
  }
}

.med-article div.article-contents .info-wrapper .medium {
  color: var(--color-medium-article-dark);
  background-color: rgb(var(--color-medium-article-dec) / 0.1);
}

.med-whitepaper div.article-contents .info-wrapper .medium {
  color: var(--color-medium-whitepaper-dark);
  background-color: rgb(var(--color-medium-whitepaper-dec) / 0.1);
}

.med-seminar div.article-contents .info-wrapper .medium {
  color: var(--color-medium-seminar-dark);
  background-color: rgb(var(--color-medium-seminar-dec) / 0.1);
}

.med-article div.article-contents .info-wrapper .medium:hover {
  color: var(--color-medium-article);
  background-color: rgb(var(--color-medium-article-dec) / 0.2);
}

.med-whitepaper div.article-contents .info-wrapper .medium:hover {
  color: var(--color-medium-whitepaper);
  background-color: rgb(var(--color-medium-whitepaper-dec) / 0.2);
}

.med-seminar div.article-contents .info-wrapper .medium:hover {
  color: var(--color-medium-seminar);
  background-color: rgb(var(--color-medium-seminar-dec) / 0.2);
}

.cat-utilization div.article-contents .info-wrapper .category {
  color: var(--color-category-utilization-dark);
  background-color: rgb(var(--color-category-utilization-dec) / 0.1);
}

.cat-operation div.article-contents .info-wrapper .category {
  color: var(--color-category-operation-dark);
  background-color: rgb(var(--color-category-operation-dec) / 0.1);
}

.cat-dx div.article-contents .info-wrapper .category {
  color: var(--color-category-dx-dark);
  background-color: rgb(var(--color-category-dx-dec) / 0.1);
}

.cat-efficiency div.article-contents .info-wrapper .category {
  color: var(--color-category-efficiency-dark);
  background-color: rgb(var(--color-category-efficiency-dec) / 0.1);
}

.cat-breakaway div.article-contents .info-wrapper .category {
  color: var(--color-category-breakaway-dark);
  background-color: rgb(var(--color-category-breakaway-dec) / 0.1);
}

.cat-others div.article-contents .info-wrapper .category {
  color: var(--color-category-others-dark);
  background-color: rgb(var(--color-category-others-dec) / 0.1);
}

.cat-utilization div.article-contents .info-wrapper .update {
  color: var(--color-category-utilization-dark);
}

.cat-operation div.article-contents .info-wrapper .update {
  color: var(--color-category-operation-dark);
}

.cat-dx div.article-contents .info-wrapper .update {
  color: var(--color-category-dx-dark);
}

.cat-efficiency div.article-contents .info-wrapper .update {
  color: var(--color-category-efficiency-dark);
}

.cat-breakaway div.article-contents .info-wrapper .update {
  color: var(--color-category-breakaway-dark);
}

.cat-others div.article-contents .info-wrapper .update {
  color: var(--color-category-others-dark);
}


/* ---- .side-contents追加定義 おすすめダウンロード記事関連？ ---- */
.article-wrapper .category-groups {
  display: none;
}
main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner {
  align-items: center;
  flex-direction: column;
  margin: 5px;
  box-shadow: 1px 0px 14px rgb(0 0 0 / 10%);
  border-radius: 5px;
  overflow: hidden;
}
main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner div.frame-img img.img {
  width: 100%;
}
main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner h3 {
  margin-left: 0;
  padding: 10px 10px 20px 10px;
  text-align: justify; 
  word-break: break-all;
}
main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem a.downloadItem-inner h3 strong {
  display: inline-block;
  margin: 5px 0;
  font-size: 1.2em;
}

/* ---- .side-contents追加定義 バナーエリア ---- */
main #lab div.container div.container-inner section.side-contents div.category-downloadItems ul.downloadItems li.downloadItem.banner-wrapper img {
  width: 100%;
}

/* ---- 資料ダウンロードフォーム関連 ---- */
main #lab div.container div.container-inner section.side-contents div.download-form {
  margin-bottom: 100px;
}

main #lab div.container div.container-inner section.side-contents div.download-form div.title {
  margin: 30px 0 20px;
  width: 300px;
  border-bottom: solid 1px #000;
}

main #lab div.container div.container-inner section.side-contents div.download-form div.title div {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}

main #lab div.container div.container-inner section.side-contents div.download-form .satori-form-wrapper {
  border: 1px solid var(--color-light-gray);
  border-radius: 5px;
}

main #lab div.container div.container-inner section.side-contents div.download-form .satori-form-wrapper > h2 {
    font-size: 18px;
    text-align: center;
    color: var(--color-sea-green);
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 500px) {
  main #lab div.container div.container-inner section.side-contents div.download-form {
    margin-bottom: 0;
  }

  main #lab div.container div.container-inner section.side-contents div.download-form div.title {
  }
}

/* ---- ページ最上部・コンテンツ部のバナー ---- */
.index #lab > .banner-wrapper,
div.container > .banner-wrapper {
  width: 1500px;
  max-width: calc(90% - 20px);
  margin: 25px auto;
}

div.container-inner div.article-contents > .banner-wrapper {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.index #lab > .banner-wrapper:empty,
div.container > .banner-wrapper:empty,
div.container-inner div.article-contents > .banner-wrapper:empty {
  display: none;
}

.index #lab > .banner-wrapper > a,
div.container > .banner-wrapper > a,
div.container-inner div.article-contents > .banner-wrapper > a {
  display: block;
  width: 100%;
}

.index #lab > .banner-wrapper img,
div.container > .banner-wrapper img,
div.article-contents > .banner-wrapper img {
  width: 100%;
}

.index #lab > .banner-wrapper .banner-pc,
div.container > .banner-wrapper .banner-pc,
div.article-contents > .banner-wrapper .banner-pc {
  display: block;
}

.index #lab > .banner-wrapper .banner-tb,
div.container > .banner-wrapper .banner-tb,
div.article-contents > .banner-wrapper .banner-tb {
  display: none;
}

.index #lab > .banner-wrapper .banner-sp,
div.container > .banner-wrapper .banner-sp,
div.article-contents > .banner-wrapper .banner-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .index #lab > .banner-wrapper .banner-pc,
  div.container > .banner-wrapper .banner-pc,
  div.article-contents > .banner-wrapper .banner-pc {
    display: none;
  }

  .index #lab > .banner-wrapper .banner-tb,
  div.container > .banner-wrapper .banner-tb,
  div.article-contents > .banner-wrapper .banner-tb {
    display: block;
  }

  .index #lab > .banner-wrapper .banner-sp,
  div.container > .banner-wrapper .banner-sp,
  div.article-contents > .banner-wrapper .banner-sp {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .index #lab > .banner-wrapper .banner-pc,
  div.container > .banner-wrapper .banner-pc,
  div.article-contents > .banner-wrapper .banner-pc {
    display: none;
  }

  .index #lab > .banner-wrapper .banner-tb,
  div.container > .banner-wrapper .banner-tb,
  div.article-contents > .banner-wrapper .banner-tb {
    display: none;
  }

  .index #lab > .banner-wrapper .banner-sp,
  div.container > .banner-wrapper .banner-sp,
  div.article-contents > .banner-wrapper .banner-sp {
    display: block;
  }
}


/* ---- ホワイトペーパーのスライドショー ---- */
/* 全画面モードボタン */
.fullscreen-button {
  position: relative;
  width: 0;
  height: 0;
  margin-left: auto;
  --fsbtn-border: 2px solid #fff;
  --fsbtn-anim-fs-plus: 30%;
  --fsbtn-anim-fs-minus: -30%;
  --fsbtn-anim-nm-plus: 15%;
  --fsbtn-anim-nm-minus: -15%;
  --fsbtn-anim-nm-plus-2: 10%;
  --fsbtn-anim-nm-minus-2: -10%;
}

.fullscreen-button > div {
  position: absolute;
  z-index: 1999;
  bottom: -34px;
  right: 10px;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 1px rgb(0 0 0 / 0.5));
}

.fullscreen-button > div::before,
.fullscreen-button > div::after,
.fullscreen-button > div > div::before,
.fullscreen-button > div > div::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2000;
  width: 30%;
  height: 30%;
  transition: transform 0.2s ease;
}

.fullscreen-button > div::before {
  top: 0;
  left: 0;
  border-top: var(--fsbtn-border);
  border-left: var(--fsbtn-border);
}

.fullscreen-button > div::after {
  bottom: 0;
  right: 0;
  border-bottom: var(--fsbtn-border);
  border-right: var(--fsbtn-border);
}

.fullscreen-button > div > div {
  width: 100%;
  height: 100%;
}

.fullscreen-button > div > div::before {
  top: 0;
  right: 0;
  border-top: var(--fsbtn-border);
  border-right: var(--fsbtn-border);
}

.fullscreen-button > div > div::after {
  bottom: 0;
  left: 0;
  border-bottom: var(--fsbtn-border);
  border-left: var(--fsbtn-border);
}

.fullscreen-button:hover > div::before {
  transform: translate(var(--fsbtn-anim-fs-minus), var(--fsbtn-anim-fs-minus));
}
.fullscreen-button:hover > div::after {
  transform: translate(var(--fsbtn-anim-fs-plus), var(--fsbtn-anim-fs-plus));
}
.fullscreen-button:hover > div > div::before {
  transform: translate(var(--fsbtn-anim-fs-plus), var(--fsbtn-anim-fs-minus));
}
.fullscreen-button:hover > div > div::after {
  transform: translate(var(--fsbtn-anim-fs-minus), var(--fsbtn-anim-fs-plus));
}

/* 全画面モード解除ボタン */
.fullscreen .fullscreen-button > div::before,
.fullscreen .fullscreen-button > div::after,
.fullscreen .fullscreen-button > div > div::before,
.fullscreen .fullscreen-button > div > div::after {
  width: 25%;
  height: 25%;
}

.fullscreen .fullscreen-button > div::before {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform: translate(var(--fsbtn-anim-nm-plus), var(--fsbtn-anim-nm-plus));
}

.fullscreen .fullscreen-button > div::after {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  transform: translate(var(--fsbtn-anim-nm-minus), var(--fsbtn-anim-nm-minus));
}

.fullscreen .fullscreen-button > div > div::before {
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  transform: translate(var(--fsbtn-anim-nm-minus), var(--fsbtn-anim-nm-plus));
}

.fullscreen .fullscreen-button > div > div::after {
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  transform: translate(var(--fsbtn-anim-nm-plus), var(--fsbtn-anim-nm-minus));
}

.fullscreen .fullscreen-button:hover > div::before {
  transform: translate(var(--fsbtn-anim-nm-minus-2), var(--fsbtn-anim-nm-minus-2));
}
.fullscreen .fullscreen-button:hover > div::after {
  transform: translate(var(--fsbtn-anim-nm-plus-2), var(--fsbtn-anim-nm-plus-2));
}
.fullscreen .fullscreen-button:hover > div > div::before {
  transform: translate(var(--fsbtn-anim-nm-plus-2), var(--fsbtn-anim-nm-minus-2));
}
.fullscreen .fullscreen-button:hover > div > div::after {
  transform: translate(var(--fsbtn-anim-nm-minus-2), var(--fsbtn-anim-nm-plus-2));
}

/* slick.js関連（2025/07/24改修対応） */
.whitepaper-slider-wrapper .whitepaper-slider-wrapper-inner {
  width: 100%;
}

.whitepaper-slider-wrapper .whitepaper-slider {
  width: 100%;
}

.whitepaper-slider-wrapper .whitepaper-slider img {
  width: 100%;
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots {
  display: flex;
  justify-content: center;
  padding-inline-start: 0;
  margin-block: 0;
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots li {
  position: relative;
  flex-basis: 100px;
  min-height: 30px;
  max-height: 100px;
  border: 1px solid var(--color-gray);
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots li.slick-active {
  border: 2px solid var(--color-sea-green);
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots li ~ li {
  margin-left: 2px;
}

/* スライドが20枚以上の場合 */
.whitepaper-slider-wrapper:not(.fullscreen) .whitepaper-slider .slick-dots.longer {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  column-gap: 2px;
  row-gap: 10px;
}

.whitepaper-slider-wrapper:not(.fullscreen) .whitepaper-slider .slick-dots.longer li {
  margin-left: 0;
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots li button {
  outline: none;
  appearance: none;
  user-select: none;
  color: transparent;
  font-size: 0;
  border: none;
  cursor: pointer;
  padding-block: 0;
  padding-inline: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots li.slick-active button {
  border: 1px solid var(--color-gray);
}

.whitepaper-slider-wrapper .whitepaper-slider .slick-dots li button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whitepaper-slider-wrapper .whitepaper-slider .prev,
.whitepaper-slider-wrapper .whitepaper-slider .next {
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  border: none;
  position: absolute;
  z-index: 99;
  top: calc(50% - 5px);
  width: 4%;
  min-width: 35px;
  max-width: 60px;
  height: calc(100% - 10px);
  background-color: transparent;
  /*
  background-color: rgb(var(--color-sea-green-dec) / 0);
  transition: background-color 0.2s ease;
  */
}
.whitepaper-slider-wrapper .whitepaper-slider .prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.whitepaper-slider-wrapper .whitepaper-slider .next {
  right: 0;
  transform: translate(50%, -50%);
}

.whitepaper-slider-wrapper .whitepaper-slider .prev img {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 50%;
  left: 50%;
  transition: opacity 0.2s ease;
  transform: translate(-50%, -50%);
}
.whitepaper-slider-wrapper .whitepaper-slider .next img {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 50%;
  right: 50%;
  transition: opacity 0.2s ease;
  transform: translate(50%, -50%);
}

/*
.whitepaper-slider-wrapper .whitepaper-slider .prev:hover,
.whitepaper-slider-wrapper .whitepaper-slider .next:hover {
  background-color: rgb(var(--color-sea-green-dec) / 0.1);
}
*/

.whitepaper-slider-wrapper .whitepaper-slider .prev:hover img,
.whitepaper-slider-wrapper .whitepaper-slider .next:hover img {
  opacity: 0.6;
}


/* ---- セミナーの動画 ---- */
.seminar-video {
  width: 100%;
}

.seminar-video video {
  width: 100%;
}

/* ---- メディアごとのタイトル ---- */
html.index .medium-title {
  position: relative;
  margin: 25px 0 0;
}

html.index .medium-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
}


html.index .medium-title h1 {
  position: relative;
  /*
  z-index: 1;
  margin-block: 0;
  */
  width: 1600px;
  max-width: calc(90% - 20px);
  margin: 0 auto;
  /*
  padding-block-end: 10px;
  background-color: #fff; 
  */
  padding: 12px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.25em;
  overflow: hidden;
}

@media only screen and (max-width: 500px) {
  html.index .medium-title h1 {
    letter-spacing: 0;
  }
}

html.index .medium-title h1::before,
html.index .medium-title h1::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
}

html.index .medium-title h1::before {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

html.index .medium-title h1::after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%) rotate(45deg);
}


html.index.med-article .medium-title h1 {
  color: var(--color-medium-article-dark);
  border: 1px solid rgb(var(--color-medium-article-dec) / 0.2);
}
html.index.med-article .medium-title h1::before,
html.index.med-article .medium-title h1::after {
  background-image: linear-gradient(0deg, rgb(var(--color-medium-article-dec) / 0.4), rgb(var(--color-medium-article-dec) / 0.2));
}
html.index.med-whitepaper .medium-title h1 {
  color: var(--color-medium-whitepaper-dark);
  border: 1px solid rgb(var(--color-medium-whitepaper-dec) / 0.2);
}
html.index.med-whitepaper .medium-title h1::before,
html.index.med-whitepaper .medium-title h1::after {
  background-image: linear-gradient(0deg, rgb(var(--color-medium-whitepaper-dec) / 0.4), rgb(var(--color-medium-whitepaper-dec) / 0.2));
}
html.index.med-seminar .medium-title h1 {
  color: var(--color-medium-seminar-dark);
  border: 1px solid rgb(var(--color-medium-seminar-dec) / 0.2);
}
html.index.med-seminar .medium-title h1::before,
html.index.med-seminar .medium-title h1::after {
  background-image: linear-gradient(0deg, rgb(var(--color-medium-seminar-dec) / 0.4), rgb(var(--color-medium-seminar-dec) / 0.2));
}

/* ---- ダミーエリア ---- */
.dummy {
  width: 100%;
  height: 100dvh;
  max-height: 300px;
  background-color: #ddd;
  display: grid;
  place-content: center;
  font-size: 16px;
  font-weight: 500px;
  text-align: center;
  color: #aaa;
}

/*=====================================/追記_20250707=======================================*/


/*# sourceMappingURL=style.css.map */