@charset "utf-8";

/* base
----------------------------------*/
html {
  font-size: 62.5%; /* root: 10px */
  height: 100%;
}
body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: #666666;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings : "palt";
}
/* Safariのみ仮名文字のみをカーニングする指定 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, body {
    font-feature-settings: "pkna";
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}
/* IEだけインラインSVGの表示サイズがおかしくなるバグへの対処方法 */
img[src$=".svg"] {
  width: 100%; /* lte IE10 */
}
a {
  text-decoration: none;
  color: inherit;
  outline: none; /* lte IE8 */
}
.ua-desktop a:hover {
  text-decoration: none;
}
.ua-desktop a.hv-udl:hover {
  text-decoration: underline;
  padding-bottom: 1px; /* font-size:11px以下のバグ対策; */
}
a img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ua-desktop a:hover img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=70); /* lte IE8 */
  opacity: 0.7;
}
.ua-desktop a:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=70); /* lte IE8 */
  opacity: 0.7;
}
.ua-desktop a.hv-op-no:hover {
  filter: alpha(opacity=100); /* lte IE8 */
  opacity: 1;
}

/*** keyframes fadein ***/
@-webkit-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-ms-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/*** keyframes slideIn ***/
@-webkit-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-ms-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

/*** keyframes spin ***/
@-webkit-keyframes spin {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
  0% {-moz-transform: rotate(0deg);}
  100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
  0% {-ms-transform: rotate(0deg);}
  100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
  0% {-o-transform: rotate(0deg);}
  100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

/*** font ***/
.font-wgt-01 {
  font-weight: 600;
}
.font-nrw-01 {
  letter-spacing: -1px;
}
.font-small-01 {
  font-size: 80%;
}
.font-fmy-01 {
  font-family: 'Ubuntu Condensed', sans-serif;
}
.font-fmy-02 {
  font-family: 'Titillium Web', sans-serif;
}
.font-fmy-03 {
  font-family: 'Roboto', sans-serif;
}
.font-fmy-04 {
  font-family: 'Lato', sans-serif;;
}
.txt-white {
    color: #FFF;
}
.txt-black {
    color: #333;
} 
.txt-red {
    color: #D9492B;
}
.txt-bold {
    font-weight: 600;
}

/*** other ***/
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.wrd-bkal {
  word-break: break-all;
}
.cautions {
    font-size: 85%;
    opacity: .6;
    margin-top: 10px;
}
ul.attention li {
    font-size: 85%;
    opacity: .6;
    margin-left: 2em;
    text-indent: -2em;
}
sup {
  vertical-align: super;
  font-size: 62%;
}
.sup {
    position: relative;
    top: -0.01em;
    left: auto;
    font-size: 65%;
    vertical-align: top;
    margin-left: 5px;
}
.sup.sup-normal {
    margin-left: 0;
}
.txt-indent1 {
  text-indent: -1em;
  margin-left: 1em;
}

.ua-desktop .link-color:hover {
  color: #D9492B;
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.ua-desktop .cmn-btn-02 .link-color:hover .icon {
  background-color: #D9492B;
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.ua-desktop .link-color.trans:hover,
.ua-desktop .cmn-btn-02 .link-color.trans:hover .icon {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mouse-enter {
  display: none;
}
.ua-desktop .link-color:hover .mouse-enter {
  display: block;
  filter: alpha(opacity=100);
  opacity: 1;
}
.ua-desktop .link-color:hover .mouse-leave {
  display: none;
}
.flexed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;    
}
.flexed-jc-center {
    justify-content: center;
}
.flexed-ai-center {
    align-items: center;
}
.reverse {
    -webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
}
.mt40 { margin-top: 40px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb120 { margin-bottom: 120px !important; }
.mb150 { margin-bottom: 150px !important; }


/* switching PC/SP
----------------------------------*/
@media only screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}


/* basic
----------------------------------*/
.outer {
  width: 100%;
  min-width: 980px;
  margin: 0 auto;
  position: relative;
}
.section {
  padding-top: 100px;
  margin-top: -100px;
}
.inner-01 {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.inner-02 {
  max-width: 900px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}
.inner-03 {
  max-width: 960px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.section.inner-01,
.section.inner-02,
.section.inner-03 {
    margin: -100px auto 0;
    padding-top: 100px;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  margin: 0 auto;
  line-height: 1;
}
.icon-external_link {
  width: 0.9em;
  vertical-align: top;
  margin-left: 0.25em;
  position: relative;
  top: 4px;
}

/* リストブロック汎用
----------------------------------*/
article.post ul:not(.etab-title-tabs):not(.ex-link) {
  margin-bottom: 1em;
}
article.post ul:not(.etab-title-tabs):not(.ex-link) li {
  position: relative;
  padding-left: calc(1.5em + 6px);
  margin-bottom: 0.5em;
}
article.post ul:not(.etab-title-tabs):not(.ex-link) li:before {
  background: #777777;
  border-radius: 3px;
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  position: absolute;
  top: calc(0.5em + 3px);
  left: calc(0.5em - 3px);
  transform: translateX(50%);
}

article.post ol {
  position: relative;
  margin-bottom: 1em;
  list-style: none;
  counter-reset: li;
}
article.post ol li {
  position: relative;
  padding-left: calc(1.5em + 6px);
  margin-bottom: 0.5em;
}
article.post ol li:before {
  color: #777777;
  counter-increment: li;
  content: counter(li) "";
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(50%);
}


/* unique
----------------------------------*/
/*** header-group ***/
.header-group {
  position: relative;
  background: #fff;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.header-group.hg-fixed {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,1.0);
  -webkit-animation: slideIn 0.5s linear 0s 1;
  -moz-animation: slideIn 0.5s linear 0s 1;
  -ms-animation: slideIn 0.5s linear 0s 1;
  -o-animation: slideIn 0.5s linear 0s 1;
  animation: slideIn 0.5s linear 0s 1;
}
.header-nav {
  color: #666;
}
.header-nav-01 {
  font-size: 12px;
  font-size: 1.2rem;
  display: table;
  width: 100%;
  max-width: 1220px;
  box-sizing: border-box;
}
.hn1-wrap-01,
.hn1-wrap-02,
.hn1-wrap-03 {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.hn1-wrap-01 {
  text-align: left;
  padding-left: 1%;
  padding-top: 10px;
}
.hn1-wrap-02 {
  padding-right: 20px;
}
.hn1-wrap-03 {
  vertical-align: top;
  width: 190px;
}
.header-logo {
  display: inline-block;
  vertical-align: top;
  width: 178px;
}
.hn-ttl {
  display: inline-block;
  vertical-align: top;
  color: #444444;
  line-height: 1.5;
  margin-left: 4.5%; /* 25px */
}
.hn1-menu {
  margin-top: 13px;
}
.hn1-menu li {
  display: inline-block;
  vertical-align: top;
  margin-left: 6%; /* 30px */
}
.hn1-menu li:first-child {
  margin-left: 0;
}
.hn1-menu li a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.hn1-menu li > a > .fas {
  margin-left: 0.25em;
}
.hn1-menu li .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #D9492B;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  margin-right: 0.3em;
}
.hn1-menu li .icon:before {
  content: " ";
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  width: 3px;
  height: 3px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-right: 8px;
  transform: rotate(45deg);
}
.hn1-tel {
  font-size: 28px;
  font-size: 2.8rem;
}
.hn1-tel .icon-phone {
  display: inline-block;
  width: 0.6em;
  position: relative;
  top: 2px;
  margin-right: 6px;
}
.hn1-tel a {
    color: #333;
}
.hn1-lgnctt {
  font-size: 0;
    padding-top: 4px;
}
.hn1-lgnctt li {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  font-size: 1.4rem;
  width: calc(50% - 4px); /* 90px */
  height: 77px;
  box-sizing: border-box;
    margin-left: 4px;
}
.hn1-lgnctt li > a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 13px 0 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.hn1-lgnctt li > a > .txt {
  position: absolute;
  bottom: 11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 1;
}
.hn1-lgnctt li.fastscore > a {
  background: #a0c0db;
}
.hn1-lgnctt li.login > a {
  background: #003055;
}
.hn1-lgnctt li.contact > a {
  background: #D9492B;
}
.hn1-lgnctt li.fastscore .icon-fastscore, .hn1-lgnctt li.login .icon-login, .hn1-lgnctt li.contact .icon-contact {
  width: 30px;
}
.ua-desktop .hn1-lgnctt li > a:hover {
  opacity: 1;
}

.header-nav-02 {
}
.hn-golbalmenu {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: rgb(236,151,46);
  background: -webkit-linear-gradient(left, rgba(236,151,46,1) 0%, rgba(217,73,43,1) 100%);
  background: -o-linear-gradient(left, rgba(236,151,46,1) 0%, rgba(217,73,43,1) 100%);
  background: linear-gradient(to right, rgba(236,151,46,1) 0%, rgba(217,73,43,1) 100%);
}
.hn-golbalmenu > li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
}
.hn-golbalmenu > li > a {
  display: block;
  box-sizing: border-box;
  padding: 21px 10px;
    color: #FFF;
}
.hn-golbalmenu > li > a:before {
  content: " ";
  width: 100%;
  height: 3px;
  background: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hn-golbalmenu > li.current > a:before {
  background: #003055;
}
.ua-desktop .hn-golbalmenu > li > a:hover,
.ua-desktop .hn-golbalmenu > li:hover,
.ua-desktop .hn-golbalmenu > li.ms-on {
  background: rgba(188, 59, 38, .3);
  opacity: 1;
}
.ua-desktop .hn-golbalmenu > li.ms-off {
  background: transparent !important;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.ua-desktop .hn-golbalmenu > .hngm-home:hover {
  background: none;
}

.hn-golbalmenu .menu-sub {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  text-align: left;
  display: none; /* JSで制御 */
}
.hn-golbalmenu .menu-sub-01 {
  width: 310px;
}
.hn-golbalmenu .menu-sub-02 {
  width: 300px;
}
.hn-golbalmenu .menu-sub-03 {
  width: 250px;
}
.hn-golbalmenu .menu-sub-03-2 {
  width: 250px;
}
.hn-golbalmenu .menu-sub-04 {
  width: 230px;
}
.hn-golbalmenu .menu-sub-right {
    right: 0;
    left: auto;
    width: 280px;
}
.hn-golbalmenu .menu-sub > li > a {
  display: block;
  background: #D9492B;
  box-sizing: border-box;
  padding: 10px 30px;
  color: #fff;
}
.ua-desktop .hn-golbalmenu .menu-sub > li > a:hover {
  background: #EC972E;
  opacity: 1;
}


.main-group {
    margin-bottom: 165px;
}


/*** footer-group ***/
.footer-group {
}
.footer-inner {
  background: #F8F8F9;
  color: #000;
  box-sizing: border-box;
  padding: 50px;
}
.footer-nav {
  font-size: 0;
}
.fn-wrap-01 {
  display: inline-block;
  vertical-align: top;
  width: 55%;
  font-size: 0;
  box-sizing: border-box;
}
.fn-golbalmenu {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  font-size: 1.3rem;
  width: 33.33%;
  margin-top: 3.2em;
}
.fn-golbalmenu-01 {
  margin-top: 0;
}
.fn-golbalmenu-02,
.fn-golbalmenu-03 {
  color: #949ea6;
}
.fn-golbalmenu-03 .fg3-02 {
  margin-top: 3.15em;
}
.fn-golbalmenu-02 > ul > li:first-child {
  color: #ffffff;
}
.fn-golbalmenu > ul > li,
.fn-golbalmenu > .fg3-02 > li:first-child {
  margin-top: 0.7em;
}
.fn-golbalmenu > ul > li:first-child {
  margin-top: 0;
}
.fn-golbalmenu-01 > ul > li:first-child {
  margin-bottom: 1.4em;
}
.fn-golbalmenu > ul > li > a > .fas {
  margin-left: 0.25em;
}
.fn-wrap-02 {
  display: inline-block;
  vertical-align: bottom;
  width: 45%;
  text-align: right;
  font-size: 13px;
  font-size: 1.3rem;
  box-sizing: border-box;
}
.logo-integral {
  width: 213px;
  display: inline-block;
  vertical-align: top;
}
.fn2-contact {
  margin-top: 30px;
}
.fn2-contact li {
  display: inline-block;
  vertical-align: top;
  margin-left: 1em;
}
.fn2-contact li.address {
  width: 100%;
  margin-left: 0;
}
.footer-credit {
  text-align: center;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-top: 2px solid rgba(255,255,255,0.2);
  padding-top: 40px;
  margin-top: 50px;
}
.fc-copyright {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 0.25em;
}
.fc-caution {
  font-size: 10px;
  font-size: 1.0rem;
  color: #888888;
}


/*** top-visual ***/

.top-visual {
    position: relative;
  width: 100%;
  height: 400px;
    background: #F8F8F8;
    margin-bottom: 150px;
}
.tp-ttl-set {
    position: absolute;
    width: calc(100% - 180px);
    height: auto;
    top: 50%;
    left: 180px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}
.tp-ttl-set.short {
    width: 38.5%;
    left: 120px;
}
.tp-ttl-set.short02 {
    width: 42.5%;
    left: 120px;
}
.tp-ttl-set.long01 {
    width: calc(100% - 120px);
    left: 120px;
}

.tp-ttl-set.setbgvis {
    width: calc(100% - 120px);
    left: 120px;
}
.tp-ttl-set.setbgvis.sht {
    width: 38.5%;
}
.tp-ttl-01 {
    width: 100%;
  font-size: 36px;
  font-size: 3.6rem;
  color: #333333;
  font-weight: 600;
  line-height: 1.4;
    margin-bottom: 10px;
}
.tp-ttl-01 .small {
  font-size: 26px;
  font-size: 2.6rem;
}
.setbgvis .tp-ttl-01,
.setbgvis .tp-ttl-02 {
    color: #FFF;
}
.tp-ttl-02 {
    width: 100%;
  color: #666666;
  font-weight: 500;
  line-height: 1.8;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.tp-ttl-02.shortmes {
    width: 52.5%;
}
.tp-ttl-02.moreshortmes {
    width: 46%;
}
.tp-ttl-02 .attn {
  font-size: 14px;
  font-size: 1.4rem;
}
.top-visual-img {
    position: absolute;
    right: 100px;
}
#productslist.top-visual-img {
    top: 0;
    right: 60px;
}
#fs530.top-visual-img {
    top: 38px;
}
#fs430.top-visual-img,
#fastscore.top-visual-img,
#top-visual-score.top-visual-img,
#download-product-document.top-visual-img
{
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#fs630.top-visual-img {
    top: 0;
    right: 100px;
}
#probes.top-visual-img {
    top: 20px;
    right: 50px;
}
#fastscore.top-visual-img,
#top-visual-score.top-visual-img
{
    right: 0;
}
#logiq-p10.top-visual-img {
    top: 70px;
    right: 130px;
}
#kly.top-visual-img {
    top: 20px;
    right: 60px;
}
#teqsTop.top-visual-img,
.top-visual-img.setbgvis {
    top: 0;
    right: 0;
}
#smarttoolsTop.top-visual-img,
.top-visual-img.setbgvis {
    top: 0;
    right: 0;
}
.top-visual-img.setbgvis {
    height: 100%;
    overflow: hidden;
}
img.objectfit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;'        
}


/* breadcrumb */
.breadcrumb {
    font-size: 14px;
    font-size: 1.4rem;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.bcb-list {
  margin-top: 3px;
  line-height: 1.2;
}
.bcb-list li {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666666;
  display: inline;
  vertical-align: top;
  word-break: break-all;
}
.bcb-list li:before {
  content: ">";
  display: inline;
  vertical-align: top;
  position: relative;
  top: -1px;
  margin: 0px 10px 0 5px;
}
.bcb-list li:first-child:before {
  display: none;
}
.bcb-list li a {
  color: #003055;
  display: inline;
  vertical-align: top;
}

/* pagenavi */
.pagenavi {
  text-align: center;
  margin: 10px auto 40px auto;
}
.pgn-list {
  font-size: 15px;
  font-size: 1.5rem;
  color: #003055;
  display: inline-block;
  vertical-align: top;
}
.pgn-list li {
  display: inline-block;
  vertical-align: top;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  border: 1px solid #ebecec;
  overflow: hidden;
  margin: 13px;
}
.pgn-list li,
.pgn-list li a {
  background: #ebecec;
}
.pgn-list li a {
  display: block;
}
.pgn-list .current,
.pgn-list .current a,
.ua-desktop .pgn-list li:hover,
.ua-desktop .pgn-list li:hover a,
.ua-desktop .pgn-list li a:hover {
  color: #bababa;
  background: #ffffff;
  font-weight: 600;
}

/*** filter ***/
.fltahv {
  padding: 17px 50px;
  box-sizing: border-box;
  border: 1px solid #DDD;
  background: #F8F8F8;
  margin-bottom: 35px;
}
.fltahv-cont {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
}
.filter {
  float: left;
}
.filter dt,
.filter dd {
  display: inline-block;
  vertical-align: middle;
}
.filter-list {
}
.filter-list li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 1.5em;
}
.filter-list a {
  color: #003055;
  text-decoration: underline;
}
.filter-list .current,
.filter-list .current a {
  color: #333333;
  font-weight: bold;
}
.filter-list .current a {
  text-decoration: none;
  pointer-events: none;
  cursor: pointer;
}
/*** archive in filter ***/
.archive {
  float: right;
}
.archive dt,
.archive dd {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.select-appearance {
  width: 140px;
  height: 34px;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #b7bcbc;
  box-sizing: border-box;
  border-radius: 5px;
}
.select-appearance:after {
  content: " ";
  position: absolute;
  z-index: 2;
  background-image: url(../img/common/icon-select-arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 7px;
  height: 17px;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 12px;
}
.archive-list {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  padding-left: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.archive-list::-ms-expand {
  display: none; /* IE10・IE11のハック */
}

/* 会員限定 */
.section-mboly {
  border: 1px solid #D9492B;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
  margin-bottom: 110px;
}
.mboly-tag {
  background: #D9492B;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  box-sizing: border-box;
  padding: 6px 24px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}
.mboly-txt {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2em;
}

/* cmn-ttl */
.underlogo {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #D9492B;
    text-align: center;
    padding: 0 20px;
}
.cmn-ttl-set {
  text-align: center;
  margin-bottom: 30px;
}
.cmn-ttl-01 {
  font-size: 36px;
  font-size: 3.6rem;
  color: #333333;
  font-weight: 600;
  line-height: 1.5;
}
.cmn-ttl-01 .small {
  font-size: 26px;
  font-size: 2.6rem;
}
.cmn-ttl-02 {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666666;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-bottom: 2em
}
.cmn-ttl-02:before {
  content: " ";
  width: 100%;
  height: 3px;
  background: #D9492B;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.cmn-ttl-03 {
  font-size: 28px;
  font-size: 2.8rem;
  color: #333333;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 35px;
}
.cmn-ttl-03:before {
  content: " ";
  width: 50px;
  height: 3px;
  background: #D9492B;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.cmn-ttl-03__icon {
    height: 84px;
    width: auto;
}
.cmn-ttl-03__icon img {
    height: 100%;
    width: auto;
}
.cmn-ttl-03_subs {
    font-size: 16px;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 100px;
    text-align: center;
}
.cmn-ttl-03_subs.align-left  {
    text-align: left;
}

/** cmn-btn **/
/* .cmn-btn-01 */
.cmn-btn-01 {
  /*display: inline-block;*//*202205変更*/
  display: flex;
  margin:0 auto;/*202205変更*/	
  vertical-align: top;
  text-align: left;
  min-width: 190px;/*202205変更*/
  max-width: 230px;	
  min-height: 44px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 30px;
  cursor: pointer;
}

/*202205追加ここから*/
.cmn-btn-01.fastcore_btn {
  display: inline-block;
  margin:0 auto;
  vertical-align: top;
  text-align: left;
  min-width: 400px;
  min-height: 44px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 30px;
  cursor: pointer;
}
/*202205追加ここまで*/

.ua-desktop .cmn-btn-01:hover {
  background: none;
  opacity: 1;
}
.cmn-btn-01:before,
.cmn-btn-01:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}
.cmn-btn-01:before {
  background: #D9492B;
  right: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.cmn-btn-01.bgnvy:before {
  background: #003055;
}
.ua-desktop .cmn-btn-01:hover:before,
.otherproducts__Blk a:hover ~ .cmn-btn-01::before {
  right: -100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.cmn-btn-01:after {
  background: #EC972E;
  left: -100%;
  opacity: 0.5;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.cmn-btn-01.bgnvy:after {
  background: #D9492B;
}
.ua-desktop .cmn-btn-01:hover:after,
.otherproducts__Blk a:hover ~ .cmn-btn-01::after {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.cmn-btn-01 .txt,
.cmn-btn-01 .icon {
  position: relative;
  z-index: 3;
  font-size: 15px;
  font-size: 1.5rem;
}
.cmn-btn-01 .txt {
  top: 2px;
  padding-right: 1em;
}
.cmn-btn-01 .txt.font-fmy-03 {
  font-size: 18px;
  font-size: 1.8rem;
  top: 0;
}
.cmn-btn-01 .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 15px;
}
.cmn-btn-01 .icon:before,
.cmn-btn-01 .icon:after {
  content: " ";
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cmn-btn-01 .icon:before {
  border-right: 0;
  margin-left: 0;
  width: 13px;
  height: 1px;
}
.cmn-btn-01 .icon:after {
  transform: rotate(45deg);
  margin-right: 2px;
}
/* .cmn-btn-02 */
.cmn-btn-02 {
  position: relative;
  color: #666;
  font-size: 15px;
  font-size: 1.5rem;
}
.cmn-btn-02 .icon {
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  background: #D9492B;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  top: 4px;
  margin-left: 0.6em;
}
.cmn-btn-02 .icon.white {
    background: #FFF;
}
.cmn-btn-02 .icon:before {
  content: " ";
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-right: 8px;
  transform: rotate(45deg);
}
.cmn-btn-02 .icon.white::before {
  border: 1px solid #D9492B;
  border-bottom: 0;
  border-left: 0;
}
/* .cmn-btn-03 */
.cmn-btn-03 {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  min-width: 230px;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 30px;
  cursor: pointer;
}
.ua-desktop .cmn-btn-03:hover {
  text-decoration: none;
  opacity: 1;
}
/* .cmn-btn-04 */
.cmn-btn-04 {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  min-width: 230px;
  min-height: 44px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 30px;
  cursor: pointer;
}
.ua-desktop .cmn-btn-04:hover {
  background: none;
  opacity: 1;
}
.cmn-btn-04:before,
.cmn-btn-04:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}
.cmn-btn-04:before {
  background: #D9492B;
  right: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ua-desktop .cmn-btn-04:hover:before {
  right: -100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.cmn-btn-04:after {
  background: #003055;
  left: -100%;
  opacity: 0.5;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.ua-desktop .cmn-btn-04:hover:after {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.cmn-btn-04 .txt,
.cmn-btn-04 .icon {
  position: relative;
  z-index: 3;
  font-size: 15px;
  font-size: 1.5rem;
}
.cmn-btn-04 .txt {
  top: 2px;
  padding-right: 1em;
}
.cmn-btn-04 .txt.font-fmy-03 {
  font-size: 18px;
  font-size: 1.8rem;
  top: 0;
}
.cmn-btn-04 .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 15px;
}
.cmn-btn-04 .icon:before,
.cmn-btn-04 .icon:after {
  content: " ";
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cmn-btn-04 .icon:before {
  border-right: 0;
  margin-left: 0;
  width: 13px;
  height: 1px;
}
.cmn-btn-04 .icon:after {
  transform: rotate(45deg);
  margin-right: 2px;
}

/* cmn-grid */
.cmn-grid-wrap {
  overflow: hidden;
}
.cmn-grid-01 {
  width: 103%;
  box-sizing: border-box;
  font-size: 0;
}
.cmn-grid-01 li {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-size: 1.6rem;
  width: 30.333%;
  margin: 15px 3% 15px 0;
  text-align: center;
  box-sizing: border-box;
}
.cmn-grid-01 li > a {
  display: block;
}
.ua-desktop .cmn-grid-01 li > a:hover {
  opacity: 1;
}

.list-pdc-img + .cmn-btn-01 {
  margin-top: 25px;
}
.list-pdc-img + .cmn-btn-01 .txt {
  font-weight: 300;
}
.list-pdc .cmn-btn-02 {
  text-align: center;
  margin: 25px 0;
}

.list-nws-txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  word-break: break-all;
  text-align: justify;
  text-justify: distribute;
  margin-top: 1em;
}
.list-nws-txt .date {
  color: #BBB;
  font-weight: 600;
}
.list-nws-txt .text {
  color: #666666;
}
.ua-desktop .cmn-grid-01 li > a:hover .list-nws-txt {
  opacity: 0.7;
}
.list-nws-more {
  text-align: center;
  margin: 30px 0;
}


.section-01 {
  margin-bottom: 150px;
}

.hg-fixed .hn-golbalmenu .hngm-fastscore,
.hg-fixed .hn-golbalmenu .hngm-login,
.hg-fixed .hn-golbalmenu .hngm-contact {
  width: 90px;
}
.hg-fixed .hn-golbalmenu .hngm-fastscore a,
.hg-fixed .hn-golbalmenu .hngm-login a,
.hg-fixed .hn-golbalmenu .hngm-contact a {
  height: 70px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  padding: 0;
  position: relative;
}
.hg-fixed .hn-golbalmenu .hngm-fastscore a,
.ua-desktop .hg-fixed .hn-golbalmenu .hngm-fastscore > a:hover,
.hg-fixed .hn-golbalmenu .hngm-fastscore,
.hg-fixed .hn-golbalmenu .hngm-fastscore:hover {
  background: #a0c0db;
}
.hg-fixed .hn-golbalmenu .hngm-login a,
.ua-desktop .hg-fixed .hn-golbalmenu .hngm-login > a:hover,
.hg-fixed .hn-golbalmenu .hngm-login,
.hg-fixed .hn-golbalmenu .hngm-login:hover {
  background: #003055;
}
.hg-fixed .hn-golbalmenu .hngm-contact a,
.ua-desktop .hg-fixed .hn-golbalmenu .hngm-contact > a:hover,
.hg-fixed .hn-golbalmenu .hngm-contact,
.hg-fixed .hn-golbalmenu .hngm-contact:hover {
  background: #D9492B;
}
.hg-fixed .hn-golbalmenu .hngm-fastscore a:before,
.hg-fixed .hn-golbalmenu .hngm-login a:before,
.hg-fixed .hn-golbalmenu .hngm-contact a:before {
  display: none;
}
.hg-fixed .hn-golbalmenu .hngm-fastscore a .icon-fastscore {
  width: 30px;
  position: relative;
  top: 7px;
}
.hg-fixed .hn-golbalmenu .hngm-login a .icon-login {
  width: 25px;
  position: relative;
  top: 9px;
}
.hg-fixed .hn-golbalmenu .hngm-contact a .icon-contact {
  width: 30px;
  position: relative;
  top: 7px;
}
.hg-fixed .hn-golbalmenu .hngm-fastscore a .txt,
.hg-fixed .hn-golbalmenu .hngm-login a .txt,
.hg-fixed .hn-golbalmenu .hngm-contact a .txt {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 1;
}

.support, .tutorial, .fastscorecalc {
    position: relative;
    background: #000;
    color: #FFF;
    overflow: hidden;
}
.support a , .tutorial a, .fastscorecalc a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.support__txts, .tutorial__txts {
    position: absolute;
    width: calc(100% - 120px);
    top: 50%;
    left: 120px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.fastscorecalc__txts {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;    
}
.tutorial__txts {
    left: 660px;
    right: auto;
    width: calc(100% - 660px);
}
.support__txts h2, .tutorial__txts h2, .fastscorecalc__txts h2 {
    font-size: 28px; 
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 40px;
}
.support-txt, .tutorial-txt, .fastscorecalc-txt {
    margin-bottom: 40px;
}
.tutorial-txt span {
    display: block;
}
.support img, .tutorial img {
    opacity: 0.6;
    transition: 1.5s;
    -webkit-transform: scale(1);
         -ms-transform: scale(1);
             transform: scale(1);
}
.fastscorecalc img {
    transition: 1.5s;
    -webkit-transform: scale(1);
         -ms-transform: scale(1);
             transform: scale(1);
    
}
.top-visual a .txt-white,
.top-visual a .icon.white,
.support a ~ .support__txts .txt-white,
.tutorial a ~ .tutorial__txts .txt-white,
.support a ~ .support__txts .icon.white,
.fastscorecalc a ~ .fastscorecalc__txts .icon.white,
.tutorial a ~ .tutorial__txts .icon.white {
    transition: .5s;
}
.top-visual a:hover .txt-white,
.top-visual a:hover .icon.white,
.support a:hover ~ .support__txts .txt-white,
.fastscorecalc a:hover ~ .fastscorecalc__txts .txt-white,
.tutorial a:hover ~ .tutorial__txts .txt-white {
    color: #D9492B;
}
.top-visual a:hover .icon.white,
.support a:hover ~ .support__txts .icon.white,
.fastscorecalc a:hover ~ .fastscorecalc__txts .icon.white,
.tutorial a:hover ~ .tutorial__txts .icon.white {
    background: #D9492B;
}
.top-visual a:hover .icon.white::before,
.support a:hover ~ .support__txts .icon.white::before,
.fastscorecalc a:hover ~ .fastscorecalc__txts .icon.white::before,
.tutorial a:hover ~ .tutorial__txts .icon.white::before {
  border: 1px solid #FFF;
  border-bottom: 0;
  border-left: 0;
}
.support a:hover ~ img,
.tutorial a:hover ~ img {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
         -ms-transform: scale(1.05);
             transform: scale(1.05);    
}
.fastscorecalc a:hover ~ img {
    -webkit-transform: scale(1.05);
         -ms-transform: scale(1.05);
             transform: scale(1.05);      
}

.aboutFibro li {
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    padding: .9em 1.8em .9em 3.7em;
    margin: 10px 0 0;
    background: #F8F8F8;
}
.aboutFibro li::before {
    position: absolute;
    content: '';
    top: 1.25em;
    left: 1.8em;
    border-radius: 100%;
    display: block;
    height: 1em;
    width: 1em;
    background: #EAAEA4;
}

.aboutFibro li span.nomal {
    position: relative;
    top: auto;
    left: auto;
    color: #666;
    font-weight: normal;
}
.aboutFibro li span.attn {
    position: relative;
    top: auto;
    left: auto;
    color: #666;
    font-weight: normal;
}
.aboutFibro li .attn2 {
    position: relative;
    top: auto;
    left: auto;
    color: #666;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: normal;
}

/* NEWS */
.postlist {
    padding-bottom: 10px;
}
.postlist.inner-03 {
    max-width: initial;
    padding: 40px 40px 0;
}
.postbox {
    background: #F8F8F8;
    margin-bottom: 20px;
}
.postbox a {
    padding: 30px;
    transition: .3s linear;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.postbox__thumb {
    width: 200px;
    margin-right: 40px;
}
.postbox__detail {
    width: calc(100% - 240px);
}
.postbox__detail__date {
    color: #999;
    font-weight: bold;
}


.tableSet {
    border: 1px solid #333;
    border-right: none;
    text-align: center;
    margin: auto;
}
.tableSet dl {
    width: 50%;
    border-right: 1px solid #333;
}
.tableSet dl dt {
    font-weight: bold;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 15px;
    /*background: #F8F8F8;*/
    color: #D9492B;
}
.tableSet dl dt.dt02 {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    color: #333;
}
.tableSet dl dd {
    border-top: 1px solid #333;
    padding: 15px;
}
.tableSet dl dd.fkdt {
    font-weight: bold;
    font-size: 18px;
    font-size: 1.8rem;
    color: #D9492B;
}
.tableSet dl dd span {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.tableSet dl dd span.subdl {
    display: inline-block;
    color: #666;
    font-weight: normal;
    margin-bottom: 0;
    width: 3em;
}

.youtubeBlock {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 */
  text-align: center;
}
.youtubeBlock iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Popupプラグイン Boxzilla*/
.boxzilla {
	padding: 0 !important;
}

.lastcnts {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;   
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}
.lastcnts__Blk {
    position: relative;
    background: #000;
    width: 48%;
    overflow: hidden;
}
.lastcnts__Blk.wmax {
    width: 100%;
}
.lastcnts__Blk a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #FFF;
    z-index: 2;
}
.lastcnts__Blk a p {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    padding-bottom: 40px;
}
.lastcnts__Blk a p::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #FFF;
    border-radius: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s;
}
.lastcnts__Blk a p::after {
    content: '';
    position: absolute;
    border: 1px solid #D9492B;
    border-bottom: 0;
    border-left: 0;
    width: 4px;
    height: 4px;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    transition: .5s;
}
.lastcnts__Blk a:hover p::before {
    background: #D9492B;    
}
.lastcnts__Blk a:hover p::after {
    border: 1px solid #FFF;
    border-bottom: 0;
    border-left: 0;
}
.lastcnts__Blk a span {
    display: block;
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}
.lastcnts__Blk a ~ img {
    opacity: 0.6;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: 2s;
}
.lastcnts__Blk a:hover {
    opacity: 1;
}
.lastcnts__Blk a:hover ~ img {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);   
}

@media only screen and (min-width: 641px) {
  .hg-fixed .header-nav-01 {
    display: none !important;
  }
  .hg-fixed .hn-golbalmenu {
    table-layout: auto;
  }
  .hg-fixed .hn-golbalmenu > li {
    min-width: 1px; /* for Safari-macOS */
  }
  .hg-fixed .hn-golbalmenu .hngm-home {
    width: 248px;
    padding-left: 33px;
    box-sizing: border-box;
  }
  .hg-fixed .hn-golbalmenu .hngm-home > a {
    width: 162px;
    padding: 0;
  }
  .ua-desktop .hg-fixed .hn-golbalmenu .hngm-home > a:hover {
    background: none;
  }
  .hg-fixed .hn-golbalmenu .hngm-home > a:before {
    display: none;
  }
  .hg-fixed .hn-golbalmenu .hngm-home .hngm-home-logo {
    display: inline-block;
    width: 100%;
  }
  .hg-fixed .hn-golbalmenu .hngm-home .hngm-home-txt {
    display: none !important;
  }
  .header-group:not(.hg-fixed) .hn-golbalmenu .hngm-home-logo,
  .header-group:not(.hg-fixed) .hn-golbalmenu .hngm-fastscore,
  .header-group:not(.hg-fixed) .hn-golbalmenu .hngm-login,
  .header-group:not(.hg-fixed) .hn-golbalmenu .hngm-contact {
    display: none !important;
  }
  .header-group:not(.hg-fixed) .hn-golbalmenu {
    /*border-bottom: 1px solid #f7f7f7;*/
  }
}



/* SP
----------------------------------------------------------*/
@media only screen and (max-width: 640px) {

  /****** スマホでメニューを開いた時に後ろはスクロールしないようにするjQueryのための設定 ---START--- ******/
  .js-base-fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .js-base-fixed:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: #666;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    z-index: 999;
  }
  /****** スマホでメニューを開いた時に後ろはスクロールしないようにするjQueryのための設定 ---END--- ******/



  /* ヘッダードロワァー
  ----------------------------------*/
  /*** ヘッダートグル ***/
  .header-drawer {
    cursor: pointer;
    width: auto;
    background: none;
    box-sizing: border-box;
    padding: 0;
  }
  /*** アイコン ***/
  .drawer-icon {
    position: relative;
    margin: 14px auto 0 auto;
    width: 15px;
    height: 10px;
  }
  .drawer-icon-bar {
    display: block;
    background: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
  }
  .drawer-icon-bar:first-child {
    bottom: auto;
  }
  .drawer-icon-bar:nth-child(2) {
  }
  .drawer-icon-bar:last-child {
    top: auto;
  }
  .hg-opened .drawer-icon-bar:first-child {
    -webkit-transform: translateY(0) rotate(45deg);
    -moz-transform: translateY(0) rotate(45deg);
    -o-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    top: 0;
    bottom: 0;
  }
  .hg-opened .drawer-icon-bar:nth-child(2) {
    filter: alpha(opacity=0); /* lte IE8 */
    opacity: 0;
  }
  .hg-opened .drawer-icon-bar:last-child {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    top: 0;
    bottom: 0;
  }
  /* CLOSE時のアイコンを小さくするため */
  .hg-opened .drawer-icon-bar {
    width: 90%;
  }
  /*** アイコンのテキスト ***/
  .drawer-txt {
    font-size: 10px;
    font-size: 1.0rem;
    color: #fff;
    line-height: 1;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
  }
  .drawer-txt:before {
    content: "MENU";
  }
  .hg-opened .drawer-txt:before {
    content: "CLOSE";
    -webkit-animation: fadein 0.8s linear 0s 1;
    -moz-animation: fadein 0.8s linear 0s 1;
    -ms-animation: fadein 0.8s linear 0s 1;
    -o-animation: fadein 0.8s linear 0s 1;
    animation: fadein 0.8s linear 0s 1;
  }

  /*** アコーディオンメニューのアイコン ***/
  .accordion-icon,
  .accordion-icon-bar {
    display: inline-block;
    box-sizing: border-box;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
  }
  .accordion-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 22px;
    border-radius: 100%;
    background: #FFF;
  }
  .accordion-icon-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: 1px;
    background-color: #D9492B;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
  }
  .accordion-icon-bar:nth-of-type(1) {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .accordion-icon-bar:nth-of-type(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  /*** アコーディオンメニューのアイコン（＋/－）切り替え ***/
  .sub-open .accordion-icon-bar:nth-of-type(1),
  .sub-sub-open .accordion-icon-bar:nth-of-type(1) {
    display:none;
  }
  .sub-open .accordion-icon-bar:nth-of-type(2),
  .sub-sub-open .accordion-icon-bar:nth-of-type(2) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }



  /* basic
  ----------------------------------*/
  .outer {
    min-width: 0;
  }
    .section {
      padding-top: 64px;
      margin-top: -64px;
    }
    .inner-02, .inner-03, .cnts {
        padding-right: 20px;
        padding-left: 20px;
        
    }
    .main-member .inner-02 .cnts {
        padding: 0;
    }
    .cnts.fnlc {
        padding: 0;
    }

  /* unique
  ----------------------------------*/
  .header-nav-01 {
    padding: 0;
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    -o-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    -ms-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    box-shadow: 0 2px 5px rgba(0,0,0,0.17);
  }
  .hn1-wrap-01 {
    text-align: left;
    padding-left: 15px;
    padding-top: 5px;
  }
  .header-logo {
    width: 100px;
  }
  .hn1-wrap-03 {
    width: 250px;
  }
    .hn1-lgnctt {
        padding-top: 0;
    }
  .hn1-lgnctt li {
    width: 20%; /* 54px */
    height: 54px;
    font-size: 10px;
    font-size: 1.0rem;
    border-left: 1px solid #ccc;
    margin: 0;
  }
  .hn1-lgnctt li.login .icon-login {
    width: 15px;
    margin-top: 5px;
  }
  .hn1-lgnctt li.login > a {
    background: none;
  }
  .hn1-lgnctt li.phone .icon-phone {
    width: 15px;
    margin-top: 8px;
  }
  .hn1-lgnctt li > a {
    padding: 3px;
  }
  .hn1-lgnctt li > a > .txt {
    bottom: 10px;
  }
  .hn1-lgnctt li.fastscore > a > .txt {
    bottom: 4px;
  }
  .hn1-lgnctt li.contact {
    border: none;
  }
  .hn1-lgnctt li.fastscore .icon-fastscore {
    width: 20px;
    margin-top: 4px;
  }
  .hn1-lgnctt li.contact .icon-contact {
    width: 20px;
    margin-top: 5px;
  }
  .hn1-lgnctt li.login > a > .txt,
  .hn1-lgnctt li.phone > a > .txt {
    color: #003055;
  }
  .hn1-lgnctt li.login.logout > a > .txt {
    color: #ffffff;
  }
  .hn1-lgnctt li.header-drawer {
    background: #003055;
    border: none;
    position: relative;
  }

  .header-nav-02 {
    position: fixed; /* 必須 */
    top: auto;
    width: 100%;
    height: 100%; /* Oldブラウザ ハック */
    height: calc(100% - 54px); /* 必須（ヘッダーの高さ） */
    padding: 0;
    display: none; /* JSで制御 */
    -webkit-animation: fadein 0.5s linear 0s 1;
    -moz-animation: fadein 0.5s linear 0s 1;
    -ms-animation: fadein 0.5s linear 0s 1;
    -o-animation: fadein 0.5s linear 0s 1;
    animation: fadein 0.5s linear 0s 1;
    overflow-y: scroll; /* 必須 */
    -webkit-overflow-scrolling: touch;
  }
  .hg-opened .header-nav-02 {
    display: block; /* JSで制御 */
  }

  .hn-golbalmenu {
    display: block;
  }
  .hn-golbalmenu > li {
    display: block;
    text-align: left;
    border-top: 1px solid #FFF;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .hn-golbalmenu > li:first-child {
    border-top: none;
  }
  .hn-golbalmenu > li > a,
  .hn-golbalmenu .menu-sub > li > a {
    padding: 15px 30px;
    overflow: hidden;
    position: relative;
  }
  .hn-golbalmenu .menu-sub > li > a {
    background: #EC972E;
    padding-left: calc(30px + 1em);
  }
  .hn-golbalmenu > li.current > a:before {
    background: none;
  }
  .hn-golbalmenu > li > a > .arrow-icon,
  .hn-golbalmenu .menu-sub > li > a > .arrow-icon {
    content: " ";
    border: 1px solid #FFF;
    border-bottom: 0;
    border-left: 0;
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-right: 32px;
    transform: rotate(45deg);
  }
  .hn-golbalmenu .menu-sub > li > a > .arrow-icon {
    border-color: #ffffff;
  }
  .hn-golbalmenu .menu-sub {
    position: relative;
    width: auto;
    top: 0;
    left: 0;
    text-align: left;
  }
  .hn-golbalmenu .menu-sub > li {
    border-top: 1px solid #222e34;
  }
  .hn-golbalmenu .menu-sub > li:first-child {
    border-top: none;
  }

  /*** SP版メニューのスクロール時のスタイル START ***/
  .header-group.hg-fixed:not(.hg-opened) .hn1-wrap-01 {
    /*
    zoom: 80%;
    text-align: left;
    padding-left: 30px;
    */
  }
  .header-group.hg-fixed:not(.hg-opened) .hn1-wrap-03 {
    /* zoom: 80%; */
  }
  .hn1-lgnctt li > a > .txt,
  .hn1-lgnctt li > .drawer-txt {
    /* transform: scale(0.9); */
  }
  /*** SP版メニューのスクロール時のスタイル END ***/


    .youtubeBlock {
        margin-top: 20px;
    }

  .footer-group {
    padding: 0;
  }
  .footer-inner {
    padding: 0;
  }
  .footer-nav {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .fn-wrap-01,
  .fn-wrap-02 {
    width: 100%;
    text-align: center;
  }
  .fn-wrap-02 {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .fn-golbalmenu-03 {
    display: block;
    margin-top: 0;
    width: auto;
    color: #000;
  }
  .fn-golbalmenu-03 .fg3-01,
  .fn-golbalmenu-03 .fg3-02 {
    font-size: 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
  .fn-golbalmenu-03 .fg3-01 li,
  .fn-golbalmenu-03 .fg3-02 li,
  .fn-golbalmenu-03 .fg3-01 li:first-child,
  .fn-golbalmenu-03 .fg3-02 li:first-child {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: 11px;
    font-size: 1.1rem;
    margin: 0;
    box-sizing: border-box;
  }
  .fn-golbalmenu-03 .fg3-01 li { 
    border-top: 1px solid rgba(0,0,0,0.2);
  }
  .fn-golbalmenu-03 .fg3-01 li:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.2);
  }
  .fn-golbalmenu-03 .fg3-01 li:last-child {
    border-right: none;
    width: 100%;
  }
  .fn-golbalmenu-03 .fg3-01 li > a,
  .fn-golbalmenu-03 .fg3-02 li > a {
    display: block;
    box-sizing: border-box;
    padding: 15px 8px;
  }
  .fn-golbalmenu-03 .fg3-02 li,
  .fn-golbalmenu-03 .fg3-02 li:first-child {
    width: auto;
    margin: 0 1%;
  }
  .fn-wrap-02 {
    padding: 45px 3% 35px 3%;
  }
  .logo-integral {
    width: 256px;
  }
  .footer-credit {
    border-top: 1px solid rgba(0,0,0,0.2);
    margin: 0;
    padding: 25px 10px;
  }
  .fc-copyright {
    font-size: 8.5px;
    font-size: 0.85rem;
    margin: 0;
  }
  .fc-caution {
    font-size: 9px;
    font-size: 0.9rem;
  }
  .top-visual-wrap {
    padding: 0;
  }
  .top-visual {
    height: 220px;
    box-sizing: border-box;
    margin-bottom: 60px;
  }
  #services.top-visual {
    margin-bottom: 0;
  }
  .top-visual-img {
    position: relative;
    height: 100%;
    width: 100%;
    text-align: right;
    top: auto;
    right: auto; 
  }
  #fs530.top-visual-img,
  #fs430.top-visual-img,
  #fs630.top-visual-img,
  #probes.top-visual-img,
  #fastscore.top-visual-img,
  #productslist.top-visual-img,
  #teqsTop.top-visual-img {
    top: auto;
    right: auto;
    transform: translateY(0);
  }
  #fs430.top-visual-img,
  #fs630.top-visual-img {
    right: auto;
  }
  #logiq-p10.top-visual-img {
    top: 0;
    right: 0;
  }
  #smarttoolsTop.top-visual-img {
    top: auto;
    right: auto;
    transform: translateY(0);
    overflow: hidden;
  }
  .top-visual-img img {
    max-width: initial;
    width: auto;
    height: 80%;
    opacity: .3;
    margin-top: 7.5%;
  }
  #fs430.top-visual-img img {
    height: 60%;
    margin-top: 7%;
    margin-right: 5%;
  }
  #fs630.top-visual-img img {
    height: 95%;
    margin-top: 1%;
    margin-right: 5%;
  }
  #probes.top-visual-img img {
    height: 100%;
    margin-top: 0;
  }
  #teqsTop.top-visual-img img {
    height: 100%;
    margin-top: 0;
  }
  #smarttoolsTop.top-visual-img img {
    height: auto;
    margin-top: -13%;
    width: 100%;
  }
  .top-visual-img.setbgvis img {
    height: 100%;
    width: 100%;
    margin-top: 0;
    opacity: 1;
  }
  .tp-ttl-set {
    left: 20px;
    width: calc(100% - 40px);
  }
  .tp-ttl-set.short, .tp-ttl-set.short02  {
    left: 20px;
    width: calc(100% - 30px);
    z-index: 2;
  }
  .tp-ttl-set.long01 {
    left: 20px;
    width: calc(100% - 40px);
  }
  .tp-ttl-set.setbgvis,
  .tp-ttl-set.setbgvis.sht {
    width: 100%;
    left: auto;
    right: auto;
    text-align: center;
    padding: 0 6%;
    box-sizing: border-box;
  }
  .tp-ttl-set .mt40,
  .tp-ttl-set.short .mt40 {
    margin-top: 10px!important;
  }
  .tp-ttl-01 {
    font-size: 27px;
    font-size: 2.7rem;
    line-height: 1.3;
  }
  .tp-ttl-01-sp-small {
    line-height: 1.1;
  }
  .tp-ttl-01 .small {
    font-size: 19.5px;
    font-size: 1.95rem;
  }
  .tp-ttl-02 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
    
  .tp-ttl-02.shortmes,
  .tp-ttl-02.moreshortmes {
    width: 92%;
  }
  .tp-ttl-02 .attn {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .tp-ttl-set.short .tp-ttl-02 .attn {
    font-size: 10px;
    font-size: 1rem;
  }
  
  .top-visual-wrap-sp-large .tp-ttl-set {
    top: 10px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  .breadcrumb {
    padding: 10px;
    margin-bottom: 5px;
    font-size: 1rem; /* add 190703 */
  }
  .bcb-list li {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .main-group {
    font-size: 12px;
    font-size: 1.2rem;
    dding-right: 0;
    dding-left: 0;
    rgin-bottom: 50px;
  }
  .underlogo {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #D9492B;
    text-align: center;
    padding: 0 20px;
  }
  .cmn-ttl-01 {
    font-size: 31px;
    font-size: 3.1rem;
    line-height: 1.3;
  }
  .cmn-ttl-02 {
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 14px;
  }
  .cmn-ttl-02:before {
    width: 35px;
  }
  .cmn-ttl-03 {
    font-size: 21px;
    font-size: 2.1rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .cmn-ttl-03:before {
    width: 38px;
    height: 2px;
  }    
  .cmn-ttl-03__icon {
    height: 60px;
  }
  .cmn-ttl-03_subs {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 45px;
    padding: 0 20px;
  }
  .cmn-btn-01 {
    min-width: 173px;
    min-height: 34px;
    padding-left: 30px;
  }
/*202205追加ここから*/	
  .cmn-btn-01.fastcore_btn {
    min-width: 320px;
    min-height: 34px;
    padding-left: 30px;
  }	
/*202205追加ここまで*/	
	
  .cmn-btn-01 .txt,
  .cmn-btn-01 .icon {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .cmn-btn-01 .txt {
    top: 0;
  }
  .cmn-btn-01 .icon {
    right: 8px;
  }
  .cmn-btn-01 .icon:before {
    width: 10px;
  }
  .cmn-btn-01 .icon:after {
    width: 7px;
    height: 7px;
    margin-right: 5px;
  }
  .cmn-btn-01 .txt.font-fmy-03 {
    font-size: 14px;
    font-size: 1.4rem;
    top: 0;
  }
  .cmn-btn-02 {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .cmn-btn-02 .icon {
    width: 14px;
    height: 14px;
    top: 1px;
  }
  .cmn-btn-02 .icon:before {
    margin-right: 6px;
  }
  .cmn-btn-03 {
    min-width: 173px;
    min-height: 34px;
    padding: 6px 30px;
  }
  .cmn-btn-03 .txt {
    top: 0;
  }

  /*** filter ***/
  .fltahv-wrap {
    padding: 0;
    margin-top: 10px;
  }
  .fltahv {
    border-right: none;
    border-left: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }
  .fltahv-cont {
    float: none;
    display: table;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .fltahv-cont dt,
  .fltahv-cont dd {
    display: table-cell;
  }
  .fltahv-cont dt {
    width: 6em;
    vertical-align: top;
  }
  .fltahv-cont dd {
    vertical-align: top;
  }
  .filter-list li {
    margin: 0 1.25em 0 0;
  }
  /*** archive in filter ***/
  .archive {
    margin-top: 17px;
  }
  .archive dt {
    vertical-align: middle;
  }
  .select-appearance {
    width: 124px;
  }
  .select-appearance:after {
    background-image: url(../img/common/icon-select-arrow-sp.png);
    width: 6px;
    height: 13px;
    margin-right: 10px;
  }
  .archive-list {
    font-size: 16px;
    font-size: 1.6rem;
    transform: scale(0.8);
    transform-origin: 0 0;
    width: 125%;
    margin-top: 3px;
    padding-left: 12px;
  }
  .section-mboly {
    padding: 18px 3.5%;
    margin: 24px 10px 50px 10px;
    border-width: 2px;
  }
  .mboly-tag {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 4px 16px;
  }
  .mboly-txt {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 4%;
    max-width: 63%;
    text-align: left;
    line-height: 1.5;
  } 

  .support, .tutorial, .fastscorecalc {
      height: 220px;
  }
  .support__txts h2, .tutorial__txts h2, .fastscorecalc__txts h2 {
      font-size: 21px; 
      font-size: 2.1rem;
      margin-bottom: 20px;
  }
  .support__txts, .tutorial__txts, .fastscorecalc__txts {
      left: auto;
      width: 100%;
      padding: 0 3.5%;
      text-align: center;
      box-sizing: border-box;
  }
  .support-txt, .tutorial-txt, .fastscorecalc-txt {
      margin-bottom: 20px;
      padding: 0 10px;
  }
  .tutorial-txt span {
      display: inline;
  }
  .aboutFibro li {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.5;
  }
  .aboutFibro li .attn2 {
      font-size: 12px;
      font-size: 1.2rem;
  }

  /* NEWS */    
  .postlist.inner-03 {
      padding: 0;
  }
  .postbox {
      margin-bottom: 15px;
  }
  .postbox a {
      padding: 15px 20px;
  }
  .postbox__thumb {
      width: 100%;
      margin-right: 0;
      margin-bottom: 15px;
  }
  .postbox__detail {
      width: 100%;
  } 

  .tableSet dl dt {
      font-size: 15px;
      font-size: 1.5rem;
      padding: 10px 7px;
  }
  .tableSet dl dt.dt02 {
      font-size: 14px;
      font-size: 1.4rem;
      padding: 7px;
  }
  .tableSet dl dd {
      padding: 10px 7px;
  }
  .tableSet dl dd.fkdt {
      font-size: 15px;
      font-size: 1.5rem;
  }
  .tableSet dl dd span {
      margin-bottom: 0;
  }
  .lastcnts__Blk {
      width: 49.8%;
      height: 160px;
  }
  .lastcnts__Blk.wmax {
      height: 160px;
  }
  .lastcnts__Blk a p {
      font-size: 12px;
      font-size: 1.2rem;
      padding-bottom: 35px;
  }
  .lastcnts__Blk a span {
      font-size: 21px;
      font-size: 2.1rem;
      margin-bottom: 0;
      letter-spacing: -.03em;
  }
  .reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
  }
  .mt40 {margin-top: 30px !important;}
  .mb20 { margin-bottom: 15px !important; }
  .mb30 { margin-bottom: 20px !important; }
  .mb40, .mb60 { margin-bottom: 30px !important; }
  .mb120 { margin-bottom: 90px !important; }
  .mb150 { margin-bottom: 100px !important; }
    
}

@media only screen and (max-width: 350px) {
  .hn1-wrap-01 {
    padding-left: 2%;
  }
  .header-logo {
    max-width: 90px;
  }
  .fn-golbalmenu-03 .fg3-02 li,
  .fn-golbalmenu-03 .fg3-02 li:first-child {
    margin: 0;
  }
  .fn-wrap-02 {
    padding-left: 2%;
    padding-right: 2%;
  }
}

/* 画面右固定ボタン */
#library_btn { 
  position: fixed;
  bottom: 40px;
  right: 0;
  color: #ffffff;
  background: #003055;
  border-radius: 8px 0 0 8px;
  z-index: 2;
}
#library_btn:hover {
	background: #D9492B;
}
#library_btn a {
	padding: 40px 30px;
	display: block;
}

@media only screen and (max-width: 640px) {
  #library_btn { 
    font-size: 1.5rem;
    text-align:center;
    position: fixed;
    bottom: 0;
	  left:0;
    width: 100%;
    opacity: 0.9;
    color: #ffffff;
    background: #D9492B;
    padding: 0;
	  border-radius:0;
    z-index: 2;
  }
  #library_btn a {
	  width: 100%;
    padding: 20px 0;
    display: block;
  }
}


