@charset "utf-8";
/* CSS Document */
/*--------------------------------------

  reCAPTCHAバッジ非表示

---------------------------------------*/
.g-recaptcha-note {
  color: #777777;
  font-size: 0.875em;
  margin: 3em auto 0;
}
.grecaptcha-badge {
  visibility: hidden;
}

/*--------------------------------------

  フォント

---------------------------------------*/
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"),
    url("../font/NotoSansCJKjp-Regular.woff2") format("woff2"),
    url("../font/NotoSansCJKjp-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"),
    url("../font/NotoSansCJKjp-Bold.woff2") format("woff2"),
    url("../font/NotoSansCJKjp-Bold.otf") format("opentype");
}
/*--------------------------------------

#loading

---------------------------------------*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  color: #01559a;
}
#splash #splash_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#splash #splash_text .progressbar-text span {
  font-size: 0.5em;
}
#splash .logo {
  width: 180px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/*--------------------------------------

  Cookie同意確認

---------------------------------------*/
.cookie-consent {
  position: fixed;
  display: block;
  text-align: center;
  bottom: 0;
  width: 100%;
  font-size: 0.875em;
  color: #fff;
  background: rgba(1, 85, 154, 0.6);
  padding: 1.5em 1em;
  box-sizing: border-box;
  visibility: visible;
  z-index: 999998;
}
.cookie-consent.close {
  display: none;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-agree {
  display: inline-block;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 0.25em;
  margin-left: 1em;
  margin-top: 0.5em;
  white-space: nowrap;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
  .cookie-agree {
    margin-left: auto;
    margin-right: auto;
  }
}
/*--------------------------------------

  共通

---------------------------------------*/
body {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  letter-spacing: 0.05em;
  font-size: 16px;
  overflow-x: hidden;
  color: #111111;
  animation: fadeIn 2s;
}
body.fixed {
  height: 100%;
  overflow-y: hidden;
  position: relative;
}
#bg-black.show {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 999;
  top: 0;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}