/* add 190724 start 肝臓検査.comの情報をトップページに追加 */
.kanzo-wrap {
    display: flex;
    justify-content: center;
    margin: 60px auto 0 auto;
    text-align: left;
}

.kanzo-wrap .img-area {
    width: 40%;
    padding: 0 50px;
    text-align: right;
}

.kanzo-wrap .img-area img {
    /*width: 50%;*/
    padding: 0;
}

.kanzo-wrap .txt-area {
    width: 410px;
    padding-right: 10px;
    margin: auto 0;
}

.kanzo-wrap .txt-area h3 { 
    margin-bottom: 20px;
}
.kanzo-wrap .txt-area h3 img { 
    width: 60%;
}

.kanzo-wrap .txt-area p { 
    margin: 20px 0;
}

.kanzo-wrap .txt-area ul { 
}
.kanzo-wrap .txt-area ul > li {
    width: 46%;
    margin-right: 10px;
    display: inline-block;
    padding: 10px 0;
}

.kanzo-wrap .icon {
    display: inline-block;
    vertical-align: top;
    width: 18px;
    height: 18px;
    background: #D9492B;
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    top: 4px;
    margin-right: 0.3em;
}
.kanzo-wrap .icon:before {
    content: " ";
    border: 1px solid #fff;
    border-bottom: 0;
    border-left: 0;
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-right: 8px;
    transform: rotate(45deg);
}

.kanzo-wrap a:hover {
  color: #D9492B;
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.kanzo-wrap a:hover img {
  color: #D9492B;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=70); /* lte IE8 */
  opacity: 0.7;
}
.kanzo-wrap a:hover .icon {
  background-color: #D9492B;
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 640px) {
.kanzo-wrap {
    display: block;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}


.kanzo-wrap .img-area {
    width: 100%;
    padding: 0;
    text-align: left;
}
.kanzo-wrap .img-area img {
    display: block;
    width: auto;
    padding: 0;
}

.kanzo-wrap .txt-area {
    width: 100%;
    padding: 20px 0;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
}

.kanzo-wrap .txt-area h3 {
    margin-bottom: 20px;
}

.kanzo-wrap .txt-area h3 img { 
    width: 80%;
}

.kanzo-wrap .txt-area p { 
    margin: 10px 0;
}

.kanzo-wrap .txt-area ul { 
}
.kanzo-wrap .txt-area ul > li {
    width: 60%;
    display: block;
    margin: 0 auto;
    padding: 5px 0 5px 40px;
    text-align: left;
}

}
/* add 190724 end */

.cta_btn {
  display: flex;
  justify-content: space-between;
  max-width: 562px;
}

.cta_btn a {
  display: block;
  height: 64px;
  color: #fff;
  background: #aaa;
  width: 48%;
  line-height: 64px;
  text-align: center;
}

.cta_container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 562px;
}