.blue {
  color: #01559a;
}
.bg_white {
  background: #fff;
}
.bg_gray-grad {
  background: linear-gradient(to right bottom, #ffffff 0%, #e5e5e5 100%);
}
.min {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, serif;
}
.content-title rt {
  font-size: 0.3em;
}

@media screen and (min-width: 1024px) and (max-width: 1299px) {
  body {
    font-size: 1.15vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.7vw;
    padding-top: 5vw;
  }
  body.home {
    padding-top: 0;
  }
  body#column {
    padding-top: 13vw;
  }
}
/*--------------------------------------

  レイアウト

---------------------------------------*/
.t-center {
  text-align: center;
}
.t-right {
  text-align: right;
}
.content-full {
  width: 100%;
  max-width: 100%;
}
.content-l {
  width: 1600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.content {
  width: 1300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.full-width {
  margin: 0 calc(-50vw + 50%);
}
@media screen and (max-width: 1399px) {
  .content {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .full-width {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .content {
    padding-left: 4.8vw;
    padding-right: 4.8vw;
  }
}
/****************************************/
.col2-box {
  display: flex;
}
.col2-box > div {
  width: calc(100% / 2);
}
.col3-box {
  display: flex;
}
.col3-box > div {
  width: calc(100% / 3);
}
.wrap {
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .col2-box.tab-wrap {
    flex-wrap: wrap;
  }
  .col2-box.tab-wrap > div {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .col2-box.sp-wrap {
    flex-wrap: wrap;
  }
  .col2-box.sp-wrap > div {
    width: 100%;
  }
}
/*--------------------------------------

  余白調整

---------------------------------------*/
.pt50 {
  padding-top: 50px;
}
.pt80 {
  padding-top: 80px;
}
.pt100 {
  padding-top: 100px;
}
.pt140 {
  padding-top: 140px;
}
.pt160 {
  padding-top: 10vw;
}
.pb50 {
  padding-bottom: 50px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb100 {
  padding-bottom: 100px;
}
.pb150 {
  padding-bottom: 9.375vw;
}
.pb160 {
  padding-bottom: 10vw;
}
.mt50 {
  margin-top: 50px;
}
.mt100 {
  margin-top: 100px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .pt50 {
    padding-top: 12vw;
  }
  .pt80 {
    padding-top: 12vw;
  }
  .pt100 {
    padding-top: 12vw;
  }
  .pt140 {
    padding-top: 12vw;
  }
  .pt160 {
    padding-top: 16vw;
  }
  .pb50 {
    padding-bottom: 12vw;
  }
  .pb80 {
    padding-bottom: 12vw;
  }
  .pb100 {
    padding-bottom: 20vw;
  }
  .pb150 {
    padding-bottom: 36vw;
  }
  .pb160 {
    padding-bottom: 12vw;
  }
  .mt50 {
    margin-top: 12vw;
  }
  .mt100 {
    margin-top: 20vw;
  }
  .mb50 {
    margin-bottom: 12vw;
  }
  .mb100 {
    margin-bottom: 20vw;
  }
}
/*--------------------------------------


  SNS/言語ボタン


---------------------------------------*/
header .link-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: absolute;
  top: 78px;
  right: 20px;
}
footer .link-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-area .sns-icon {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.link-area .sns-icon a {
  display: block;
  text-align: center;
  width: 25px;
  height: 25px;
}
.link-area .sns-icon.fb a {
  background: url("../images/icon_facebook.svg") center no-repeat;
  background-size: 100%;
}
.link-area .sns-icon.tw a {
  background: url("../images/icon_twitter.svg") center no-repeat;
  background-size: 100%;
}
header.open .link-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  top: 1em;
  right: auto;
  left: 1.5em;
}

header.fixed .link-area {
  top: 14px;
}
@media screen and (max-width: 767px) {
  header.open .link-area {
    left: 0;
  }
}
/*--------------------------------------

  言語切り替え

---------------------------------------*/
.btn-language {
  width: 4em;
  margin-right: 1em;
  height: 50px;
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 999;
  text-align: center;
}
.btn-language .doropdown {
  padding: 0 0.5em;
  position: relative;
}
.btn-language:hover .doropdown::after {
  background: #fff;
  padding: 0 0.5em;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: dropdown;
  animation-name: dropdown;
  border-radius: 5px;
  z-index: -1;
}
.btn-language .doropdown .btn_panel-swich {
  width: 100%;
  height: 30px;
  font-size: 0.75em;
  text-align: center;
  color: #111111;
  background: url("../images/icon_internet.svg") center top 9px no-repeat;
  background-size: 21px 21px;
  cursor: pointer;
}
.btn-language .active a {
  width: 100%;
  font-size: 0.75em;
  padding: 0.5em 1em;
  text-align: center;
  color: #111111;
}
.btn-language .doropdown ul.select-language {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.btn-language:hover .doropdown ul.select-language {
  display: block;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
header .btn-language ul.select-language li {
  border-top: 1px solid #d8e7f1;
}
/*　フッター */
footer .btn-language {
  width: auto;
  height: 40px;
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 999;
  display: flex;
}
footer .btn-language .to-right {
  display: flex;
  margin-left: 1em;
  position: relative;
  line-height: 40px;
}
footer .btn-language:hover .to-right::after {
  background: #fff;
  padding: 0 0.5em;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: auto;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: toRight;
  animation-name: toRight;
  border-radius: 5px;
  z-index: -1;
}
.btn-language .to-right .btn_panel-swich {
  width: 30px;
  height: 40px;
  font-size: 0.75em;
  text-align: center;
  color: #111111;
  background: url("../images/icon_internet.svg") left 0.5em center no-repeat;
  background-size: 21px 21px;
  cursor: pointer;
}
.btn-language .to-right .btn_panel-swich a {
  line-height: 1.5625em;
}
.btn-language .to-right ul.select-language {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  opacity: 0;
}
.btn-language:hover .to-right ul.select-language {
  opacity: 1;
  align-items: center;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInL;
  animation-name: fadeInL;
  display: flex;
  position: absolute;
  right: -115%;
}
.btn-language ul.select-language li a {
  padding: 0.5em 1em;
  text-align: center;
  color: #4b4b4b;
  font-size: 0.625em;
}
/*フッター用*/
footer .btn-language {
  margin-left: 0;
  margin-right: 0;
  top: 0;
}
footer .btn-language:hover .to-right::after {
  background: #fff;
  z-index: 0;
}
footer .btn-language .btn_panel-swich,
footer .btn-language ul.select-language {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  header .link-area,
  header.fixed .link-area {
    position: relative;
    top: 1em;
    right: auto;
    left: 1.5em;
  }
}
/*--------------------------------------

  メニュー　スライド下線

---------------------------------------*/
.slide-line-menu {
  position: relative;
}
.slide-line-menu .slide-line {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header.open .main-navigation .slide-line {
  display: none;
}
.jp .main-navigation .slide-line {
  bottom: 40px;
}
.page-link-nav {
  position: relative;
}
.page-link-nav .page-slide-line {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 2em;
}
@media screen and (max-width: 767px) {
  .main-navigation .slide-line,
  .page-link-nav .page-slide-line {
    display: none;
  }
  header .link-area,
  header.fixed .link-area {
    left: 0;
  }
}
/*--------------------------------------

  ヘッダー

---------------------------------------*/
.site-header {
  position: relative;
  width: 100%;
  z-index: 9999;
}
.home .site-header {
  position: absolute;
  transition: 0.3s;
}
.site-header .header-top {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 40px;
  padding: 10px 15px;
}
.site-header .header-top img {
  height: 20px;
}
.site-branding {
  width: 210px;
  position: absolute;
  padding-left: 1em;
  z-index: 1;
}
h1.site-title {
  width: 200px;
  margin: 0.5em auto;
}
h1.site-title img {
  vertical-align: middle;
}
.site-header-inner {
  margin: 24px auto;
  padding-left: 5em;
}

.site-header.fixed .site-header-inner {
  margin: 0 auto;
  padding-left: 0;
}

@media screen and (max-width: 1199px) {
  .site-header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-header .site-branding {
    width: 120px;
    padding: 10px 15px;
    position: relative;
  }
  .site-header .site-branding h1.site-title {
    width: 112px;
    margin: 0 auto 0 0;
  }

  .site-header .site-header-inner {
    width: 345px;
    max-width: 100%;
    height: 100%;
    position: fixed;
    padding: 4em 15px 10px;
    transition: 0.5s;
    background: linear-gradient(to right bottom, #ffffff 0%, #e5e5e5 100%);
    top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    right: -345px;
  }
  .site-header .main-navigation {
    justify-content: flex-start;
    padding-left: 1em;
  }
  .site-header .main-navigation a {
    color: #01559a;
  }
  .site-header .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .main-navigation ul li .sub-menu-wrap {
    position: relative;
    display: block;
    width: 100%;
    top: auto;
    left: 0;
    background: transparent;
  }
  .site-header .main-navigation ul li .sub-menu-wrap .sub-menu li.menu-item a {
    color: #4b4b4b;
    padding-left: 0;
  }
  .site-header .main-navigation ul li {
    text-align: left;
  }
  .main-navigation li.menu-item-has-children > a:first-child::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .site-header .site-branding h1.site-title {
    width: 30vw;
  }
  .site-header .header-top {
    height: 10.6vw;
    padding: 2.5vw 3.6vw;
  }
  .site-header .header-top img {
    height: 5.6vw;
  }
  .site-header,
  .site-header.fixed {
    position: fixed;
    top: 0;
  }
  .site-header .site-branding {
    height: 20vw;
    width: 40vw;
    padding: 2.5vw 3.6vw;
  }
}
/*--------------------------------------


  Fixed　ヘッダー / メニューオープン


---------------------------------------*/
.site-header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
}
.site-header.fixed .header-top {
  display: none;
}
.site-header.fixed .site-branding {
  width: 120px;
}
.site-header.fixed .site-branding h1.site-title {
  width: 112px;
  margin: 0 auto 0 0;
}

.site-header.open .site-header-inner {
  width: 345px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  padding: 4em 15px 0.75em;
  transition: 0.5s;
  background: linear-gradient(to right bottom, #ffffff 0%, #e5e5e5 100%);
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .site-header .site-header-inner,
  .site-header.fixed .site-header-inner,
  .site-header.open .site-header-inner {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background: linear-gradient(to right bottom, #ffffff 0%, #e5e5e5 100%);
    right: -100vw;
    padding: 4em 1.5em 5em;
  }
  .site-header.open .site-header-inner {
    right: 0;
    transition: 0.5s;
  }
  .site-header.fixed {
    padding: 0;
  }
  .site-header.fixed .site-branding {
    width: 40vw;
    padding: 2.5vw 3.6vw;
  }
  .site-header.fixed .site-branding h1.site-title {
    width: 32vw;
  }
}
/*--------------------------------------


  コラムヘッダー


---------------------------------------*/
.column-header {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 2.5em 250px 2em;
}
.column-header .column-logo {
  width: 100%;
  text-align: center;
}
.column-header #searchform {
  position: absolute;
  right: 0;
  top: 2.5em;
  margin: 0.5em 1.5em;
}
@media screen and (max-width: 767px) {
  .column-header {
    background: #fff;
    padding: 0.5em 1em;
  }
  .column-header .column-logo {
    width: 70vw;
    text-align: center;
    margin: 6vw auto 2.4vw;
    padding: 0;
  }
  .column-header #searchform {
    width: 49.5vw;
    margin: 0.5em auto 0;
    position: relative;
    top: 0;
  }
}
/*--------------------------------------


  フッター


---------------------------------------*/
footer .logo {
  margin-top: 3.125em;
  text-align: center;
}
.site-footer {
  position: relative;
}
.site-info .site-info-inner {
  margin-top: 3em;
  margin-bottom: 3em;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.footer-logo {
  display: flex;
  justify-content: center;
  column-gap: 10em;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  column-gap: 1em;
  width: 100%;
  background: #fff;
  padding-top: 3em;
  padding-bottom: 3em;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-nav ul {
  margin: 0 5em 0 0;
  padding-left: 0;
}
.f-nav ul li {
  list-style: none;
}
.f-nav ul li a {
  color: #4b4b4b;
  display: block;
  font-size: 0.875em;
  line-height: 2.5;
}
.f-nav ul li.parent-link a {
  color: #01559a;
  font-size: 1em;
}
.copyright {
  border-top: 1px solid #e1ecf5;
  padding: 1.5em;
  text-align: center;
  color: #999999;
  font-size: 0.75em;
  font-family: "Lato", sans-serif;
}
.footer-link ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 1em;
}
.footer-link ul li:not(:last-child) a {
  border-right: 1px solid #999999;
}
.footer-link ul li a {
  padding: 0 1em;
  color: #707070;
  font-size: 0.875em;
}
.footer-sns {
  display: flex;
  align-items: center;
  margin: 0 1em;
}
.footer-sns .icon {
  margin: 0 0.5em;
}
.footer-sns .icon img {
  width: auto;
  height: 25px;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer-bottom .footer-bottom-inner {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .site-info .site-info-inner {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .site-info .site-info-inner .logo-area .logo {
    width: 180px;
    max-width: 43vw;
    text-align: center;
    margin-right: 1.5em;
  }
  footer .logo.mgc {
    margin-top: 1em;
  }
  .footer-logo {
    flex-direction: column;
  }
  .f-nav ul {
    margin: 0 2em;
    padding-left: 0;
    text-align: center;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 2em;
    margin-bottom: 2em;
  }
  .footer-bottom .footer-bottom-inner {
    height: 100%;
    flex-wrap: wrap;
  }
  footer .copyright {
    font-size: 2.89vw;
  }
}
/*--------------------------------------

  Page Top 

---------------------------------------*/
.totop {
  width: 100%;
  margin: 0 auto;
  background: #01559a;
  height: 40px;
}
.totop a {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
}
.totop a .icon {
  width: 40px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
}
/*--------------------------------------

  ボタン

---------------------------------------*/
.btn-blue a {
  font-size: 1em;
  padding: 0.75em 2.5em;
  color: #fff;
  display: inline-block;
  margin-top: 1em;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
.btn-blue-s a {
  font-size: 1em;
  padding: 0.5em 1em;
  color: #fff;
  background: linear-gradient(60deg, #14b1fc 0%, #0172cf 100%);
  display: inline-block;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  position: relative;
  z-index: 1;
}
.btn-blue a::after,
.btn-blue span::after,
.btn-blue-s a::after {
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: linear-gradient(60deg, #14b1fc 0%, #0172cf 100%);
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.btn-blue a:hover,
.btn-blue-s a:hover {
  color: #01559a;
}
.btn-blue a:hover::after,
.btn-blue-s a:hover::after {
  width: 100%;
  height: 100%;
  color: #01559a;
  background: #fff;
  outline: 3px solid #14b1fc;
}
.btn-link {
  line-height: 1.5;
  margin: 0.5em 0 !important;
}
.btn-link a {
  padding-left: 1.5em;
  color: #01559a;
  font-size: 0.875em;
  font-weight: bold;
  font-weight: 700;
  background: url("../images/icon_link.svg") no-repeat;
  background-size: 1.2em auto;
}
.btn-link2 a {
  padding: 1em 2em 1em 2.5em;
  color: #01559a;
  font-size: 0.875em;
  font-weight: bold;
  font-weight: 700;
  background: url("../images/icon_link.svg") left 1em center no-repeat #fff;
  background-size: 1.2em auto;
  outline: 1px solid #14b1fc;
}
.btn-link2 a:hover {
  background: url("../images/icon_link.svg") left 1em center no-repeat #e6f4fd;
  background-size: 1.2em auto;
}
.btn-more {
  text-align: center;
  margin-top: 3em;
}
.btn-more a {
  padding: 0.25em 1.5em;
  display: inline-block;
  color: #01559a;
  border: 1px solid #14b1fc;
}
@media screen and (max-width: 767px) {
  .btn-blue a {
    font-size: 1em;
    padding: 1em 2em;
  }
  .btn-blue-s a {
    font-size: 1em;
    padding: 0.5em 1em;
  }
}
/*--------------------------------------

  ページナビ、カテゴリリストナビ

---------------------------------------*/
.page-link-nav ul {
  width: 1300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.page-link-nav ul li {
  padding: 0 2em;
}
.page-link-nav ul li a {
  padding: 0.5em 0;
  display: inline-block;
  font-size: 0.875em;
  font-weight: bold;
  font-weight: 700;
  position: relative;
  color: #4b4b4b;
}
.page-link-nav ul li.current a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
@media screen and (max-width: 767px) {
  .page-link-nav.pt50 {
    padding-top: 0;
  }
  .page-link-nav ul {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #e1ecf5;
    padding: 0 3.2vw;
  }
  .page-link-nav ul li {
    padding: 0 1em;
  }
  .page-link-nav ul li.current a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
  }
}
/*--------------------------------------

  エラーページ

---------------------------------------*/
.error-page .error-content {
  padding-left: 3em;
}
.error-page .error-content h2 {
  font-size: 2.5em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .error-page .error-content {
    padding-left: 0;
  }
  .error-page .error-content h2 {
    font-size: 1.25em;
  }
}
/*--------------------------------------

  固定ページ共通

---------------------------------------*/
.bg-mix img {
  mix-blend-mode: multiply;
}
p {
  color: #4b4b4b;
  line-height: 2;
}
.blue-circle {
  width: 226px;
  height: 226px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #01559a;
  padding: 1em;
  text-align: center;
  font-size: 1.25em;
  margin: 10px;
  flex-direction: column;
}
.blue-circle span {
  font-family: "Lato", sans-serif;
  color: #bbbbbb;
  font-size: 1.625em;
  margin: 0 0 0.5em;
  line-height: 1;
  z-index: 3;
}
.blue-circle::after {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, #14b1fc 0%, #0172cf 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sec-benefits .btn-blue {
  text-align: center;
}
.block-link {
  position: relative;
}
.block-link > a {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 1299px) {
  .blue-circle {
    width: 22vw;
    height: 22vw;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .blue-circle {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
    display: block;
    text-align: left;
    background: none;
    font-size: 1.125em;
    padding: 0.5em 0;
  }
  .blue-circle span {
    display: none;
  }
  .blue-circle::after {
    width: 100%;
    height: 1px;
    position: absolute;
    content: "";
    z-index: -1;
    background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
    border-radius: 50%;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #sec-benefits .btn-blue {
    text-align: left;
  }
}
/*--------------------------------------

  表示切替

---------------------------------------*/
.tab {
  display: none;
}
.tab-inline {
  display: none;
}
.sp {
  display: none;
}
.sp-inline {
  display: none;
}
.pc {
  display: block;
}
.pc-inline {
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab-inline {
    display: inline-block !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
  .tab-inline {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-inline {
    display: inline-block !important;
  }
}
/*--------------------------------------

  見出し・タイトル

---------------------------------------*/
.page-header .page-title {
  color: #01559a;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
  padding: 1em 0;
}
.read-title h3 {
  font-size: 3em;
  margin: 0 0 0.5em;
}
#company .read-title h3 {
  font-size: 2.5em;
}
.sec-title {
  font-size: 2em;
  line-height: 1.6;
  margin: 0.75em 0;
  font-weight: bold;
  font-weight: 700;
}
h3.content-title {
  font-size: 2.5em;
  line-height: 1.45;
  margin: 0 0 0.5em;
}
h4.sub-content-title {
  font-size: 1.625em;
  margin-bottom: 2em;
  position: relative;
}

h4.sub-content-title::after {
  position: absolute;
  content: "";
  width: 3em;
  height: 2px;
  bottom: -0.5em;
  left: 0;
  background: linear-gradient(180deg, #14b1fc 0%, #0172cf 100%);
}
.sub-txt {
  vertical-align: sub;
  font-size: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page-header .page-title {
    font-size: 1.125em;
  }
  .read-title h3 {
    font-size: 1.6em;
  }
  .sec-title {
    font-size: 1.5em;
  }
  h3.content-title {
    font-size: 1.5em;
  }
  h4.sub-content-title {
    font-size: 1.25em;
  }
}
/*--------------------------------------

  リスト

---------------------------------------*/
section ul,
.entry-content ul {
  margin-left: 0;
  padding-left: 0;
}
section ul li,
.entry-content ul li {
  list-style-type: none;
  list-style-image: none;
  margin: 0.5em 0;
  position: relative;
  padding-left: 1.3em;
}
.entry-content ul li {
  margin: 1em 0;
  line-height: 1.75;
}
section ul li::after,
.entry-content ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  top: 0.6em;
  left: 0.3em;
  background: linear-gradient(135deg, #14b1fc 0%, #0172cf 100%);
  border-radius: 50%;
}
.entry-content ul li a {
  color: #0172cf;
}
ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
ol ol {
  padding-left: 1em;
}
ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin: 1em auto;
  line-height: 1.75;
}
ol li:before {
  counter-increment: item;
  content: counter(item) "";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
  padding-left: 0.25em;
  font-weight: bold;
  font-weight: 700;
  color: #01559a;
}
/*説明リスト*/
dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
dl dt {
  width: 30%;
  margin-right: 3%;
  color: #111111;
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  padding: 1em 1em;
  border-bottom: 1px solid #111111;
}
dl dd {
  width: 67%;
  color: #666666;
  padding: 1em 1em;
  margin: 0;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  dl dt {
    width: 100%;
    margin-right: 0;
    padding: 0.5em 1em 0;
    border-bottom: none;
  }
  dl dd {
    width: 100%;
    padding: 0.5em 1em;
    margin: 0;
    border-bottom: 1px solid #111111;
  }
}
/*--------------------------------------

  テーブル

---------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  margin-bottom: 0;
  line-height: 2;
}
table caption {
  text-align: left;
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  padding: 0.25em 1em;
  border-bottom: 1px solid #111111;
}
table th {
  text-align: left;
  font-size: 1em;
  font-weight: normal;
  padding: 1em;
  color: #666666;
  border-bottom: 1px solid #999999;
}
table th.caption {
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  border-bottom: none;
  position: relative;
  color: #111111;
  padding-right: 3em;
  white-space: nowrap;
}
table th.caption::after {
  position: absolute;
  content: "";
  width: calc(100% - 1.5em);
  height: 1px;
  background: #111111;
  left: 0;
  bottom: 0;
}
table td {
  text-align: left;
  font-size: 1em;
  font-weight: normal;
  padding: 1em;
  color: #666666;
  border-bottom: 1px solid #999999;
}
/*--------------------------------------

トップページ

---------------------------------------*/
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.bg_top-mv {
  width: 100%;
  height: 49.375vw;
  position: relative;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-delay: 2s;
}
.bg_top-mv .mv-title {
  text-align: center;
  position: absolute;
  content: "";
  width: 100%;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2em;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-delay: 3s;
  z-index: 5;
}
.bg_top-mv .mv-title img {
  width: 25em;
}
.bg_top-mv .mv-title p {
  font-size: 1.43em;
  font-weight: bold;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}
.bg_top-mv .mv-title p.sub-ttl {
  color: #111111;
  letter-spacing: 0.3em;
}
.bg_top-mv .mv-title p.discription {
  font-size: 0.875em;
  margin-top: 1.5em;
}
.bg_top-mv .mv-text {
  width: 41.5625em;
  padding: 1em 2em;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInL;
  animation-name: fadeInL;
  animation-delay: 5s;
  z-index: 10;
  opacity: 1;
}
.bg_top-mv .mv-text::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg_mv-text.svg");
  opacity: 0.7;
  z-index: -1;
}
.bg_top-mv .mv-text p.ttl {
  color: #fff;
  font-size: 1.375em;
  margin: 0 0 0.5em;
}
.bg_top-mv .mv-text p.discription {
  color: #fff;
  font-size: 0.875em;
  margin: 0;
}
#top-mv .bg-slide .slick-slide {
  position: absolute;
  content: "";
  width: 100%;
  height: 49.375vw;
  z-index: 1;
}
#top-mv .bg-slide .slick-slide.slide1 {
  background: url("../images/bg_top-mv.jpg") no-repeat;
  background-size: cover;
}
#top-mv .bg-slide .slick-slide.slide2 {
  background: url("../images/bg_top-mv_2.jpg") no-repeat;
  background-size: cover;
}
#top-mv .bg-slide .slick-slide.slide3 {
  background: url("../images/bg_top-mv_3.jpg") no-repeat;
  background-size: cover;
}
#top-mv .bg-slide .slick-slide.slide4 {
  background: url("../images/bg_top-mv_4.jpg") no-repeat;
  background-size: cover;
}
#top-mv .bg-slide .slick-slide.slide5 {
  background: url("../images/bg_top-mv_5.jpg") no-repeat;
  background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #top-mv .bg-slide .slick-slide.slide1 {
    background: url("../images/bg_top-mv@x2.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide2 {
    background: url("../images/bg_top-mv_2@x2.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide3 {
    background: url("../images/bg_top-mv_3@x2.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide4 {
    background: url("../images/bg_top-mv_4@x2.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide5 {
    background: url("../images/bg_top-mv_5@x2.jpg") no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1199px) {
  .bg_top-mv .mv-title img {
    width: 30vw;
  }
  .bg_top-mv .mv-title {
    top: 25%;
  }
}
@media screen and (max-width: 767px) {
  .bg_top-mv {
    height: 137.68vw;
  }
  .bg_top-mv .mv-title {
    position: absolute;
    content: "";
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: auto;
    margin-right: auto;
    padding: 2em 4.8vw;
  }
  .bg_top-mv .mv-title img {
    width: 68vw;
  }
  .bg_top-mv .mv-title p.sub-ttl {
    font-size: 1.25em;
    line-height: 2.15;
    letter-spacing: 0.15em;
  }
  .bg_top-mv .mv-title p.discription {
    text-align: left;
    letter-spacing: 0.155em;
    line-height: 2;
  }
  #top-mv .bg-slide .slick-slide {
    height: 137.68vw;
  }
  #top-mv .bg-slide .slick-slide.slide1 {
    background: url("../images/bg_top-mv_sp.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide2 {
    background: url("../images/bg_top-mv_sp_2.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide3 {
    background: url("../images/bg_top-mv_sp_3.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide4 {
    background: url("../images/bg_top-mv_sp_4.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide5 {
    background: url("../images/bg_top-mv_sp_5.jpg") no-repeat;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
  #top-mv .bg-slide .slick-slide.slide1 {
    background: url("../images/bg_top-mv_sp.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide2 {
    background: url("../images/bg_top-mv_sp_2.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide3 {
    background: url("../images/bg_top-mv_sp_3.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide4 {
    background: url("../images/bg_top-mv_sp_4.jpg") no-repeat;
    background-size: cover;
  }
  #top-mv .bg-slide .slick-slide.slide5 {
    background: url("../images/bg_top-mv_sp_5.jpg") no-repeat;
    background-size: cover;
  }
}

/* 新MV*/
.top-column {
  margin-top: -7rem;
}

@media screen and (max-width: 767px) {
  .top-column {
    margin-top: -10vw;
  }
}

/* BioPQQTMバイオピーキューキューについて　
-----------------------------------------------------------*/
#sec-about-biopqq {
  background: url("../images/content-bg.jpg") right bottom no-repeat;
  background-size: 826px 788px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #sec-about-biopqq {
    background: url("../images/content-bg@x2.jpg") right bottom no-repeat;
    background-size: 826px 788px;
  }
}
#sec-about-biopqq .col2-box .pic {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#sec-about-biopqq .col2-box .pic .eventTarget {
  opacity: 0;
}
#sec-about-biopqq .col2-box .pic .eventTarget.scrollin {
  -webkit-animation-name: fadeInUP;
  animation-name: fadeInUP;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
#sec-about-biopqq .text p {
  width: 36em;
  max-width: 100%;
  font-feature-settings: normal;
  line-height: 2.25;
}
#sec-about-biopqq .btn-area {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-left: -0.5em;
  margin-right: -0.5em;
}
#sec-about-biopqq .btn-area .btn-blue {
  margin: 0.5em;
}
@media screen and (max-width: 1199px) {
  #sec-about-biopqq .col2-box .text {
    width: 55%;
  }
  #sec-about-biopqq .col2-box .pic {
    width: 45%;
  }
}
@media screen and (max-width: 1023px) {
  #sec-about-biopqq {
    background: url("../images/content-bg@x2.jpg") right -5vw bottom -7vw
      no-repeat;
    background-size: 70vw auto;
  }
  #sec-about-biopqq .col2-box .text {
    width: 100%;
    order: 1;
  }
  #sec-about-biopqq .text p {
    width: 100%;
  }
  #sec-about-biopqq .col2-box .pic {
    width: 50%;
    order: 3;
    padding-left: 5em;
  }
  #sec-about-biopqq .btn-area {
    display: block;
    width: 50%;
    order: 2;
    margin: 0;
  }
  #sec-about-biopqq .btn-area .btn-blue {
    margin: 0.5em 0 1em;
    width: 100%;
  }
  #sec-about-biopqq .btn-area .btn-blue a {
    margin: 0;
    width: 20em;
    max-width: 90%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #sec-about-biopqq .col2-box .pic {
    padding-left: 1em;
    margin-right: -4.8vw;
    width: calc(50% + 4.8vw);
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 2) {
  #sec-about-biopqq {
    background: url("../images/content-bg@x2.jpg") right -5vw bottom -7vw
      no-repeat;
    background-size: 70vw auto;
  }
}
/* 私たちについて　
-----------------------------------------------------------*/
#sec-aboutus {
  padding-top: 120px;
  padding-bottom: 215px;
  background: url("../images/bg_sec-aboutus.jpg") center center no-repeat;
  background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #sec-aboutus {
    padding-top: 120px;
    padding-bottom: 215px;
    background: url("../images/bg_sec-aboutus@x2.jpg") center center no-repeat;
    background-size: cover;
  }
}
#sec-aboutus h3.content-title {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}
#sec-aboutus h3.content-title span {
  padding-right: 2em;
  display: inline-block;
}
#sec-aboutus p {
  font-size: 1.5em;
  line-height: 2.6;
}
@media screen and (max-width: 767px) {
  #sec-aboutus {
    padding-top: 12vw;
    padding-bottom: 12vw;
    background: url("../images/bg_sec-aboutus_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  #sec-aboutus h3.content-title {
    display: block;
    color: #fff;
    font-size: 1.75em;
    margin-bottom: 1em;
  }
  #sec-aboutus h3.content-title span {
    padding-right: 2em;
    display: block;
    margin-bottom: 1em;
  }
  #sec-aboutus h3.content-title img {
    max-width: 80vw;
  }
  #sec-aboutus p {
    font-size: 1.25em;
    line-height: 2;
    margin-bottom: 1em;
  }
}
.ttl-column {
  margin-bottom: 60px;
  text-align: center;
}
.ttl-column p.sub-title {
  margin: 1em auto;
  font-size: 1.125em;
  color: #666666;
}
.home .ttl-column {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl-column {
    max-width: 60vw;
    margin-bottom: 7.2vw;
    text-align: left;
  }
}
/* ニュース　
-----------------------------------------------------------*/
.news-wrap {
  display: block;
}
.news-wrap .news-list {
  width: 960px;
  max-width: 100%;
  margin: 2em auto;
  min-height: 15vw;
}
.home .news-wrap .news-list {
  min-height: auto;
}
.news-wrap .news-list .post-content {
  width: 100%;
  max-width: 100%;
  margin: 2em auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.news-wrap .news-list .post-content .date {
  font-size: 0.875em;
  color: #bbbbbb;
  width: 6em;
  margin-right: 2em;
  font-family: "Lato", sans-serif;
}
.news-wrap .news-list .post-content .cat {
  font-size: 0.875em;
  width: 8em;
  margin-right: 2em;
  color: #777777;
  font-weight: bold;
  font-weight: 700;
}
.news-wrap .news-list .post-content .cat a {
  position: relative;
  z-index: 2;
}
.news-wrap .news-list .post-content .post-ttl h4.entry-title {
  font-size: 1em;
  font-weight: normal;
  font-feature-settings: normal;
  margin: 0;
}
.news-wrap .news-list .post-content:hover .post-ttl h4.entry-title {
  color: #01559a;
}
@media screen and (max-width: 767px) {
  .news-wrap .title-box {
    width: 100%;
    max-width: 100%;
  }
  .news-wrap .news-list {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
  .news-wrap .news-list .post-content {
    width: 100%;
    max-width: 100%;
    margin: 4.8vw auto 4.8vw;
    display: flex;
    align-items: flex-start;
  }
  .news-wrap .news-list .post-content .thumbnail {
    width: 33.8vw;
    height: 22.46vw;
    margin-top: 0.5em;
    padding-bottom: inherit;
  }
  .news-wrap .news-list .post-content .text {
    width: calc(100% - 33.8vw);
    padding-left: 0.5em;
  }
  .news-wrap .news-list .post-content .post-ttl {
    width: 100%;
  }
  .news-wrap .news-list .post-content .post-ttl h4.entry-title {
    margin-top: 0.5em;
    font-size: 1em;
  }
}
/*--------------------------------------

  固定ページ　BioPQQとは

---------------------------------------*/
#about .bg_read {
  background: url("../images/content-bg2.jpg") right bottom no-repeat;
  background-size: 1034px 760px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #about .bg_read {
    background: url("../images/content-bg2@x2.jpg") right bottom no-repeat;
    background-size: 1034px 760px;
  }
}
#about #sec-read .text p {
  width: 36em;
  max-width: 100%;
  font-feature-settings: normal;
  line-height: 2.25;
}
#about #sec-foodin .text p {
  width: 36em;
  max-width: 100%;
  font-feature-settings: normal;
  line-height: 2.25;
}
#sec-foodin .col3-box {
  justify-content: space-between;
}
#sec-foodin .col3-box > div.table-box {
  width: 390px;
  max-width: 30%;
}
#sec-foodin .col3-box > div.table-box td {
  text-align: right;
}
#sec-foodin .bottom-text {
  font-size: 0.8125em;
  color: #777777;
  text-align: right;
}
.food-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.food-list .item {
  width: calc(100% / 3);
  padding: 1em;
  text-align: center;
}
.benefits-list {
  margin-top: 50px;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  #sec-read .col2-box {
    flex-wrap: wrap;
  }
  #sec-read .col2-box > div {
    width: 100%;
  }
  #about #sec-read .text p {
    width: 100%;
    max-width: 100%;
  }
  #about #sec-foodin .text p {
    width: 100%;
    max-width: 100%;
  }
  #sec-foodin .col3-box {
    flex-wrap: wrap;
  }
  #sec-foodin .col3-box > div.table-box {
    width: 48%;
    max-width: 48%;
    margin-bottom: 1em;
  }
  .food-list .item {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 767px) {
  #about .bg_read {
    background: url("../images/content-bg2.jpg") right bottom no-repeat;
    background-size: auto 85vw;
  }
  #about #sec-read .pic img {
    width: 83vw;
  }
  #sec-foodin .col3-box > div.table-box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2.5em;
  }
  #sec-foodin .bottom-text {
    font-size: 0.6875em;
  }
  .benefits-list {
    margin-top: 1.5em;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
/*　子ページリンク */
#sec-page-link {
  position: relative;
}
#sec-page-link::before,
#sec-page-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
  z-index: 2;
}
#sec-page-link .col2-box .inbox {
  height: 30vw;
  padding: 3em;
  position: relative;
}
#sec-page-link .col2-box .inbox > a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
#sec-page-link .col2-box .inbox p.blue-ttl {
  color: #01559a;
  font-size: 1.75em;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