.top-visual .cta_text {
  font-size: 12px;
  font-size: 1.4rem;
  text-align: center;
  color: #FFF;
  z-index: 2;
}
.top-visual .cta_text span {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}

.top-visual .cta_btn {
  justify-content: space-between;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #FFF;
  z-index: 2;
  max-width: 462px;
}

.top-visual .cta_btn .quotation {
  background: rgba(236, 151, 46, 1);
}

.top-visual .cta_btn a {
  position: relative;
  background: #aaa;
  width: 48%;
  overflow: hidden;
  box-sizing: border-box;
}

.top-visual .cta_btn a span {
  font-size: 16px;
  line-height: 64px;
  z-index: 3;
  position: relative;
  transition: all .5s;
}

.top-visual .cta_btn a {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.top-visual .cta_btn a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.top-visual .cta_btn a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: #555;
  left: -100%;
  top: 0;
  transition: all 0.8s;
  opacity: 0;
}

.top-visual .cta_btn a:hover {
  opacity: 1;
}

.top-visual .cta_btn a:hover:after {
  opacity: 1;
  left: 0;
}

.top-visual .cta_btn .quotation:after {
  background: #e26f2d;
}

.top-visual .cta_btn .quotation:hover:after {
  left: 0;
}

.lastcnts__Blk .cta_text {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #FFF;
  z-index: 2;
  text-shadow: 0px 0px 6px #951606;
}
.lastcnts__Blk .cta_text span {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}