#sec-page-link .col2-box .inbox .btn-blue2 span {
  font-size: 1em;
  padding: 0.75em 2.5em;
  color: #fff;
  display: inline-block;
  margin-top: 1em;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#sec-page-link .col2-box .inbox .btn-blue2 span::after {
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: linear-gradient(60deg, #14b1fc 0%, #0172cf 100%);
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#sec-page-link .col2-box .inbox:hover .btn-blue2 span {
  color: #01559a;
}
#sec-page-link .col2-box .inbox:hover .btn-blue2 span::after {
  width: 100%;
  height: 100%;
  color: #01559a;
  background: #fff;
  outline: 3px solid #14b1fc;
}
#sec-page-link .col2-box .inbox.biopqq {
  background: url("../images/bg_pagelink03.jpg") no-repeat;
  background-size: cover;
}
#sec-page-link .col2-box .inbox.benefits {
  background: url("../images/bg_pagelink01.jpg") no-repeat;
  background-size: cover;
}
#sec-page-link .col2-box .inbox.developement {
  background: url("../images/bg_pagelink02.jpg") no-repeat;
  background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #sec-page-link .col2-box .inbox.biopqq {
    background: url("../images/bg_pagelink03@x2.jpg") no-repeat;
    background-size: cover;
  }
  #sec-page-link .col2-box .inbox.benefits {
    background: url("../images/bg_pagelink01@x2.jpg") no-repeat;
    background-size: cover;
  }
  #sec-page-link .col2-box .inbox.developement {
    background: url("../images/bg_pagelink02@x2.jpg") no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  #sec-page-link .col2-box .inbox {
    padding: 1em;
  }
  #sec-page-link .col2-box .inbox p.blue-ttl {
    font-size: 0.875em;
  }
  #sec-page-link .col2-box .inbox .btn-blue2 {
    position: absolute;
    bottom: 0.5em;
    left: 1em;
  }
  #sec-page-link .col2-box .inbox .btn-blue2 span {
    font-size: 0.7em;
    padding: 0.5em;
    white-space: nowrap;
  }
  #sec-page-link.mt100 {
    margin-top: 0;
  }
}
/*--------------------------------------

  固定ページ　BioPQQの有効性・特性

---------------------------------------*/
#validity .bg_read {
  background: url("../images/img_benefits-of-biopqq01.png") right top no-repeat,
    url("../images/content-bg2.jpg") right bottom no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #validity .bg_read {
    background: url("../images/img_benefits-of-biopqq01@x2.png") right top
        no-repeat,
      url("../images/content-bg2@x2.jpg") right bottom no-repeat;
  }
}
#validity .bg_read .text {
  width: 750px;
  max-width: 55%;
}
#validity .bg_read .text p {
  width: 42em;
  max-width: 100%;
}
#validity #point-wrap {
  width: 750px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#point-wrap .num-tag {
  width: 120px;
  font-size: 0.875em;
  padding: 0.5em;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
  margin-top: 60px;
}
#point-wrap h4 {
  font-size: 1.75rem;
  color: #01559a;
  margin-bottom: 1.5em;
  position: relative;
}
#point-wrap h4::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.75em;
  width: 3em;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
#point-wrap .point1 {
  width: 100%;
}
#point-wrap .point p {
  line-height: 2.25;
}
#point-wrap .point1 p {
  width: 40em;
  max-width: 100%;
}
#point-wrap .point2 {
  width: 47%;
}
#point-wrap .point3 {
  width: 44%;
}
#sec-mitochondoria .box1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#sec-mitochondoria .box1 .pic {
  width: 600px;
  max-width: 40%;
  text-align: center;
  margin-right: 5%;
  padding: 2em;
}
#sec-mitochondoria .box1 .text {
  width: 700px;
  max-width: 60%;
  padding: 2em;
}
#sec-mitochondoria .box2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#sec-mitochondoria .box2::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 150%;
  background: url("../images/bg_sec-mitochondoria.svg") center center no-repeat;
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#sec-mitochondoria .box2 .pic {
  width: 550px;
  max-width: 40%;
  text-align: center;
  margin-right: 3.3%;
  padding: 2em;
  z-index: 2;
}
#sec-mitochondoria .box2 .text {
  width: 750px;
  max-width: 60%;
  padding: 2em;
  z-index: 2;
}
#sec-mitochondoria .box3 {
  width: 1600px;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
}
#sec-mitochondoria .box3 .pic {
  width: 732px;
  max-width: 45.75%;
  text-align: right;
  z-index: 0;
}
#sec-mitochondoria .box3 .text {
  width: 700px;
  max-width: 54.375%;
  padding: 2em 2em 0 3em;
  z-index: 2;
}
#sec-mitochondoria .box3 .text p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1599px) {
  #validity .bg_read {
    background: url("../images/img_benefits-of-biopqq01.png") right top
        no-repeat,
      url("../images/content-bg2@x2.jpg") right bottom no-repeat;
    background-size: 43.75vw 57.125vw, 1034px 760px;
  }
}
@media screen and (max-width: 767px) {
  #validity #sec-read.pb100 {
    padding-bottom: 160vw;
  }
  #validity .bg_read {
    background: url("../images/img_benefits-of-biopqq01.png") right bottom 22vw
        no-repeat,
      url("../images/content-bg2.jpg") right bottom no-repeat;
    background-size: 102vw auto, 163vw 119vw;
  }
  #validity .bg_read .text {
    width: 100%;
    max-width: 100%;
  }
  #validity .bg_read .text p {
    width: 100%;
  }
  #validity #point-wrap {
    width: 100%;
  }
  #point-wrap .num-tag {
    width: 28.98vw;
    margin-top: 2.5em;
  }
  #point-wrap h4 {
    font-size: 1.375em;
  }
  #point-wrap h4::after {
    width: 3.5em;
  }
  #point-wrap .point1 {
    width: 100%;
  }
  #point-wrap .point1 p {
    width: 100%;
    max-width: 100%;
  }
  #point-wrap .point2 {
    width: 100%;
  }
  #point-wrap .point3 {
    width: 100%;
  }
  #sec-mitochondoria .box1 {
    flex-direction: column;
  }
  #sec-mitochondoria .box1 .pic {
    width: 100%;
    max-width: 100%;
    text-align: center;
    order: 1;
    margin-right: 0;
    padding-bottom: 0;
  }
  #sec-mitochondoria .box1 .text {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    order: 2;
  }
  #sec-mitochondoria .box2 {
    flex-direction: column;
  }
  #sec-mitochondoria .box2::after {
    width: 100%;
    height: 100%;
    background: url("../images/bg_sec-mitochondoria_sp.svg") center top
      no-repeat;
    background-size: 100% 100%;
  }
  #sec-mitochondoria .box2 .pic {
    width: 100%;
    max-width: 64%;
    text-align: center;
    margin-right: 0;
    padding-bottom: 0;
    order: 1;
  }
  #sec-mitochondoria .box2 .text {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 3em;
    z-index: 2;
    order: 2;
  }
  #sec-mitochondoria .box3 {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    margin-top: -15vw;
  }
  #sec-mitochondoria .box3 .pic {
    width: 100%;
    max-width: 100%;
    text-align: center;
    z-index: 0;
    order: 1;
  }
  #sec-mitochondoria .box3 .text {
    width: 100%;
    max-width: 100%;
    padding: 0 2em 2em;
    z-index: 2;
    order: 2;
  }
  #sec-mitochondoria .box3 .text p:last-of-type {
    margin-bottom: 0;
  }
}
/* 期待できる効果 */
#sec-benefits-of-biopqq {
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5);
  position: relative;
}
#sec-benefits-of-biopqq::after {
  width: 1px;
  height: 170px;
  background: #666666;
  position: absolute;
  content: "";
  display: block;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
}
#sec-benefits-of-biopqq .top-text p.ttl {
  font-size: 2em;
  line-height: 1.4375;
  color: #111111;
}
#sec-benefits-of-biopqq .top-text p.sub-ttl {
  font-size: 1.75em;
  font-weight: bold;
  font-weight: 700;
  color: #111111;
}
.benefits-wrap .thumbnail-list {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.benefits-wrap .thumbnail-list .in_item {
  width: 157px;
  height: 157px;
  position: relative;
  margin: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.benefits-wrap .thumbnail-list .in_item::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.benefits-wrap .thumbnail-list .in_item::after {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(20, 177, 252, 0.3) 0%,
    rgba(1, 114, 207, 0.3) 100%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.benefits-wrap .thumbnail-list .in_item.thumbnail-current::after {
  background: linear-gradient(
    180deg,
    rgba(20, 177, 252, 1) 0%,
    rgba(1, 114, 207, 1) 100%
  );
}
.benefits-wrap .thumbnail-list .in_item p.num {
  font-family: "Lato", sans-serif;
  color: #bbbbbb;
  font-size: 1.625em;
  margin: 0;
  line-height: 1;
  z-index: 3;
}
.benefits-wrap .thumbnail-list .in_item p.ttl {
  color: rgba(1, 85, 154, 0.7);
  font-size: 1.125em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  z-index: 3;
}
.benefits-wrap .thumbnail-list .in_item.thumbnail-current p.ttl {
  color: rgba(1, 85, 154, 1);
}
.benefits-wrap .bottom-text {
  font-size: 0.875em;
  color: #999999;
  margin: 0.5em 0;
}
@media screen and (max-width: 1199px) {
  .benefits-wrap .thumbnail-list .in_item {
    width: 150px;
    height: 150px;
    margin: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .benefits-wrap .thumbnail-list .in_item {
    width: 15vw;
    height: 15vw;
    position: relative;
    margin: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  #sec-benefits-of-biopqq::after {
    height: 18.84vw;
    top: -9.42vw;
  }
  #sec-benefits-of-biopqq .top-text p.ttl {
    font-size: 1.5em;
    line-height: 1.45;
    margin-bottom: 1em;
  }
  #sec-benefits-of-biopqq .top-text p.sub-ttl {
    font-size: 1.25em;
    margin-bottom: 1em;
  }
  .benefits-wrap .thumbnail-list {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 5.3vw;
    margin-left: -4.8vw;
    margin-right: -4.8vw;
  }
  .benefits-wrap .thumbnail-list .in_item {
    width: 35vw;
    height: 17.87vw;
    margin: 1.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    border-radius: 2.4vw;
    border: 2px solid rgba(20, 177, 252, 0.7);
    position: relative;
  }
  .benefits-wrap .thumbnail-list .in_item::before {
    content: none;
  }
  .benefits-wrap .thumbnail-list .in_item::after {
    content: none;
  }
  .benefits-wrap .thumbnail-list .in_item.thumbnail-current {
    border: 2px solid rgba(20, 177, 252, 1);
  }
  .benefits-wrap .thumbnail-list .in_item p.num {
    font-size: 0.875em;
    text-align: left;
    position: absolute;
    top: 0.25em;
    left: 0.25em;
  }
  .benefits-wrap .thumbnail-list .in_item p.ttl {
    color: rgba(1, 85, 154, 0.7);
    font-size: 1em;
  }
  .benefits-wrap .mainImage {
    margin-left: -4.8vw;
    margin-right: -4.8vw;
  }
  .benefits-wrap .bottom-text {
    font-size: 0.75em;
    padding-left: 4.8vw;
    padding-right: 4.8vw;
  }
}
/*--------------------------------------

  固定ページ　BioPQQの開発・研究の歴史

---------------------------------------*/
#developement .bg_read {
  background: url("../images/img_developement-read.jpg") right top no-repeat;
  background-size: auto 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #developement .bg_read {
    background: url("../images/img_developement-read@x2.jpg") right top
      no-repeat;
    background-size: auto 100%;
  }
}
#developement #sec-read {
  height: 760px;
}
#developement #sec-read .text {
  width: 750px;
  max-width: 100%;
}
#developement #sec-read .text p {
  width: 36em;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  #developement .bg_read {
    background: url("../images/img_developement-read.jpg") right bottom
      no-repeat;
    background-size: 100% auto;
  }
  #developement #sec-read {
    height: auto;
    padding-bottom: 63.285vw;
  }
}
#sec-test {
  background: url("../images/content-bg3.png") right bottom 80px no-repeat,
    linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #sec-test {
    background: url("../images/content-bg3@x2.png") right bottom 80px no-repeat,
      linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    background-size: 1034px 760px, 100%;
  }
}
#sec-test .fbox {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
}
#sec-test .fbox .inbox {
  width: 640px;
  max-width: calc(100% / 2 - 1.875em);
  margin: 0.9375em;
}
#sec-test .fbox .inbox.bg_white {
  padding: 2.5em;
}
#sec-test .sub-content-title {
  margin-top: 0;
}
#sec-test .fbox .inbox.box1 p {
  margin-top: 0;
  width: 36em;
  max-width: 100%;
}
#sec-test table th {
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  #sec-test .fbox {
    margin-left: auto;
    margin-right: auto;
  }
  #sec-test .fbox .inbox {
    width: 100%;
    max-width: 100%;
    margin: 0.9375em auto;
  }
}
@media screen and (max-width: 767px) {
  #sec-test {
    background: url("../images/content-bg3.png") right bottom 0 no-repeat,
      linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    background-size: 100% auto, 100%;
  }
  #sec-test .fbox .inbox.box1 {
    order: 1;
  }
  #sec-test .fbox .inbox.box2 {
    order: 3;
  }
  #sec-test .fbox .inbox.box3 {
    order: 2;
  }
  #sec-test .fbox .inbox.box4 {
    order: 4;
  }
  #sec-test .fbox .inbox.bg_white {
    padding: 1.25em;
  }
  #sec-test .fbox .inbox table {
    font-size: 0.875em;
  }
  #sec-test .fbox .inbox table th {
    width: 100%;
    max-width: 100%;
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
  #sec-test .fbox .inbox table td {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .scroll-box {
    position: relative;
    width: 90.4vw;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    margin-left: auto;
    margin-right: auto;
  }
  .scroll-box table {
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-scrolling: touch; /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch;
  }
}
/* 臨床実験 */
.trial-wrap {
  padding: 3.75em 3.75em 1em;
  margin: 0 auto;
  background: #fff;
  border: 6px solid #ebedf2;
  border-bottom: none;
}
.trial-wrap:last-of-type {
  border-bottom: 6px solid #ebedf2;
}
.trial-wrap .fbox {
  display: flex;
  justify-content: space-between;
}
.trial-wrap .fbox:not(:last-of-type) {
  margin-bottom: 140px;
}
.trial-wrap .fbox .text {
  min-width: 425px;
  width: 50%;
}
.trial-wrap .fbox .text-s {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.trial-wrap .fbox .text ul {
  font-size: 0.875em;
  color: #666666;
}
.trial-wrap .fbox .text h4,
.trial-wrap .fbox .text-s h4 {
  margin-top: 0;
}
.trial-wrap .text h4 span,
.trial-wrap .fbox .text-s h4 span {
  font-size: 0.7em;
  color: #01559a;
  display: block;
}
.trial-wrap .fbox .pic {
  width: 530px;
  max-width: 45%;
  text-align: center;
}
.trial-wrap .fbox .pic-s {
  width: 618px;
  max-width: 55%;
  text-align: center;
}
.trial-wrap .glaph {
  background: #fff;
  padding: 30px;
  text-align: center;
  margin-bottom: 1em;
  margin-bottom: 0.5em;
  position: relative;
}
.trial-wrap .glaph .text {
  text-align: left;
  padding-left: 2em;
}
.trial-wrap .glaph-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.trial-wrap .glaph-flex img {
  margin-bottom: 1em;
}
h5.result {
  font-size: 1.125em;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
h5.result::after {
  display: flex;
  align-items: center;
  border-top: 1px solid #c4c4c4;
  content: "";
  flex-grow: 1;
  margin-left: 1em;
}
.test-ttl {
  font-size: 1.25em;
  font-weight: bold;
  font-weight: 700;
  padding: 0.25em 0;
}
.test-ttl span {
  display: inline-block;
  border-bottom: 1px solid #111111;
}
.trial-wrap p.small {
  font-size: 0.8125em;
  line-height: 1.7;
}

.glaph-caption {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .trial-wrap .fbox {
    flex-wrap: wrap;
  }
  .trial-wrap .fbox .text,
  .trial-wrap .fbox .text-s {
    width: 100%;
    max-width: 100%;
  }
  .trial-wrap .fbox .pic,
  .trial-wrap .fbox .pic-s {
    width: 100%;
    max-width: 100%;
  }
  .trial-wrap .glaph-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .trial-wrap {
    padding: 1.25em;
    margin: 0 auto;
  }
  .trial-wrap .fbox .text {
    min-width: inherit;
  }
  .trial-wrap .glaph {
    padding: 3vw;
    margin-top: 0;
  }
  .trial-wrap .glaph .text {
    padding-left: 0;
  }
  .glaph-caption {
    position: relative;
    right: inherit;
    bottom: inherit;
  }
}
/*--------------------------------------

  固定ページ　私たちについて

---------------------------------------*/
#company .bg_read {
  background: url("../images/img_aboutus-read.jpg") center top no-repeat;
  background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #company .bg_read {
    background: url("../images/img_aboutus-read@x2.jpg") center top no-repeat;
    background-size: cover;
  }
}
#company #sec-read {
  height: 770px;
}
#company #sec-read .text {
  width: 750px;
  max-width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #company .bg_read {
    background: url("../images/img_aboutus-read_sp.jpg") right bottom no-repeat;
    background-size: cover;
  }
  #company #sec-read {
    height: 120vw;
  }
  #company #sec-read .text {
    width: 100%;
    max-width: 100%;
    margin-top: 1em;
  }
  #company #sec-read .page-header .page-title {
    color: #fff;
  }
  #company .read-title h3 {
    font-size: 1.5em;
    line-height: 2;
    letter-spacing: 0.2em;
  }
}
#sec-about-company .logo {
  margin-bottom: 60px;
}
#sec-about-company .text {
  width: 750px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25em;
  line-height: 2.4;
  color: #666666;
}
@media screen and (max-width: 767px) {
  #sec-about-company .logo {
    margin-bottom: 1em;
    width: 77.3vw;
    margin-left: auto;
    margin-right: auto;
  }
}
/* 会社概要 */
#sec-profile .btn-link {
  text-align: right;
  margin-bottom: 2em;
  margin-top: -3em;
}
#sec-profile .btn-link a {
  font-size: 0.875em;
  font-weight: bold;
  font-weight: 700;
  color: #4b4b4b;
  padding: 1em 0.5em 1em 1.5em;
  line-height: 1.25;
  background: url("../images/icon_link.svg") center left no-repeat;
  background-size: 1.25em auto;
}
#sec-profile table th.caption {
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  border-bottom: none;
  position: relative;
  color: #111111;
  padding-right: 2em;
  white-space: nowrap;
}
#sec-profile table th.caption::after {
  position: absolute;
  content: "";
  width: calc(100% - 1.5em);
  height: 1px;
  background: #111111;
  left: 0;
  bottom: 0;
}
#sec-profile table td {
  text-align: left;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  #sec-profile .btn-link {
    text-align: left;
    margin-bottom: 2em;
    margin-top: 0.5em;
  }
  #sec-profile table th.caption {
    padding-right: 1em;
    width: 100%;
    display: block;
    padding: 1em 1em 0;
    letter-spacing: 0.1em;
  }
  #sec-profile table th.caption::after {
    content: none;
  }
  #sec-profile table td {
    width: 100%;
    display: block;
    letter-spacing: 0.1em;
  }
}
/* アクセス */
.gmap {
  width: 100%;
  max-width: 100%;
  height: 540px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: 40px;
}
.gmap iframe {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
/*--------------------------------------

  固定ページ　製品

---------------------------------------*/
#products .bg_read {
  background: url("../images/img_product01.jpg") right top no-repeat;
  background-size: auto 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #products .bg_read {
    background: url("../images/img_product01@x2.jpg") right top no-repeat;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 1325px) {
  #products .bg_read {
    background: url("../images/img_product01.jpg") right top no-repeat;
    background-size: auto 80%;
  }
}
@media screen and (max-width: 1190px) {
  #products .bg_read {
    background: url("../images/img_product01.jpg") right top no-repeat;
    background-size: auto 70%;
  }
}
@media screen and (max-width: 1100px) {
  #products .bg_read {
    background: url("../images/img_product01.jpg") right top no-repeat;
    background-size: auto 60%;
  }
}
#products #sec-read {
  height: 770px;
}
#products #sec-read .text {
  width: 550px;
  max-width: 100%;
}
#products #sec-read .text p {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  #products .bg_read {
    background: url("../images/img_product01.jpg") right bottom no-repeat;
    background-size: 100% auto;
  }
  #products #sec-read {
    height: auto;
    padding-bottom: 63.285vw;
  }
}
/* 製品について */
#sec-about-products {
  background: linear-gradient(to right bottom, #ffffff 0%, #e5e5e5 100%);
}