.lastcnts__Blk .cta_btn {
  justify-content: space-between;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #FFF;
  z-index: 2;
}

.lastcnts__Blk .cta_btn a {
  position: relative;
  background: rgba(217, 73, 43, 0.8);
  width: 46%;
  overflow: hidden;
  box-sizing: border-box;
}

.lastcnts__Blk .cta_btn a span {
  font-size: 16px;
  font-weight: 600;
  line-height: 64px;
  z-index: 3;
  position: relative;
  transition: all .5s;
}

.lastcnts__Blk .cta_btn .quotation {
  background: #fff;
  color: rgba(236, 151, 46, 1);
  box-sizing: border-box;
  border: none;
}

.lastcnts__Blk .cta_btn a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 1);
  left: 0;
  top: 0;
}

.lastcnts__Blk .cta_btn a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 1);
  left: -100%;
  top: 0;
  transition: all 0.8s;
  opacity: 0;
}

.lastcnts__Blk .cta_btn a:hover span {
  color: rgba(236, 151, 46, 1);
}

.lastcnts__Blk .cta_btn a:hover:after {
  opacity: 1;
  left: 0;
}

.lastcnts__Blk .cta_btn .quotation:after {
  background: rgba(236, 151, 46, 1);
}

.lastcnts__Blk .cta_btn .quotation:hover span {
  color: #fff;
}