#sec-about-products .fbox {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
}
#sec-about-products .fbox .inbox {
  width: 640px;
  max-width: calc(100% / 2 - 1.875em);
  margin: 0.9375em;
}
#sec-about-products .fbox .inbox.bg_white {
  padding: 2em;
}
#sec-about-products .sub-content-title {
  margin-top: 0;
}
#sec-about-products .fbox .inbox.box1 p {
  margin-top: 0;
  width: 36em;
  max-width: 100%;
}
#sec-about-products table th {
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  #sec-about-products .fbox {
    margin-left: auto;
    margin-right: auto;
  }
  #sec-about-products .fbox .inbox {
    width: 100%;
    max-width: 100%;
    margin: 0.9375em auto;
  }
}
@media screen and (max-width: 767px) {
  #sec-about-products {
    background: url("../images/content-bg3.png") right bottom 0 no-repeat,
      linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    background-size: 100% auto, 100%;
  }
  #sec-about-products .fbox .inbox.box1 {
    order: 1;
  }
  #sec-about-products .fbox .inbox.box2 {
    order: 3;
  }
  #sec-about-products .fbox .inbox.box3 {
    order: 2;
  }
  #sec-about-products .fbox .inbox.box4 {
    order: 4;
  }
  #sec-about-products .fbox .inbox.bg_white {
    padding: 1.25em;
  }
  #sec-about-products .fbox .inbox table {
    font-size: 0.875em;
  }
  #sec-about-products .fbox .inbox table th {
    width: 100%;
    max-width: 100%;
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
  #sec-about-products .fbox .inbox table td {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
  }
}