.lastcnts__Blk .cta_btn .quotation:hover:after {
  left: 0;
}

@media only screen and (max-width: 640px) {
  .top-visual .cta_btn a {
    font-size: 14px;
    line-height: 48px;
    height: 48px;
  }

  .lastcnts__Blk.lastcnts__Blk__cta {
    height: 240px;
  }
  .cta_btn {
    max-width: 100%;
  }

  .cta_btn a {
    height: 48px;
    line-height: 48px;
  }

  .cta_container {
    width: 100%;
  }

  .lastcnts__Blk .cta_btn {
    height: 48px;
    padding: 0 20px;
  }

  .top-visual .cta_btn a span {
    font-size: 14px;
    line-height: 48px;
  }

  .lastcnts__Blk .cta_btn a span {
    font-size: 14px;
    line-height: 48px;
  }
}
/* add 240310 end */


/* SNSシェアボタン */
.sns-share {
	display: flex;
	align-items: center;
	justify-content:flex-end;
  margin-bottom: 30px;
  width: 100%;
}
.sns-share p {
  font-size: 14px !important;
  line-height: 1 !important;
  margin: 0 10px 0 0 !important;
  width: auto !important;
}
.sns-share__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	margin: 0 !important;
}
.sns-share__item {
	margin: 0 6px !important;
  padding: 0 !important;
}
.sns-share__item::before {
  content: none !important;
	margin: 10px;
}
.sns-share__btn {
	border: 1px solid #111;
	border-radius: 50%;
	box-sizing: border-box;
	color: #111;
	cursor: pointer;
	height: 40px;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	text-align: center;
	text-decoration: none;
	width: 40px;
}
.sns-share__btn:hover {
	border: none;
	color: #fff;
  opacity: 1 !important;
}
.sns-icon-facebook-f::before {
  display: block;
  content: " ";
  background: url("../img/common/icon_facebook.png") no-repeat center;
  background-size: contain;
  height: 28px;
  width: 28px;
}
.sns-share__btn--fb:hover {
	background-color: #4267b2;
}
.sns-share__btn--fb:hover .sns-icon-facebook-f::before {
  background: url("../img/common/icon_facebook-white.png") no-repeat center;
  background-size: contain;
}
.sns-icon-twitter::before {
  display: block;
  content: " ";
  background: url("../img/common/icon_x.png") no-repeat center;
  background-size: contain;
  height: 28px;
  width: 28px;
}
.sns-share__btn--tw:hover {
	background-color: #000000;
}
.sns-share__btn--tw:hover .sns-icon-twitter::before {
  background: url("../img/common/icon_x-white.png") no-repeat center;
  background-size: contain;
}
.sns-share__btn--copy:hover {
	background-color: #666;
}
.sns-share__btn--copy .sns-icon-share-alt::before {
  display: block;
  content: " ";
  background: url("../img/common/icon_share.png") no-repeat center;
  background-size: contain;
  height: 28px;
  width: 28px;
}
.sns-share__btn--copy:hover .sns-icon-share-alt::before {
  background: url("../img/common/icon_share-white.png") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 640px) {
  .sns-share {
    margin-bottom: 20px;
  }
  .sns-share p {
    font-size: 12px;
  }
  .sns-share__item {
    margin: 0 5px !important;
  }
  .sns-share__btn {
    height: 30px;
    font-size: 15px;
    width: 30px;
  }
  .sns-icon-facebook-f::before,
  .sns-icon-twitter::before,
  .sns-share__btn--copy .sns-icon-share-alt::before {
    height: 20px;
    width: 20px;
  }
}