/* 製品規格 */
#sec-food-standard table th.caption {
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  border-bottom: none;
  position: relative;
  color: #111111;
}
#sec-food-standard table th.caption::after {
  position: absolute;
  content: "";
  width: calc(100% - 1.5em);
  height: 1px;
  background: #111111;
  left: 0;
  bottom: 0;
}
#sec-food-standard table tr th.caption:last-of-type::after {
  width: 100%;
}
#sec-food-standard table tr td {
  text-align: left;
}

.products-wrap {
  width: 1600px;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
}
.products-wrap .pic {
  width: 320px;
  max-width: 17%;
  margin: 2.5em 1em 2.5em 0;
}
.products-wrap .fbox {
  width: 1080px;
  max-width: 85%;
  margin: 1.5em 2.5em;
  display: flex;
  flex-wrap: wrap;
}
.products-wrap .fbox h4.sub-content-title {
  margin-top: 0;
}
.products-wrap .fbox .inbox {
  padding: 2em;
  margin: 1.25em;
}
.products-wrap .fbox .inbox:nth-of-type(odd) {
  width: 430px;
  max-width: calc(45% - 2.5em);
}
.products-wrap .fbox .inbox:nth-of-type(even) {
  width: 565px;
  max-width: calc(55% - 2.5em);
}
.products-wrap .fbox .inbox table td {
  text-align: left;
}
.products-wrap .fbox .inbox table th {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .products-wrap {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .products-wrap .pic {
    width: 156px;
    max-width: 37.68%;
    margin: 2.5em auto;
  }
  .products-wrap .fbox {
    width: 100%;
    max-width: 100%;
    margin: 1.5em auto;
  }
  .products-wrap .fbox .inbox {
    padding: 1.25em;
    margin: 0.625em auto;
  }
  .products-wrap .fbox .inbox:nth-of-type(odd) {
    width: 100%;
    max-width: 100%;
  }
  .products-wrap .fbox .inbox:nth-of-type(even) {
    width: 100%;
    max-width: 100%;
  }
}
/* お取引企業 */
.partners-company {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-company div {
  width: 25%;
  padding: 1em;
  margin: 1em auto;
  text-align: center;
}
.partners-company div a:hover img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .partners-company div {
    width: 100%;
  }
}
/*--------------------------------------

  固定ページ　研究成果

---------------------------------------*/
#clinicaltrial .bg_read {
  background: url("../images/img_clinical-study-read.jpg") right top no-repeat;
  background-size: auto 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #clinicaltrial .bg_read {
    background: url("../images/img_clinical-study-read@x2.jpg") right top
      no-repeat;
    background-size: auto 100%;
  }
}
#clinicaltrial #sec-read {
  height: 770px;
}
#clinicaltrial #sec-read .text {
  width: 800px;
  max-width: 100%;
}
#clinicaltrial #sec-read .text p {
  width: 49em;
  max-width: 100%;
}

#clinicaltrial {
  counter-reset: rank 0;
}
#clinicaltrial .content-title {
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
#clinicaltrial .content-title::before {
  counter-increment: rank;
  content: counter(rank);
  font-size: 1.2em;
  color: #01559a;
  display: block;
  position: absolute;
  left: 0;
  top: -0.1em;
}

#clinicaltrial .pic,
#clinicaltrial .pic-s {
  background: #fff;
}
#clinicaltrial p.notice {
  font-size: 0.8125em;
  line-height: 1.5;
  color: #777777;
  text-align: right;
}
#clinicaltrial .fbox .text p.notice {
  text-align: left;
}

#clinicaltrial .pagenavi {
  border-top: 1px solid #e1ecf5;
}
#clinicaltrial .pagenavi ol {
  display: flex;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0;
}
#clinicaltrial .pagenavi ol li {
  position: relative;
}
#clinicaltrial .pagenavi ol li:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #01559a;
  border-right: solid 1px #01559a;
  position: absolute;
  right: -1.5em;
  top: 8px;
  transform: rotate(135deg);
}

#sec-clinical-trial:nth-of-type(even) {
  background: #ebedf2;
}

@media screen and (max-width: 767px) {
  #clinicaltrial .bg_read {
    background: url("../images/img_clinical-study-read.jpg") right bottom
      no-repeat;
    background-size: 100% auto;
  }
  #clinicaltrial #sec-read {
    height: auto;
    padding-bottom: 63.285vw;
  }
  #clinicaltrial .pagenavi ol {
    flex-wrap: wrap;
  }
  #clinicaltrial .pagenavi ol li {
    margin: 0.5em 2em 0.5em 0;
  }
  #clinicaltrial p.notice {
    text-align: left;
  }
}
#sec-download {
  background: linear-gradient(to right bottom, #fff 0%, #e5e5e5 100%);
}
#sec-download p.notice {
  text-align: right;
  font-size: 0.8125em;
  color: #777777;
  margin-bottom: 0.5em;
}
#sec-download .fbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sec-download .fbox .inbox {
  width: calc(100% / 2 - 1.25em);
  padding: 1.25em;
  margin: 1.25em 0;
  display: flex;
  justify-content: space-between;
}
#sec-download .fbox .inbox h4.sub-content-title {
  margin-top: 0;
  margin-bottom: 1.5em;
}
#sec-download .fbox .inbox .pic {
  width: 46%;
  padding: 1.25em;
  text-align: left;
}
#sec-download .fbox .inbox .text {
  width: 54%;
  padding: 1.25em 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#sec-download .btn-download {
  margin-top: auto;
  color: #01559a;
  font-weight: bold;
  font-weight: 700;
}
#sec-download .btn-download a {
  padding-right: 1.5em;
  line-height: 1.5;
  background: url("../images/icon_pdf.png") right center no-repeat;
  background-size: 1.5em 1.5em;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #sec-download .btn-download a {
    padding-right: 1.5em;
    line-height: 1.5;
    background: url("../images/icon_pdf@x2.png") right center no-repeat;
    background-size: 1.5em 1.5em;
  }
}
@media screen and (max-width: 1024px) {
  #sec-download .fbox .inbox {
    flex-wrap: wrap;
  }
  #sec-download .fbox .inbox .pic {
    width: 100%;
  }
  #sec-download .fbox .inbox .text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #sec-download .fbox .inbox {
    width: 100%;
    padding: 1.25em;
    margin: 1.25em 0;
    display: flex;
    justify-content: space-between;
  }
}
/*--------------------------------------

  BioPQQ Column 記事一覧リスト

---------------------------------------*/
.column-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.column-list .post-content {
  width: 420px;
  max-width: calc(100% / 3 - 20px);
  margin: 10px 10px 80px;
  position: relative;
  transition: 0.3s;
}
.column-list .post-content:hover {
  transform: scale(1.02);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}
.column-list .post-content .thumbnail {
  position: relative;
  margin-bottom: 0.5em;
  width: 100%;
  height: 0;
  padding-bottom: 67.14%;
}
.column-list .post-content .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
  vertical-align: middle;
}
.column-list .post-content .cat {
  font-size: 0.875em;
  color: #666666;
  position: relative;
  margin-bottom: 2em;
  z-index: 2;
}
.column-list .post-content .cat::after {
  position: absolute;
  content: "";
  bottom: -1em;
  left: 0;
  width: 1.15em;
  height: 2px;
  background: #01559a;
}

.column-list .post-content h4.entry-title {
  font-size: 1em;
  font-weight: 700;
  padding-right: 2em;
  font-feature-settings: normal;
  margin: 0.5em 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
  overflow: hidden;
}
.column-list .post-content h4.entry-title:hover {
  color: #01559a;
}

.column-list .post-content p.date {
  font-size: 0.875em;
  color: #aaaaaa;
  margin: 0.5em 0;
  font-family: "Lato", sans-serif;
}

.column-list .post-content .text {
  padding: 1em;
}

/* タグ共通 */
.tag {
  position: relative;
  z-index: 1;
}
.tag a {
  font-size: 0.75em;
  color: #666;
  background: #f2f3f6;
  border: 1px solid #d8dce9;
  border-radius: 3px;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
  padding: 0.3em 0.5em;
  display: inline-block;
}
.tag a:hover {
  color: #01559a;
  border: 1px solid #01559a;
}

@media screen and (max-width: 767px) {
  .column-list {
    display: block;
    margin-left: -4.8vw;
    margin-right: -4.8vw;
  }
  .column-list {
    margin-left: auto;
    margin-right: auto;
  }
  .column-list .post-content h4.entry-title {
    -webkit-line-clamp: 2;
    height: 3em;
    font-size: 0.8em;
  }
  .column-list .post-content {
    width: 100%;
    max-width: 100%;
    margin: 2.4vw 0 20vw;
  }
}
/*--------------------------------------

  ページフッター　関連記事

---------------------------------------*/
.related-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.related-list .post-content {
  width: 420px;
  max-width: calc(100% / 3 - 20px);
  margin: 10px;
  position: relative;
}
.related-list .post-content .thumbnail {
  position: relative;
  margin-bottom: 0.5em;
  width: 100%;
  height: 0;
  padding-bottom: 67.14%;
}
.related-list .post-content .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
  vertical-align: middle;
}
.related-list .post-content .cat {
  font-size: 0.875em;
  color: #666666;
  position: relative;
  margin-bottom: 2em;
  z-index: 2;
}
.related-list .post-content .cat::after {
  position: absolute;
  content: "";
  bottom: -1em;
  left: 0;
  width: 1.15em;
  height: 2px;
  background: #01559a;
}
.related-list .post-content h4.entry-title {
  font-size: 0.8em;
  font-weight: normal;
  padding-right: 2em;
  font-feature-settings: normal;
  margin: 0.5em 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
  overflow: hidden;
}
.related-list .post-content p.date {
  font-size: 0.875em;
  color: #aaaaaa;
  margin: 0.5em 0;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
  .related-list {
    display: block;
    margin-left: -4.8vw;
    margin-right: -4.8vw;
    height: 94vw;
  }
  .related-list .post-content h4.entry-title {
    -webkit-line-clamp: 3;
    height: 4.5em;
  }
  .related-list .post-content {
    width: 100%;
    max-width: 100%;
    margin: 2.4vw;
  }
}
/*--------------------------------------

  BioPQQ Column TOP 記事一覧リスト

---------------------------------------*/
#column .column-list {
  margin-left: auto;
  margin-right: auto;
}
#column .column-list .post-content {
  margin-bottom: 5em;
}

#column .column-list .post-content .text {
  padding: 1em;
}
/*TOP 遅延表示*/
.home #sec-column .related-list .para-fade {
  opacity: 0;
}
.home #sec-column .related-list .para-fade.scrollin:first-child {
  -webkit-animation-name: fadeInUP;
  animation-name: fadeInUP;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.home #sec-column .related-list .para-fade.scrollin:nth-child(2) {
  -webkit-animation-name: fadeInUP;
  animation-name: fadeInUP;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.home #sec-column .related-list .para-fade.scrollin:nth-child(3) {
  -webkit-animation-name: fadeInUP;
  animation-name: fadeInUP;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  #column #sec-column.pt80 {
    padding-top: 0;
  }
  #column #sec-column.pb50 {
    padding-bottom: 0;
  }
  #column .column-list .post-content {
    display: flex;
    margin-bottom: 1.5em;
  }
  #column .column-list .post-content .thumbnail {
    display: flex;
    width: 33.8vw;
    height: 22.46vw;
    padding-bottom: inherit;
  }
  #column .column-list .post-content .text {
    width: calc(100% - 33.8vw);
    padding: 0;
    padding-left: 1em;
  }
  #column .column-list .post-content h4.entry-title {
    padding-top: 0;
    padding-right: 0;
  }
  .home #sec-column .related-list .para-fade {
    opacity: 1;
  }
  .home #sec-column .related-list .para-fade.scrollin:first-child {
    animation: none;
  }
  .home #sec-column .related-list .para-fade.scrollin:nth-child(2) {
    animation: none;
  }
  .home #sec-column .related-list .para-fade.scrollin:nth-child(3) {
    animation: none;
  }
}
/*--------------------------------------

  検索ボックス

---------------------------------------*/
#error404 #searchform {
  width: 205px;
  margin: 1.25em 0 5em;
  position: static;
}
#searchform {
  width: 205px;
  position: absolute;
  right: 0;
  margin: 1em 1.5em;
}
.searcharea {
  width: 100%;
  position: relative;
}
.searcharea .box {
  width: 100%;
  position: relative;
  padding: 0.25em 2.5em 0.25em 1em;
  border-radius: 2em;
  line-height: 2;
}
.searcharea #searchsubmit {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/icon_search.svg") center center no-repeat;
  background-size: 1.5em 1.5em;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .searcharea #searchsubmit {
    background-size: 1.5em 1.5em;
    line-height: 1.5;
    right: 0.75em;
  }
}
/*--------------------------------------

  ページネーション

---------------------------------------*/
.pagenation {
  font-family: "Lato", sans-serif;
  padding: 0 1em 5em;
  text-align: center;
  color: #bbbbbb;
}
.pagenation .page-numbers {
  padding: 0.5em 0.5em 0;
  display: inline-block;
  margin: 1em 0;
}
.pagenation .page-numbers:hover {
  color: #01559a;
}
.pagenation .page-numbers.current {
  color: #01559a;
  position: relative;
}
.pagenation .page-numbers.current::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.25em;
  width: calc(100% - 1em);
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
@media screen and (max-width: 767px) {
  .pagenation {
    padding: 1.5em 1em;
  }
}
/*--------------------------------------

  ニュースTOP/アーカイブ

---------------------------------------*/
.post-list {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.post-list .post-content {
  display: flex;
  margin: 3.5em auto;
  transition: 0.3s;
}
.post-list .post-content:hover {
  transform: scale(1.02);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.post-list .post-content .thumbnail {
  width: 215px;
  height: 141px;
}
.post-list .post-content .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;"; /* IE対策 */
}
.post-list .post-content .text {
  width: calc(100% - 215px);
  padding-left: 1.5em;
}
.post-list .post-content .text .cat {
  font-size: 0.875em;
  color: #bbbbbb;
  font-weight: bold;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.post-list .post-content .text h4.entry-title {
  font-size: 1em;
  font-weight: normal;
  margin: 0.5em auto 1em;
}
.post-list .post-content .text .date {
  font-size: 0.875em;
  color: #999999;
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .post-list .post-content .thumbnail {
    width: 33.8vw;
    height: 22.46vw;
  }
  .post-list .post-content .text {
    width: calc(100% - 33.8vw);
    padding-left: 0.5em;
  }
}
/*--------------------------------------

  ニュース/BioPQQ Column 記事詳細ページ

---------------------------------------*/
article {
  width: 767px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
article .entry-header h1.entry-title {
  font-size: 2.25em;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
article .entry-header .cat {
  font-size: 0.875em;
  font-weight: bold;
  font-weight: 700;
  color: #999999;
  line-height: 1.4;
}
article .entry-meta {
  display: flex;
}
article .entry-meta {
  display: flex;
  align-items: baseline;
}
article .entry-meta .sns-icon {
  display: flex;
  line-height: 0;
}
article .entry-meta .date {
  font-size: 0.875em;
  color: #bbbbbb;
  margin-right: 2em;
  font-family: "Lato", sans-serif;
}

article .tag {
  margin-top: 1em;
}

article .entry-content p {
  margin-top: 1em;
  margin-bottom: 2.5em;
}
article .entry-content p strong {
  color: #111111;
  background: linear-gradient(transparent 60%, #fbd5d8 60%);
}
article .wp-block-image {
  margin-bottom: 3em;
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  font-weight: normal;
}

article .entry-content h2 {
  font-size: 1.75em;
  color: #111111;
  margin: 3em auto 0.5em;
  border-bottom: 2px solid #111111;
  padding-bottom: 0.2em;
}
article .entry-content h3 {
  font-size: 1.625em;
  font-weight: bold;
  font-weight: 700;
  color: #111111;
  margin: 2em auto 1em;
  position: relative;
}
article .entry-content h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.5em;
  width: 3.1em;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
article .entry-content h4 {
  font-size: 1.25em;
  display: inline-block;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #111111;
}
article .entry-content p a {
  color: #0172cf;
}
article .wp-block-group {
  padding: 0.5em 2em;
}
article li a:hover {
  color: #01559a;
}

.entry-endlink {
  text-align: center;
  font-weight: bold;
  font-weight: 700;
  margin-top: 4em;
}
.entry-endlink p {
  font-size: 1.2em;
}
.entry-endlink a {
  font-size: 1.5em;
  color: #fff;
  text-align: center;
  width: 15em;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
  padding: 0.5em 1em;
  margin: 2em auto 0;
  display: block;
}
.entry-endlink a span {
  font-size: 0.6em;
  display: block;
}

.wp-block-table table {
  border-collapse: separate;
  border-spacing: 1em 0;
  line-height: 1.5;
  margin: 1em -1em;
}
.wp-block-table table th {
  border-collapse: separate;
  border-spacing: 0.5em;
  position: relative;
  border-bottom: none;
  padding: 0.5em 1em;
  color: #111111;
  font-weight: bold;
  font-weight: 700;
}
.wp-block-table table th::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #111111;
}
.wp-block-table table tr th:not(:first-of-type):not(:last-of-type) {
  width: calc(100% - 1em);
}
.wp-block-table table td {
  border-bottom: 1px solid #999999;
}
.wp-block-table figcaption {
  color: #777777;
  font-size: 0.8125em;
  margin: 1em auto 1.5em;
}
/* 関連記事 */
#sec-column-related h3.related-ttl {
  font-size: 1.625em;
  position: relative;
  margin-bottom: 1.5em;
}
#sec-column-related h3.related-ttl::before {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 0;
  width: 3.1em;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
#sec-column-related h3.related-ttl::after {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #e1ecf5;
}
/* 最新記事 */
#sec-column h3.recent-ttl {
  font-size: 1.625em;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}

#sec-column h3.recent-ttl::before {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
  width: 3.1em;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
#sec-column h3.recent-ttl::after {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #e1ecf5;
}
/* column　アーカイブ */
#sec-column h3.cat-ttl {
  font-size: 1.625em;
  position: relative;
  margin-bottom: 1.5em;
}
#sec-column h3.cat-ttl::before {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 0;
  width: 3.1em;
  height: 2px;
  background: linear-gradient(90deg, #14b1fc 0%, #0172cf 100%);
}
#sec-column h3.cat-ttl::after {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #e1ecf5;
}
#sec-column h3.cat-ttl span {
  font-weight: 300;
  font-size: 1.25rem;
  color: #666666;
}
#column .wp-block-column:not(:first-child) {
  margin-left: 0.25em;
}
@media screen and (max-width: 767px) {
  article .entry-header h1.entry-title {
    font-size: 1.5em;
  }
  article .entry-meta .date {
    margin-right: 1.5em;
  }
  article .entry-content h2 {
    font-size: 1.375em;
  }
  article .entry-content h3 {
    font-size: 1.25em;
  }
  article .entry-content h4 {
    font-size: 1.125em;
  }
  article .entry-content ul,
  article .entry-content ol {
    margin-bottom: 3em;
  }
  article .entry-content .wp-block-table {
    margin-bottom: 3em;
    overflow-x: auto;
    padding: 1em 0;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    margin-left: -4.8vw;
    margin-right: -4.8vw;
  }
  article .entry-content .wp-block-table table {
    width: auto;
    margin: 1em auto;
  }
  article .entry-content .wp-block-table table th {
    min-width: 29vw;
  }
  article .entry-content .wp-block-table figcaption {
    color: #777777;
    font-size: 0.8125em;
    margin: 1em 4.8vw 1.5em;
  }
  #column article .entry-content .wp-block-table {
    white-space: normal;
    margin-bottom: 2em;
  }
  #column article .wp-block-column:not(:only-child) {
    flex-basis: auto !important;
    flex-grow: 0;
    width: 100%;
  }
  #column article .entry-content .wp-block-table table {
    width: 100%;
  }
  #sec-column h3.recent-ttl {
    font-size: 1.2em;
  }
}
/*--------------------------------------

  BioPQQ Column  アーカイブ/詳細ページ

---------------------------------------*/
/*カテゴリ　リスト*/
.page-sub-header ul.cat-link-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 1.25em;
}
.page-sub-header ul.cat-link-nav li a {
  font-size: 1.125em;
  color: #01559a;
  font-weight: bold;
  font-weight: 700;
  margin: 0.5em 1.5em;
}
@media screen and (max-width: 767px) {
  .sp-scroll {
    margin-left: -4.8vw;
    margin-right: -4.8vw;
  }
  .page-sub-header ul.cat-link-nav {
    overflow-x: auto;
    padding: 1em 0;
    white-space: nowrap; /* 横スクロールの指定 */
    overflow-scrolling: touch; /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch; /* スクロールを滑らかにする */
    justify-content: flex-start;
  }
  .page-sub-header ul.cat-link-nav li a {
    margin: 0.5em 3em 0.5em 1em;
  }
}
/*--------------------------------------

  BioPQQ Column ピックアップ

---------------------------------------*/
#sec-pickup .pickup-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #f2f3f6;
  padding: 4vw;
}
#sec-pickup .pickup-wrap > div {
  width: calc(100% / 2 - 7.5px);
}
#sec-pickup .pickup-small-wrap {
}
#sec-pickup .pickup_item {
  width: 100%;
}
#sec-pickup .entry-thumb {
  width: 100%;
  height: 20vw;
}
#sec-pickup .entry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup_item {
  background: #fff;
  margin-right: 30px;
  transition: 0.3s;
}
.pickup_item:nth-of-type(3) {
  margin-right: 0px;
}
.pickup_item:hover {
  transform: scale(1.02);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.pickup_item .text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2em;
}
.pickup_item .text .text_inner {
  position: relative;
}
.pickup_item .text .text_inner::after {
  position: absolute;
  content: "";
  width: calc(100% + 2em);
  height: 2px;
  left: -2em;
  right: auto;
  bottom: -1em;
  background: linear-gradient(#14b1fc 0%, #0172cf 100%);
}
.pickup_item:nth-of-type(2) .text .text_inner::after {
  right: -2em;
  left: auto;
}
.pickup_item .text .cat {
  font-size: 0.875em;
  color: #666666;
  margin-bottom: 0.5em;
  position: relative;
  z-index: 2;
}
.pickup_item .text .entry-title {
  color: #01559a;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3em;
  margin-bottom: 0.5em;
  position: relative;
}
.pickup_item .text .date {
  font-size: 0.875em;
  color: #aaaaaa;
  font-family: "Lato", sans-serif;
}
.pickup_item:nth-child(2) .text {
  order: 1;
}
.pickup_item:nth-child(2) .entry-thumb {
  order: 2;
}
.pickup_item .text .tag {
  position: relative;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  #sec-pickup.pb80 {
    padding-bottom: 0;
  }
  #sec-pickup .pickup-wrap {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
  }
  #sec-pickup .pickup-wrap > div {
    width: 100%;
    height: auto;
  }
  #sec-pickup .pickup-wrap div.pickup-small-wrap {
    width: 100%;
    padding: 4.8vw;
    height: auto;
  }

  #sec-pickup .pickup_item .entry-thumb {
    width: 100%;
    height: 40vw;
  }

  #sec-pickup .pickup_item {
    width: 100%;
    min-height: 85vw;
    display: flex;
    flex-direction: column;
    margin: 4.8vw 1vw;
  }
  #sec-pickup .pickup_item > div {
    width: 100%;
  }
  .pickup_item {
    margin-right: 0;
  }
  .pickup_item:nth-child(2) .text {
    order: 2;
  }
  .pickup_item:nth-child(2) .entry-thumb {
    order: 1;
  }
  .pickup_item .text {
    padding: 1em;
  }
  .pickup_item .text .entry-title {
    letter-spacing: 0.15em;
    font-size: 1em;
  }
  .pickup_item .text .text_inner::after {
    content: none;
  }
}

/*--------------------------------------
  読まれているキーワード
---------------------------------------*/
.keyword {
  text-align: center;
  background: #f2f3f6;
  padding: 4vw;
}

.keyword .tag a {
  font-size: 1em;
  background: #fff;
}

/*--------------------------------------

  デフォルト固定ページ
---------------------------------------*/
.page article {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.page article .entry-header h1.entry-title {
  font-size: 2em;
}
.page article .entry-content p {
  margin-bottom: 1.5em;
}
.page article .entry-content p small {
  color: #777777;
}
.page article .entry-content h2 {
  font-size: 1.25em;
  font-weight: bold;
  font-weight: 700;
  color: #111111;
  margin: 1.5em auto 1em;
  border-bottom: 1px solid #111111;
}
.page article .entry-content h3 {
  font-size: 1.125em;
  margin-bottom: 1em;
}
.page article .entry-content h3::after {
  content: none;
}
.page article ol li:before {
  counter-increment: item;
  content: counter(item) ".";
}
/*--------------------------------------

  固定ページ　プライバシーポリシー

---------------------------------------*/
.page article .entry-content h2 {
  margin-top: 3em;
}
.page article .entry-content .contact-box {
  background: linear-gradient(to right bottom, #fff 0, #e5e5e5 100%);
  padding: 3em;
}
/*--------------------------------------

  固定ページ　お問い合わせページ

---------------------------------------*/
.form-content .page-header {
  position: absolute;
}
.form-content .form-box {
  max-width: 100%;
  padding: 1em 12em;
}
.form-content .form-box {
  max-width: 100%;
  padding: 1em 12em;
}
.wpcf7,
#complete-text {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.form-content .form-box h2 {
  margin-top: 0.3em;
}
.form-content .form-box h2.wpcf7c-elm-step2,
.form-content .form-box #complete-text h2 {
  padding: 0.5em 0;
  font-size: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 2em;
  color: #01559a;
  border-bottom: 1px solid #01559a;
}
.form-parts {
  margin-bottom: 3.125em;
}
.form-parts p.ttl {
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.form-parts-wrap {
  margin-bottom: 3.125em;
}
.form-parts-wrap p.group-ttl {
  font-size: 1.375em;
  font-weight: bold;
  font-weight: 700;
  margin-bottom: 1.5em;
}
.form-wrap .require {
  font-size: 0.625em;
  line-height: 1.0625;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  padding: 0.5em;
  background: #ff4053;
  margin: 0 1em;
  border-radius: 0.2em;
}
.form-wrap .any {
  font-size: 0.625em;
  line-height: 1.0625;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  padding: 0.5em;
  background: #bbbbbb;
  margin: 0 1em;
  border-radius: 0.2em;
}
.form-parts p.notice {
  font-size: 0.8125em;
  line-height: 1.5;
  color: #777777;
}
.agree-check p.notice {
  font-size: 0.8125em;
  line-height: 1.5;
  color: #777777;
}
.form-parts-wrap {
  padding: 3.75em;
}
.form-wrap .privacy-box {
  padding: 3.75em;
  letter-spacing: 0.04em;
}
.form-wrap .privacy-box a {
  color: #01559a;
}
.form-wrap .privacy-box p.ttl {
  font-size: 1.125em;
  font-weight: bold;
  font-weight: 700;
  margin-bottom: 1em;
}
.form-wrap .agree-check {
  margin: 1em auto 2.5em;
}
.form-wrap .agree-check .mwform-checkbox-field-text {
  color: #4b4b4b;
  cursor: pointer;
}
/* フォームタグ調整 */
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  max-width: 100%;
  padding: 0.75em;
  background: #fff;
}
textarea.inquiry {
  width: 100%;
  max-width: 100%;
  height: 22.5em;
  padding: 0.75em;
  background: #fff;
}
input[type="text"]#zip {
  padding: 0.75em;
  width: 16.25em;
}
select {
  padding: 0.75em 1.5em 0.75em 0.75em;
  width: 20.3125em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/icon_arrow-down.svg") right 1em center no-repeat,
    #fff;
  background-size: 0.8em auto;
  cursor: pointer;
  border-radius: 3px;
}
select::-ms-expand {
  display: none;
}
.form-wrap input[type="button"],
.form-wrap input[type="submit"] {
  font-size: 1em;
  padding: 0.75em 2em;
  color: #fff;
  background: linear-gradient(60deg, #14b1fc 0%, #0172cf 100%);
  border: 1px solid #14b1fc;
  cursor: pointer;
  margin: 0.5em;
  position: relative;
}
.form-wrap input[type="button"]:hover,
.form-wrap input[type="submit"]:hover {
  font-size: 1em;
  color: #01559a;
  background: #fff;
  border: 3px solid #14b1fc;
  border-radius: 3px;
  padding: calc(1em - 2px) calc(2em - 2px);
}
.form-wrap button {
  font-size: 0.875em;
  padding: 0.75em 1.5em;
  color: #fff;
  background: linear-gradient(60deg, #14b1fc 0%, #0172cf 100%);
  border: 1px solid #14b1fc;
  cursor: pointer;
  margin: 0.5em;
  position: relative;
}
.form-wrap button:hover {
  font-size: 0.875em;
  color: #01559a;
  background: #fff;
  border: 3px solid #14b1fc;
  border-radius: 3px;
  padding: calc(1em - 2px) calc(1.5em - 2px);
}
.form-wrap input.btn-back {
  padding: 0.75em 2em;
  font-size: 0.875em;
  line-height: 2.35em;
  color: #01559a;
  background: #fff;
  border: 1px solid #14b1fc;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}
.form-wrap input.btn-back:hover {
  padding: 0.75em 2em;
  font-size: 0.875em;
  background: linear-gradient(to right bottom, #14b1fc 0%, #0172cf 100%);
  border: 1px solid #14b1fc;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}
.form-wrap button.zip-button {
  margin-left: 1em;
}
::placeholder {
  color: #dddddd;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #dddddd;
}
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #dddddd;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #dddddd;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #dddddd;
}
input:-webkit-autofill,
select:-internal-autofill-selected {
  box-shadow: 0 0 0px 1000px #fff inset;
}
.custom-wpcf7c-confirmed p.notice {
  display: none;
}
.custom-wpcf7c-confirmed select,
.custom-wpcf7c-confirmed textarea {
  border: none;
}
@media screen and (max-width: 1023px) {
  .form-content .page-header {
    position: static;
  }
  .form-content .form-box {
    padding: 1em 3em;
  }
}
@media screen and (max-width: 767px) {
  .form-content .form-box {
    padding: 1em 0em;
  }
  select {
    max-width: 100%;
  }
  .form-parts-wrap {
    padding: 1em;
  }
  input[type="text"]#zip {
    width: 10em;
  }
  .form-wrap .privacy-box {
    padding: 1.5em;
  }
}
/* 確認画面 */
.custom-wpcf7c-confirmed input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}
.custom-wpcf7c-confirmed .form-parts {
  padding-bottom: 1em;
  border-bottom: 1px solid #dddddd;
}
.custom-wpcf7c-confirmed input.wpcf7c-conf {
  border: none;
  background: transparent;
}
.wpcf7 form .wpcf7-response-output {
  /*border: 2px solid #00a0d2; /* Blue */
  margin: 1em auto;
  padding: 0.5em 0;
  border: none;
  color: #ff4053;
  font-weight: bold;
  font-weight: 700;
}
.wpcf7 form.sent .wpcf7-response-output {
  /*border-color: #46b450; /* Green */
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  /*border-color: #dc3232; /* Red */
}
.wpcf7 form.spam .wpcf7-response-output {
  /*border-color: #f56e28; /* Orange */
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  /*border-color: #ffb900; /* Yellow */
}
