@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
html {
  font-size: 10px;
}

@media screen and (min-width: 1401px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 1.334vw;
  }
}

* {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 auto;
}

/* padding/margin指定時の余計なline-height分の余白を消す */
body {
  width: 100%;
  margin: auto;
  position: relative;
}

body * {
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}

main {
  position: relative;
  z-index: 0;
  margin-top: 13.3rem;
}

@media screen and (max-width: 767px) {
  main {
    margin-top: 9rem;
  }
}

.header {
  z-index: 1;
}

/* margin-top */
.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-10 {
  margin-top: 1rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-40 {
  margin-top: 4rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mt-60 {
  margin-top: 6rem;
}

.body-in {
  position: relative;
}

.float-button__wrap {
  width: 4.5rem;
}

.page-wrapper {
  margin: 0 auto;
}

.responsive-wrapper {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .responsive-wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .responsive-wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pc-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-el {
    display: none;
  }
}

@media print {
  .sp-el {
    display: none !important;
  }
}

.bg-gray {
  background: #F2F2F2;
}

a:hover {
  text-decoration: underline;
}

.link-blue {
  color: #0081F0;
}

.txt-end {
  text-align: end;
}

.fw-bold {
  font-weight: bold;
}

.fs-10 {
  font-size: 1rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.lh-15 {
  line-height: 1.5;
}

.txt-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flex-center.pc-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .flex-center.sp-el {
    display: none;
  }
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flex-start.pc-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .flex-start.sp-el {
    display: none;
  }
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flex-between.pc-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .flex-between.sp-el {
    display: none;
  }
}

.align-base {
  align-items: baseline;
}

.pd-h2 {
  padding-top: 6.2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pd-h2 {
    padding-top: 5rem;
  }
}

.pd-h2 h2 {
  font-size: 3.273rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .pd-h2 h2 {
    font-size: 3.6rem;
  }
}

.pt-15 {
  padding-top: 1.5rem;
}

.pb-15 {
  padding-bottom: 1.5rem;
}

.pt-20 {
  padding-top: 2rem;
}

.pt-25 {
  padding-top: 2.5rem;
}

.pb-25 {
  padding-bottom: 2.5rem;
}

.pt-30 {
  padding-top: 3rem;
}

.pb-30 {
  padding-bottom: 3rem;
}

.pt-40 {
  padding-top: 4rem;
}

.mt-48 {
  margin-top: 4.8rem;
}

.mb-48 {
  margin-bottom: 4.8rem;
}

.pb-40 {
  padding-bottom: 4rem;
}

.pt-50 {
  padding-top: 5rem;
}

.pb-50 {
  padding-bottom: 5rem;
}

.pr-70 {
  padding-right: 7rem;
}

.pr-80 {
  padding-right: 8rem;
}

.mr-4per {
  margin-right: 4%;
}

.pr-73 {
  padding-right: 7.3rem;
}

.pr-112 {
  padding-right: 11.2rem;
}

/* header */
.header {
  padding-bottom: 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  /* SP_header(SP固有のclass指定) */
  /* SP_ハンバーガーメニュー */
}

@media screen and (min-width: 768px) {
  .header {
    min-width: 1200px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-bottom: 0;
  }
  .header-logo {
    justify-content: space-between;
    padding: 2.8rem 2.2rem 2rem;
  }
  .header-logo .logo {
    width: 17.9171rem;
    height: 5.89763rem;
  }
}

.header-logo {
  justify-content: space-between;
  padding: 1.5rem 2.3rem 2.7rem 3.5rem;
}

@media screen and (max-width: 767px) {
  .header-logo {
    padding: 1.45rem 2.45rem;
  }
}

.header-logo .logo {
  width: 17.9171rem;
  height: 5.89763rem;
}

.header-logo .nav-open img {
  width: 4.86rem;
}

.header-logo-lan {
  padding-right: 3rem;
  font-size: 1.6rem;
}

.header-logo-lan-link {
  color: #979797;
}

.header-logo-lan-link.active {
  color: #000;
}

.header-logo-lan-link.active:hover {
  text-decoration: none;
}

.header-logo-search-txt {
  width: 16.3rem;
  height: 2.9rem;
  border-radius: initial;
  border: 1px solid;
  border-right: none;
  padding-left: 1rem;
}

@media screen and (max-width: 767px) {
  .header-logo-search-txt {
    width: 50.9rem;
    height: 8.2rem;
    border-radius: initial;
    border: 1px solid;
    border-right: none;
    padding-left: 2rem;
  }
}

.header-logo-search-txt::placeholder {
  color: #C3C3C3;
}

.header-logo-search-btn {
  background: #006DBB;
  height: 2.9rem;
  padding: 0;
  width: 2.9rem;
  line-height: 1.4;
  border: none;
  border-top: 0.1rem solid;
  border-right: 0.1rem solid;
  border-bottom: 0.1rem solid;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .header-logo-search-btn {
    height: 8.2rem;
    width: 8.2rem;
  }
}

.header-logo-link-contact {
  background: #006DBB;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  margin-left: 2.6rem;
  font-size: 1.8rem;
  color: #FFFFFF;
  vertical-align: middle;
  padding: 1.3rem 3.4rem;
}

@media screen and (max-width: 767px) {
  .header-logo-link-contact {
    background: initial;
    border-radius: 0;
    font-size: 2.8rem;
    line-height: 2.8;
    margin: 10.6% 10% !important;
    display: block;
    padding: 0 !important;
  }
}

.header-logo-link-contact:hover {
  text-decoration: none;
  opacity: 0.6;
}

.header-nav-pc-ul li {
  padding: 0 2.3rem;
  border-left: 0.1rem solid;
}

.header-nav-pc-ul li:last-child {
  border-right: 0.1rem solid;
}

.header-nav-pc-ul a {
  font-size: 1.8rem;
}

.header-nav-pc-ul a:hover {
  color: #006EBA;
}

.header .header__nav_wrapper {
  position: relative;
}

.header .header__nav {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
  position: fixed;
  top: 8.4rem;
  left: 0px;
  z-index: 9999;
}

.header .nav-items {
  padding-top: 3.8rem;
  position: relative;
}

.header .nav-items__logo {
  padding: 1.45rem 2.45rem;
}

.header .nav-items__item {
  border-bottom: 1px solid;
  margin: 0 7.51rem;
}

.header .nav-items__item_inner {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 3rem;
  color: black;
  padding: 2.5rem 0;
  display: flex;
  position: relative;
}

.header .nav-items__item_inner .arrow-wrapper {
  position: absolute;
  right: 0;
}

.header .nav-items__item_inner .arrow-wrapper img {
  width: 1.5rem;
}

.header .nav-items__item:last-child a {
  margin-bottom: 0;
}

.header .nav-contact {
  display: flex;
  justify-content: center;
  margin: 8.1rem 7.51rem;
  background: #006DBB;
}

@media screen and (max-width: 767px) {
  .header .nav-contact {
    margin: 0 !important;
  }
}

.header .foot-gray {
  width: 100%;
  height: 37rem;
}

.header .foot-white {
  width: 100%;
  height: 16rem;
  background: #fff;
}

.header .hamburger-wrapper {
  z-index: 10000;
}

.header .header__hamburger {
  width: 40px;
  height: 100%;
}

.header .hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .header .hamburger {
    display: none;
  }
}

.header .hamburger span {
  width: 100%;
  height: 1.5px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.header .hamburger span:nth-child(1) {
  top: 0;
}

.header .hamburger span:nth-child(2) {
  margin: 8px 0;
}

.header .hamburger span:nth-child(3) {
  top: 0;
}

.header .header__nav.active {
  transform: translateX(0);
  top: 8.4rem;
  overflow-y: scroll;
}

.header .hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header .hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

/* footer指定 */
.bg-nav-footer {
  background: #EBEBEB;
}

.nav-footer {
  padding: 0 2.9%;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .nav-footer {
    padding: 0 5.3%;
    line-height: 1.5;
  }
  .nav-footer li::before, .nav-footer li::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .nav-footer li::before {
    margin-top: calc((1 - 1.5) * 0.5em);
  }
  .nav-footer li::after {
    margin-bottom: calc((1 - 1.5) * 0.5em);
  }
}

@media screen and (min-width: 768px) {
  .nav-footer {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .nav-footer .sp-pb-12 {
    padding-bottom: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .nav-footer .sp-pt-42 {
    padding-top: 4.2rem;
  }
}

.nav-footer .logo {
  width: 15.6rem;
  height: 4.8rem;
}

.nav-footer .logo img {
  width: 15.6rem;
  height: 4.8rem;
}

.nav-footer-link-prd-item-list {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .nav-footer .pc-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .nav-footer .sp-column {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-footer .sp-column {
    flex-direction: column;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .nav-footer .sp-column .nav-footer-link-prd-item-list {
    font-weight: normal;
  }
}

.nav-footer .pc-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.nav-footer .footer-sp-flex-item {
  width: 58.9rem;
  justify-content: space-between;
  display: flex;
}

@media screen and (max-width: 767px) {
  .pc-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-el {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .copy-footer.sp-el {
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
  }
}

.nav-footer-pc-link-prd-item-list li a {
  line-height: 1.5;
}

/* お知らせ */
.notice {
  padding: 0  10rem 5.5rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .notice sup {
    font-size: 0.8rem;
    vertical-align: super;
  }
}

@media screen and (max-width: 767px) {
  .notice {
    padding: 0 5.3% 6rem;
  }
}

.notice.all {
  padding-top: 2rem;
}

@media screen and (max-width: 767px) {
  .notice.all {
    padding-top: 2.5rem;
    padding-bottom: 10rem;
  }
}

.notice-h3 {
  background: #666666;
  color: #FFFFFF;
  text-align: center;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .notice-h3 {
    padding-top: 1.9rem;
    padding-bottom: 1.9rem;
    margin-bottom: 0;
  }
}

.notice-h3 h3 {
  font-weight: normal;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .notice-h3 h3 {
    font-size: 2.6rem;
  }
}

.notice table {
  border-collapse: separate;
  border-spacing: 0 2.5rem;
}

@media screen and (max-width: 767px) {
  .notice table {
    font-size: 2.4rem;
    border-spacing: 0 calc(2rem * 2/3);
    line-height: 1.5;
  }
}

.notice table tr th {
  width: 18%;
  text-align: start;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .notice table tr th {
    width: 100%;
    display: block;
  }
}

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

.notice table tr td a {
  color: #0081F0;
  line-height: 1.4;
}

.notice-all {
  text-align: end;
}

.notice-all a {
  color: #0081F0;
}

@media screen and (max-width: 767px) {
  .notice-all {
    font-size: 2.4rem;
  }
}

/* 製品情報 */
.bg-prd-info {
  background: url(../../assets/img/bg_prd.png) no-repeat 50% 0;
  background-size: cover;
  margin-bottom: 7rem;
}

@media screen and (min-width: 1400px) {
  .bg-prd-info {
    background-size: 100vw auto;
  }
}

.prd-info-link-box-inner {
  flex-wrap: wrap;
  width: 120rem;
  margin: 0 auto -1.5rem;
}

@media screen and (max-width: 767px) {
  .prd-info-link-box-inner {
    margin-bottom: -2rem;
    width: 70rem;
  }
}

@media screen and (min-width: 1200px) {
  .prd-info-link-box-inner {
    width: 1170px;
  }
}

.prd-info {
  margin-right: 1.2%;
  margin-left: 1.2%;
}

.prd-info-link-box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.prd-info-link-item {
  display: block;
  width: 24%;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: bold;
  background: #FFFFFF;
  background: white;
  box-shadow: 0.7rem 0.3rem 0.7rem rgba(20, 53, 243, 0.37);
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=7, OffY=3, Color='#1435F3');
}

@media screen and (min-width: 768px) {
  .prd-info-link-item:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .prd-info-link-item {
    width: 43vw;
    height: 9rem;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: 2rem;
  }
}

.prd-info-link-item-inner {
  font-family: Hiragino Kaku Gothic ProN;
  font-size: 1.77rem;
  font-weight: bold;
  height: 7.1rem;
}

@media screen and (max-width: 767px) {
  .prd-info-link-item-inner {
    font-size: 2.8rem;
	  text-align: center;
    height: 100%;
  }
}

.prd-info-link-item .link-arrow-icon {
  position: absolute;
  right: 4%;
  top: 40%;
}

.prd-info-link-item .link-arrow-icon img {
  width: 0.76255rem;
}

@media screen and (max-width: 767px) {
  .prd-info-link-item .link-arrow-icon img {
    width: 1.48rem;
  }
}

.prd-info-link-item:hover {
  text-decoration: none;
  opacity: 0.6;
}

.prd-info-link-all {
  position: relative;
  color: #FFFFFF;
}

.prd-info-link-all-inner {
  width: 23.5rem;
  height: 5.1rem;
  background: #cbdff3;
  background: linear-gradient(90deg, #cbdff3 0%, #1e9bd6 45%, #0075bd 86%, #005b96 100%);
}

@media screen and (max-width: 767px) {
  .prd-info-link-all-inner {
    width: 67rem;
    height: 8rem;
    font-size: 2.8rem;
  }
}

.prd-info-link-all .link-arrow-icon {
  position: absolute;
  right: 4%;
  top: 40%;
}

@media screen and (max-width: 767px) {
  .prd-info-link-all .link-arrow-icon {
    top: 40%;
  }
}

.prd-info-link-all .link-arrow-icon img {
  width: 0.76255rem;
}

@media screen and (max-width: 767px) {
  .prd-info-link-all .link-arrow-icon img {
    width: 1.48rem;
  }
}

.prd-info-link-all:hover {
  text-decoration: none;
  opacity: 0.6;
}

.prd-info-text {
  padding-top: 4rem;
  text-align: center;
  padding-bottom: 4rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .prd-info-text {
    font-size: 2.6rem;
    text-align: center;
    padding-bottom: 4.67rem;
    padding-top: 2.37rem;
    line-height: 1.5;
  }
}

.pd-h2 + .prd-info-link-box {
  margin-top: 6rem;
}

/* TIPS */
@media screen and (max-width: 767px) {
  .tips {
    padding-bottom: 9.79rem;
    padding-top: 1.6rem;
  }
}

.tips-text {
  padding-top: 3rem;
  text-align: center;
  padding-bottom: 4rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .tips-text {
    font-size: 2.6rem;
    text-align: center;
    padding-bottom: 4.67rem;
    padding-top: 2.37rem;
  }
}

.tips-block {
  padding: 0 10rem;
  align-items: normal;
}

@media screen and (max-width: 767px) {
  .tips-block {
    padding: 0;
    flex-direction: column;
    align-items: center;
  }
}

.tips-item {
  border: 1px solid #006DBB;
}

@media screen and (max-width: 767px) {
  .tips-item {
    margin-right: 0;
    width: 89.3vw;
  }
}

.tips-item a {
  display: block;
}

.tips-item a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.tips-item-cap {
  padding: 7.8% 11.3% 11.9%;
}

@media screen and (max-width: 767px) {
  .tips-item-cap {
    padding: 2.6rem 3.5rem 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .tips-item-cap-title-wrapper {
    text-align: center;
  }
}

.tips-item-cap-title {
  font-size: 2.3rem;
  padding-bottom: 2.2rem;
}

@media screen and (max-width: 767px) {
  .tips-item-cap-title {
    font-size: 3.6rem;
  }
}

.tips-item-cap-p {
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .tips-item-cap-p {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .tips-item:not(:last-child) {
    margin-bottom: 4rem;
  }
}

.tips .sp-pt16 {
  padding-top: 1.6rem;
}

/* TOPページ以外の共通パーツ指定 */
.h1-wrapper {
  background: linear-gradient(to right, #1e9bd6 0%, #005b96 100%);
  background-size: 1400px auto;
  height: 13.6rem;
}

@media screen and (min-width: 1400px) {
  .h1-wrapper {
    background-size: 100vw auto;
  }
}

@media screen and (max-width: 767px) {
  .h1-wrapper {
    background-size: contain;
    height: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.h1-wrapper .pc-bread-list {
  display: flex;
  justify-content: flex-start;
  padding: 2.4rem 4% 1.8rem;
}

.h1-wrapper .pc-bread-list span {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
}

.h1-wrapper .pc-bread-list span a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .h1-wrapper .pc-bread-list {
    display: none;
  }
}

.h1-wrapper h1 {
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .h1-wrapper h1 {
    font-size: 3.6rem;
  }
}

.fv-cap {
  font-size: 1.6rem;
  line-height: 2.1;
  padding: 7rem 4% 5rem;
}

@media screen and (max-width: 767px) {
  .fv-cap {
    font-size: 2.8rem;
    line-height: 1.5;
    padding: 5.4rem 4rem 4.3rem;
  }
}

.report-card {
  border: 1px solid #000;
  margin: 0 4rem 4rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .report-card.pc-el {
    display: none;
  }
}

.report-card:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .report-card {
    margin: 0;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .report-card.sp-el {
    display: none;
  }
}

.report-card-ttl {
  line-height: 1.5;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 3rem 4.5rem 4.5rem;
}

.report-card-ttl:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .report-card-ttl {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    line-height: 2.3;
    padding: 3rem;
  }
}

.report-card-link {
  background: #006DBB;
  position: relative;
  padding: 2.4rem 0;
}

@media screen and (min-width: 768px) {
  .report-card-link {
    margin-top: auto;
    padding: 2rem 0;
  }
}

.report-card-link-txt {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .report-card-link-txt {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.report-card-link .less-arrow {
  position: absolute;
  right: 1rem;
  top: 40%;
}

.report-card-link .less-arrow img {
  width: 1.3rem;
}

@media screen and (min-width: 768px) {
  .report-card-link .less-arrow img {
    width: 0.7rem;
  }
}

/*  report-card_PCのみgrid指定 */
@media screen and (min-width: 768px) {
  .report-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    grid-gap: 3rem;
    padding: 0 4rem;
    padding-bottom: 4rem;
  }
}

/* 以降/products/子ページ指定（CMSに適用） */
.pc-def-prl {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.pc-def-mrl {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.sp-def-prl {
  padding-right: 4rem;
  padding-left: 4rem;
}

.sp-def-mrl {
  margin-right: 4rem;
  margin-left: 4rem;
}

/* 画像を等倍に */
.img-wid-auto {
  width: auto;
}

/* PC画像のみ等倍に */
@media screen and (min-width: 768px) {
  .img-wid-auto-pc {
    width: auto;
  }
}

.link-blue {
  color: #0062FF;
}

.products-h2-wrapper {
  margin: 4.6rem 0 0;
  padding: 2.6rem 4rem 2.8rem;
  background: #D9F2FB;
}

@media screen and (min-width: 768px) {
  .products-h2-wrapper {
    margin: 7rem 1.5rem 0;
    padding: 2.8rem 2.4rem;
  }
}

.products-h2-wrapper .h2-smaller {
  font-size: 2.8rem;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .products-h2-wrapper .h2-smaller {
    font-size: 2.4rem;
  }
}

.products-h2-wrapper .h2-normal {
  font-size: 3.2rem;
  line-height: 1.25;
}

.products-h2-wrapper .h2-normal sup {
  vertical-align: super;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .products-h2-wrapper .h2-normal {
    line-height: 1.4;
  }
}

.products-h3-wrapper {
  margin: 0 4rem 0;
  padding-bottom: 3rem;
  border-bottom: 0.4rem solid #006DBB;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper {
    margin: 0 1.5rem 0;
    padding-bottom: 2.5rem;
    border-bottom: 0.3rem solid #006DBB;
  }
}

.products-h3-wrapper h3 {
  font-size: 3.6rem;
  color: #006DBB;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper h3 {
    font-size: 2.8rem;
  }
}

.products-h2-wrapper + .products-h3-wrapper {
  margin-top: 4.6rem;
}

@media screen and (min-width: 768px) {
  .products-h2-wrapper + .products-h3-wrapper {
    margin-top: 6.7rem;
  }
}

.products-list-01 + .products-h3-wrapper {
  margin-top: 9.7rem;
}

@media screen and (min-width: 768px) {
  .products-list-01 + .products-h3-wrapper {
    margin-top: 5.7rem;
  }
}

.gray-wrapper + .products-h3-wrapper {
  margin-top: 7.8rem;
}

@media screen and (min-width: 768px) {
  .gray-wrapper + .products-h3-wrapper {
    margin-top: 7rem;
  }
}

.products-annotation + .products-h3-wrapper {
  margin-top: 8.5rem;
}

.products-h4-wrapper {
  margin: 0 4rem 0;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper {
    margin: 0 1.5rem 0;
  }
}

.products-h4-wrapper h4 {
  font-size: 3.2rem;
  line-height: 1.4;
  padding-left: 2rem;
  border-left: 0.8rem solid #00A7E3;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper h4 {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

.products-h4-wrapper h4 sup {
  vertical-align: super;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper h4 sup {
    font-size: 1.2rem;
  }
}

.products-h3-wrapper + .products-h4-wrapper {
  margin-top: 4.2rem;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper + .products-h4-wrapper {
    margin-top: 2.3rem;
  }
}

.products-description-p + .products-h4-wrapper {
  margin-top: 11rem;
}

@media screen and (min-width: 768px) {
  .products-description-p + .products-h4-wrapper {
    margin-top: 9rem;
  }
}

.products-annotation + .products-h4-wrapper {
  margin-top: 11rem;
}

@media screen and (min-width: 768px) {
  .products-annotation + .products-h4-wrapper {
    margin-top: 9rem;
  }
}

.products-list-02 + .products-h4-wrapper {
  margin-top: 6rem;
}

@media screen and (min-width: 768px) {
  .products-list-02 + .products-h4-wrapper {
    margin-top: 7.7rem;
  }
}

.products-list-04 + .products-h4-wrapper {
  margin-top: 8.2rem;
}

@media screen and (min-width: 768px) {
  .products-list-04 + .products-h4-wrapper {
    margin-top: 4.4rem;
  }
}

.img-wrapper + .products-h4-wrapper {
  margin-top: 6.2rem;
}

@media screen and (min-width: 768px) {
  .img-wrapper + .products-h4-wrapper {
    margin-top: 11.4rem;
  }
}

.img-table + .products-h4-wrapper {
  margin-top: 10rem;
}

@media screen and (min-width: 768px) {
  .img-table + .products-h4-wrapper {
    margin-top: 5.8rem;
  }
}

.dm-610 + .products-h4-wrapper {
  margin-top: 8.4rem;
}

@media screen and (min-width: 768px) {
  .dm-610 + .products-h4-wrapper {
    margin-top: 8.7rem;
  }
}

.products-h5-wrapper {
  margin: 0rem 4rem 0;
}

@media screen and (min-width: 768px) {
  .products-h5-wrapper {
    margin: 0 1.5rem 0;
  }
}

.products-h5-wrapper h5 {
  font-size: 3.2rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .products-h5-wrapper h5 {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 768px) {
  .products-h5-wrapper h5 sup {
    font-size: 1.6rem;
    vertical-align: super;
  }
}

.products-description-p + .products-h5-wrapper {
  margin-top: 5.7rem;
}

.img-wrapper + .products-h5-wrapper {
  margin-top: 5rem;
}

.products-h4-wrapper + .products-h5-wrapper {
  margin-top: 5.6rem;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper + .products-h5-wrapper {
    margin-top: 4.4rem;
  }
}

.products-h3-wrapper + .products-h5-wrapper {
  margin-top: 4.3rem;
}

.products-list-02 + .products-h5-wrapper {
  margin-top: 6.4rem;
}

.img-table + .products-h5-wrapper {
  margin-top: 8.9rem;
}

.products-h6-wrapper {
  margin: 4rem 4rem 0;
}

@media screen and (min-width: 768px) {
  .products-h6-wrapper {
    margin: 4.8rem 1.5rem 0;
  }
}

.products-h6-wrapper h6 {
  font-size: 3rem;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .products-h6-wrapper h6 {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.products-list-01 {
  list-style-type: disc;
}

.products-list-01 li {
  margin-left: 3rem;
}

@media screen and (min-width: 768px) {
  .products-list-01 li {
    margin-left: 1.6rem;
  }
}

.products-list-01 li p {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: bold;
}

.products-list-01 li p::before, .products-list-01 li p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.products-list-01 li p::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}

.products-list-01 li p::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}

@media screen and (min-width: 768px) {
  .products-list-01 li p {
    font-size: 1.8rem;
    line-height: 2.5;
  }
  .products-list-01 li p::before, .products-list-01 li p::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .products-list-01 li p::before {
    margin-top: calc((1 - 2.5) * 0.5em);
  }
  .products-list-01 li p::after {
    margin-bottom: calc((1 - 2.5) * 0.5em);
  }
}

.products-list-01 a {
  color: #0081F0;
}

.products-h3-wrapper + .products-list-01 {
  margin: 2.5rem 4rem 0;
  list-style-type: disc;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper + .products-list-01 {
    margin: 3rem 1.5rem 0;
  }
}

.products-h3-wrapper + .products-list-01 li {
  margin-left: 3rem;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper + .products-list-01 li {
    margin-left: 1.6rem;
  }
  .products-h3-wrapper + .products-list-01 li:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.products-h3-wrapper + .products-list-01 li p {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: bold;
}

.products-h3-wrapper + .products-list-01 li p::before, .products-h3-wrapper + .products-list-01 li p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.products-h3-wrapper + .products-list-01 li p::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}

.products-h3-wrapper + .products-list-01 li p::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper + .products-list-01 li p {
    font-size: 1.8rem;
  }
}

.products-h3-wrapper + .products-list-01 a {
  color: #0081F0;
}

.products-h6-wrapper + .products-list-01 {
  margin: 2.5rem 4rem 0;
  list-style-type: disc;
}

@media screen and (min-width: 768px) {
  .products-h6-wrapper + .products-list-01 {
    margin: 3rem 1.5rem 0;
  }
}

.products-h6-wrapper + .products-list-01 li {
  margin-left: 3rem;
}

@media screen and (min-width: 768px) {
  .products-h6-wrapper + .products-list-01 li {
    margin-left: 1.6rem;
  }
}

.products-h6-wrapper + .products-list-01 li p {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: bold;
}

.products-h6-wrapper + .products-list-01 li p::before, .products-h6-wrapper + .products-list-01 li p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.products-h6-wrapper + .products-list-01 li p::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}

.products-h6-wrapper + .products-list-01 li p::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}

@media screen and (min-width: 768px) {
  .products-h6-wrapper + .products-list-01 li p {
    font-size: 1.8rem;
    line-height: 2.5;
  }
  .products-h6-wrapper + .products-list-01 li p::before, .products-h6-wrapper + .products-list-01 li p::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .products-h6-wrapper + .products-list-01 li p::before {
    margin-top: calc((1 - 2.5) * 0.5em);
  }
  .products-h6-wrapper + .products-list-01 li p::after {
    margin-bottom: calc((1 - 2.5) * 0.5em);
  }
}

.products-h6-wrapper + .products-list-01 a {
  color: #0081F0;
}

.products-list-02 {
  margin: 0 4rem 0;
}

@media screen and (min-width: 768px) {
  .products-list-02 {
    margin: 0 0.5rem 0;
  }
}

.products-list-02 li {
  margin-left: 3rem;
}

.products-list-02 li::marker {
  font-size: 2.8rem;
}

@media screen and (min-width: 768px) {
  .products-list-02 li::marker {
    font-size: 1.6rem;
  }
}

.products-list-02 li p {
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .products-list-02 li p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.products-list-02 li a {
  font-size: 2.8rem;
  line-height: 1.6;
  color: #0081F0;
}

.img-wrapper + .products-list-02 {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .img-wrapper + .products-list-02 {
    margin-top: 4.3rem;
  }
}

.products-list-01 + .products-list-02 {
  margin-top: 3.9rem;
}

@media screen and (min-width: 768px) {
  .products-list-01 + .products-list-02 {
    margin-top: 3.5rem;
  }
}

.products-h5-wrapper + .products-list-02 {
  margin-top: 2.2rem;
}

.products-list-03 {
  margin: 4rem 4rem 0;
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .products-list-03 {
    margin: 3rem 1.3rem 0;
  }
}

.products-list-03 li p {
  display: flex;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .products-list-03 li p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.products-list-03 li p .list-03-number {
  margin-right: 1rem;
}

@media screen and (min-width: 768px) {
  .products-list-03 li p .list-03-number {
    margin-right: 0.5rem;
  }
}

.products-list-04 {
  margin: 0 4rem 0;
  list-style-type: disc;
}

@media screen and (min-width: 768px) {
  .products-list-04 {
    margin: 0 1.5rem 0;
  }
}

.products-list-04 li {
  margin-left: 3rem;
}

@media screen and (min-width: 768px) {
  .products-list-04 li {
    margin-left: 1.6rem;
  }
}

.products-list-04 li p {
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .products-list-04 li p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.products-h3-wrapper + .products-list-04 {
  margin-top: 4.2rem;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper + .products-list-04 {
    margin-top: 2.5rem;
  }
}

.products-h4-wrapper + .products-list-04 {
  margin-top: 2.8rem;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper + .products-list-04 {
    margin-top: 2.5rem;
  }
}

.products-list-02 + .products-list-05 {
  margin-top: 3.8rem;
}

@media screen and (min-width: 768px) {
  .products-list-02 + .products-list-05 {
    margin-top: 3rem;
  }
}

/* /products/子ページのpタグ指定 */
.products-description-p {
  margin: 0 4rem 0;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .products-description-p {
    margin: 0 1.5rem 0;
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .products-description-p sup {
    font-size: 0.8rem;
    vertical-align: super;
  }
}

.products-description-p a {
  font-size: 2.8rem;
  line-height: 1.6;
  color: #0081F0;
}

@media screen and (min-width: 768px) {
  .products-description-p a {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.products-description-p__list {
  position: relative;
  padding-left: 1em;
  display: block;
}

.products-description-p__list::before {
  position: absolute;
  content: "・";
  top: 0.1em;
  left: -0.2em;
  color: #000;
  width: 1rem;
  height: 1rem;
}

.products-h3-wrapper + .products-description-p {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .products-h3-wrapper + .products-description-p {
    margin-top: 2.8rem;
  }
}

.products-h4-wrapper + .products-description-p {
  margin-top: 3.5rem;
}

.products-h5-wrapper + .products-description-p {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .products-h5-wrapper + .products-description-p {
    margin-top: 2.2rem;
  }
}

.under-table-annotation + .products-description-p {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .under-table-annotation + .products-description-p {
    margin-top: 3rem;
  }
}

.products-list-04 + .products-description-p {
  margin-top: 4.3rem;
}

@media screen and (min-width: 768px) {
  .products-list-04 + .products-description-p {
    margin-top: 2.7rem;
  }
}

.img-table + .products-description-p {
  margin-top: 3.6rem;
}

/* 注釈 */
.products-annotation {
  margin: 2.6rem 4rem 0;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .products-annotation {
    margin: 2.1rem 1.5rem 0;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

/* 画像（横スクロール無し） */
.img-wrapper {
  margin: 0 4rem 0;
}

@media screen and (min-width: 768px) {
  .img-wrapper {
    margin: 0 1.5rem 0;
  }
}

.products-h4-wrapper + .img-wrapper {
  margin-top: 6.5rem;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper + .img-wrapper {
    margin-top: 4.6rem;
  }
}

.products-description-p + .img-wrapper {
  margin-top: 3.5rem;
}

.products-list-04 + .img-wrapper {
  margin-top: 4.8rem;
}

@media screen and (min-width: 768px) {
  .products-list-04 + .img-wrapper {
    margin-top: 5rem;
  }
}

/* 指定ページ: /products/ex-pack/ */
.gray-wrapper {
  margin: 5.6rem 4rem 0;
  background: #F0F0F0;
  padding: 3.57rem 4.8rem 6.87rem;
}

@media screen and (min-width: 768px) {
  .gray-wrapper {
    margin: 3.9rem 1.5rem 0;
    padding: 3rem 4.2rem;
  }
}

.gray-wrapper-ttl {
  line-height: 1.4;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .gray-wrapper-ttl {
    line-height: 1.2;
    font-size: 2.4rem;
  }
}

.gray-wrapper-composition {
  margin-top: 2.8rem;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .gray-wrapper-composition {
    margin-top: 2.2rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}

/* 指定ページ: /products/protein-marker/ */
.development-story-wrapper {
  background: #FDE9D1;
  padding: 4.8rem 4rem;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper {
    padding: 5.5rem 11.5rem;
  }
}

.img-table + .development-story-wrapper {
  margin-top: 8rem;
}

.development-story-wrapper-only-text-ttl-inner {
  line-height: 1.4;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-only-text-ttl-inner {
    line-height: 1.2;
    font-size: 2.4rem;
  }
}

.development-story-wrapper-only-text-composition.first {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-only-text-composition.first {
    margin-top: 2.5rem;
  }
}

.development-story-wrapper-only-text-composition {
  margin-top: 6rem;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-only-text-composition {
    margin-top: 5rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-Illustrated {
    display: flex;
    align-items: flex-start;
    justify-self: center;
    margin-top: 5.6rem;
    margin-bottom: 0.7rem;
    padding: 0 1.5rem;
  }
}

.development-story-wrapper-Illustrated-img {
  margin-top: 4.8rem;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-Illustrated-img {
    margin-top: 0;
    margin-right: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-Illustrated-img img {
    width: 56rem;
  }
}

.development-story-wrapper-Illustrated-annotation {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-Illustrated-annotation {
    margin-top: 0;
  }
}

.development-story-wrapper-Illustrated-annotation p {
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper-Illustrated-annotation p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.gray-wrapper + .development-story-wrapper {
  margin-top: 7rem;
}

@media screen and (min-width: 768px) {
  .gray-wrapper + .development-story-wrapper {
    margin-top: 6rem;
  }
}

/* 指定ページ:　/products/ex-pack/ */
.dm-610 {
  margin: 0 4rem 0;
}

@media screen and (min-width: 768px) {
  .dm-610 {
    margin: 0 1.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-self: center;
  }
}

@media screen and (min-width: 768px) {
  .dm-610-img-wrapper {
    margin-right: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .dm-610 img {
    width: 56rem;
  }
}

.dm-610 p {
  margin-top: 4rem;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .dm-610 p {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .dm-610.sp-el {
    display: none;
  }
}

.products-h4-wrapper + .dm-610 {
  margin-top: 4.7rem;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper + .dm-610 {
    margin-top: 3.2rem;
  }
}

.development-story-wrapper + .dm-610 {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .development-story-wrapper + .dm-610 {
    margin-top: 11.4rem;
  }
}

.products-description-p + .table-wrapper {
  margin-top: 10rem;
}

@media screen and (min-width: 768px) {
  .products-description-p + .table-wrapper {
    margin-top: 7.5rem;
  }
}

/* table */
@media screen and (min-width: 768px) {
  .table-wrapper {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}

.table-wrapper .table-item-wrapper:not(:first-child) {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item-wrapper:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item-wrapper:first-child .table-th-head {
    border-bottom: 1px solid #000;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item-wrapper {
    display: flex;
  }
}

.table-wrapper .table-item {
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item {
    flex-direction: column;
    border-left: 1px solid;
    border-bottom: 1px solid;
    flex-grow: 1;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item:last-child {
    border-right: 1px solid;
  }
}

.table-wrapper .table-item:last-child .table-th-head {
  border-bottom: 1px solid #000;
}

.table-wrapper .table-item:last-child .table-td:last-child {
  border-bottom: 1px solid;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item:last-child .table-td:last-child {
    border-bottom: none;
  }
}

.table-wrapper .table-item a {
  color: #0081F0;
}

.table-wrapper .table-item .table-th-head {
  background: #D5D5D5;
  font-size: 2.4rem;
  text-align: center;
  width: 20rem;
  padding: 1.5rem 0;
  font-weight: bold;
  width: 30%;
  border-top: 1px solid;
  border-right: 1px solid;
  border-left: 1px solid;
  margin-left: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-th-head {
    margin: 0;
    font-size: 1.4rem;
    width: auto;
    border-left: none;
    border-right: none;
  }
  .table-wrapper .table-item .table-th-head.sp-el {
    display: none;
  }
}

.table-wrapper .table-item .table-td {
  border-top: 1px solid;
  border-right: 1px solid;
  font-size: 2.4rem;
  line-height: 1.5;
  padding-left: 2.35rem;
  padding-right: 2.35rem;
  width: 60%;
  display: flex;
  margin-right: 4rem;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-td sup {
    font-size: 0.7rem;
    vertical-align: super;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-td.pc-txt-start {
    text-align: start;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-td.pc-size-font {
    font-size: 1.4rem;
    line-height: 1.4;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .table-wrapper .table-item .table-td.pc-size-font::before, .table-wrapper .table-item .table-td.pc-size-font::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .table-wrapper .table-item .table-td.pc-size-font::before {
    margin-top: calc((1 - 1.4) * 0.5em);
  }
  .table-wrapper .table-item .table-td.pc-size-font::after {
    margin-bottom: calc((1 - 1.4) * 0.5em);
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-td .horizontal-middle {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .table-wrapper .table-item .table-td::before, .table-wrapper .table-item .table-td::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .table-wrapper .table-item .table-td::before {
    margin-top: calc((1 - 1.5) * 0.5em);
  }
  .table-wrapper .table-item .table-td::after {
    margin-bottom: calc((1 - 1.5) * 0.5em);
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-td {
    margin: auto;
    font-size: 1.6rem;
    line-height: 2;
    padding: 0;
    vertical-align: center;
    text-align: center;
    width: auto;
    border-right: none;
    border-top: none;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .table-td .smaller {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.table-wrapper .table-item .product-name {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1rem;
  padding-bottom: 1rem;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .product-name {
    margin: auto 0;
    padding-right: 3.7%;
    padding-left: 3.7%;
    text-align: start;
  }
}

.table-wrapper .table-item .manual-dl {
  display: flex;
  padding: 0 2.35rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .table-wrapper .table-item .manual-dl.sp-flex-between {
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl {
    justify-content: space-around;
    padding: 1.5rem 1rem 1.93rem;
  }
}

.table-wrapper .table-item .manual-dl.sp-start {
  justify-content: flex-start;
  padding: 1.5rem 3rem;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl.sp-start.pc-center {
    justify-content: center;
    display: flex;
  }
}

.table-wrapper .table-item .manual-dl.only-txt {
  display: block;
  padding-left: 2.35rem;
  padding-right: 2.35rem;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl.only-txt {
    padding-left: 0;
    padding-right: 0;
  }
}

.table-wrapper .table-item .manual-dl.only-txt a {
  font-weight: bold;
  font-size: 2.4;
  line-height: 1.9;
  font-weight: bold;
}

.table-wrapper .table-item .manual-dl.only-txt a::before, .table-wrapper .table-item .manual-dl.only-txt a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.table-wrapper .table-item .manual-dl.only-txt a::before {
  margin-top: calc((1 - 1.9) * 0.5em);
}

.table-wrapper .table-item .manual-dl.only-txt a::after {
  margin-bottom: calc((1 - 1.9) * 0.5em);
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl.only-txt a {
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .table-wrapper .table-item .manual-dl.only-txt a::before, .table-wrapper .table-item .manual-dl.only-txt a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .table-wrapper .table-item .manual-dl.only-txt a::before {
    margin-top: calc((1 - 1.6) * 0.5em);
  }
  .table-wrapper .table-item .manual-dl.only-txt a::after {
    margin-bottom: calc((1 - 1.6) * 0.5em);
  }
}

.table-wrapper .table-item .manual-dl.flex-start {
  justify-content: flex-start;
  padding: 1.5rem 3rem;
}

.table-wrapper .table-item .manual-dl.only-two .first {
  padding-right: 1.6rem;
}

@media screen and (max-width: 767px) {
  .table-wrapper .table-item .manual-dl.only-two {
    justify-content: flex-start;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl.only-two {
    display: flex;
  }
}

.table-wrapper .table-item .manual-dl.pc-table02 {
  display: revert;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl.pc-table02 {
    padding: 0.8rem 1rem 1.61rem;
  }
}

.table-wrapper .table-item .manual-dl.pc-table02 img {
  vertical-align: middle;
}

.table-wrapper .table-item .manual-dl.pc-table02 .slash {
  color: #0062FF;
  font-size: 1.2rem;
}

.table-wrapper .table-item .manual-dl.pc-table02 a {
  display: revert;
  font-size: 1.2rem;
}

.table-wrapper .table-item .manual-dl a {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl a {
    justify-content: center;
  }
}

.table-wrapper .table-item .manual-dl img {
  width: 2.9rem;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .manual-dl img {
    width: 2rem;
  }
}

.table-wrapper .table-item .hyphen {
  text-align: center;
}

.table-wrapper .table-item .jp p {
  margin-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .jp p {
    margin-left: 0.7rem;
    font-size: 1.2rem;
  }
}

.table-wrapper .table-item .seq p {
  margin-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .seq p {
    margin-left: 0.7rem;
    font-size: 1.2rem;
  }
}

.table-wrapper .table-item .old-seq {
  font-size: 2rem;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .table-wrapper .table-item .old-seq {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .th-code-pc {
    width: 12rem;
    width: 10.2%;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .th-product-name-pc {
    width: 46.4rem;
    width: 39.6%;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .th-product-size-pc {
    width: 23rem;
    width: 19.6%;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .th-product-price-pc {
    width: 11.9rem;
    width: 10.2%;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .th-product-manual-pc {
    width: 13.7rem;
    width: 11.7%;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper .th-product-sds-pc {
    width: 10rem;
    width: 8.5%;
  }
}

.table-wrapper .only-pdf-icon {
  width: 2.9rem;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .table-wrapper .only-pdf-icon {
    width: 2rem;
  }
}

/* PC面において列ごとにtableを分ける　指定ページ: /products/ex-pack/ */
@media screen and (min-width: 768px) {
  .table-wrapper.separate .table-item-wrapper:not(first-child) {
    margin-top: 4.6rem;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper.separate .table-th-head {
    border-bottom: 1px solid #000;
  }
}

@media screen and (min-width: 768px) {
  .table-wrapper.separate .table-td {
    line-height: 1.5;
    margin: auto;
  }
  .table-wrapper.separate .table-td::before, .table-wrapper.separate .table-td::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .table-wrapper.separate .table-td::before {
    margin-top: calc((1 - 1.5) * 0.5em);
  }
  .table-wrapper.separate .table-td::after {
    margin-bottom: calc((1 - 1.5) * 0.5em);
  }
  .table-wrapper.separate .table-td.product-name {
    margin: auto 0;
  }
}

.dm-610 + .table-wrapper {
  margin-top: 10rem;
}

@media screen and (min-width: 768px) {
  .dm-610 + .table-wrapper {
    margin-top: 4rem;
  }
}

.products-description-p + .table-wrapper {
  margin-top: 14rem;
}

@media screen and (min-width: 768px) {
  .products-description-p + .table-wrapper {
    margin-top: 7.5rem;
  }
}

.under-table-annotation + .table-wrapper {
  margin-top: 10.2rem;
}

@media screen and (min-width: 768px) {
  .under-table-annotation + .table-wrapper {
    margin-top: 7.5rem;
  }
}

.table-wrapper + .table-wrapper {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .table-wrapper + .table-wrapper {
    margin-top: 4.6rem;
  }
}

.img-table + .table-wrapper {
  margin-top: 7.5rem;
}

.products-list-01 + .table-wrapper {
  margin-top: 6rem;
}

/* table直下の注釈　*/
.under-table-annotation {
  margin: 2.3rem 4rem 0;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .under-table-annotation {
    margin: 1.7rem 1.5rem 0;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

.development-story-wrapper + .table-wrapper {
  margin-top: 8rem;
}

/* 企業ロゴ */
.corporate-logo-wrapper {
  margin-top: 4.37rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .corporate-logo-wrapper {
    margin-top: 3.2rem;
    padding: 0 1.5rem;
  }
}

.corporate-logo-wrapper div:not(:last-child) {
  margin-right: 4rem;
}

@media screen and (min-width: 768px) {
  .corporate-logo-wrapper div:not(:last-child) {
    margin-right: 5.2rem;
  }
}

.corporate-logo-wrapper img {
  width: 23rem;
}

@media screen and (min-width: 768px) {
  .corporate-logo-wrapper img {
    width: 23rem;
  }
}

.corporate-p {
  margin-top: 2.5rem;
  padding: 0 4rem;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .corporate-p {
    margin-top: 3.4rem;
    padding: 0 1.5rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

/* オススメ */
.recommend {
  margin: 6rem 4rem 0;
  border: 1px solid;
}

@media screen and (min-width: 768px) {
  .recommend {
    margin: 3.4rem 1.5rem 0;
  }
}

.recommend-catch {
  font-weight: bold;
  font-size: 3rem;
  background: #D9F2FB;
  padding: 1.3rem 3.2rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .recommend-catch {
    font-size: 2rem;
    padding: 0.9rem 3.3rem 1rem;
  }
}

.recommend-composition {
  padding: 2.5rem 3.3rem;
  font-size: 2.8rem;
  line-height: 1.6;
}

.recommend-composition::before, .recommend-composition::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.recommend-composition::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}

.recommend-composition::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}

.recommend-composition a {
  color: #0062FF;
}

@media screen and (min-width: 768px) {
  .recommend-composition {
    font-size: 1.6rem;
    line-height: 2;
  }
}

/* point */
.point {
  margin: 7rem 4rem 0;
  background: #FFE4B7;
  border-radius: 1.3rem;
  padding: 4.8rem 4.5rem;
  -webkit-border-radius: 1.3rem;
  -moz-border-radius: 1.3rem;
  -ms-border-radius: 1.3rem;
  -o-border-radius: 1.3rem;
}

@media screen and (min-width: 768px) {
  .point {
    margin: 3.5rem 1.5rem 0;
    padding: 1.4rem 2rem 2rem;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .point.sp-el {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .point-icon {
    margin-right: 2.7rem;
  }
}

.point-icon img {
  width: 11.8rem;
}

@media screen and (min-width: 768px) {
  .point-icon img {
    width: 7.6rem;
  }
}

.point-composition {
  margin-top: 6rem;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .point-composition {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.point-composition.first {
  margin-top: 3rem;
}

.point-illust {
  margin-top: 4.6rem;
}

.point-annotation {
  margin-top: 2.5rem;
  margin-bottom: 2.4rem;
}

.point-annotation p {
  font-size: 2.8rem;
  line-height: 1.6;
}

/* 画像（横スクロールあり） */
.img-table {
  margin: 0 0 0 4rem;
  overflow-x: auto;
}

@media screen and (min-width: 768px) {
  .img-table {
    margin: 0 1.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .img-table {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .img-table::-webkit-scrollbar {
    display: none;
  }
  .img-table::-webkit-scrollbar-thumb {
    background: #AAAAAA;
  }
}

@media screen and (max-width: 767px) {
  .img-table-inner {
    margin: auto 0 auto auto;
  }
  .img-table-inner img {
    width: auto;
    height: 86rem;
  }
}

.point + .img-table {
  margin-top: 20.7rem;
}

@media screen and (min-width: 768px) {
  .point + .img-table {
    margin-top: 16.7rem;
  }
}

.products-h4-wrapper + .img-table {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .products-h4-wrapper + .img-table {
    margin-top: 2.5rem;
  }
}

.products-h3-wrapper + .img-table {
  margin-top: 4.1rem;
}

.products-h5-wrapper + .img-table {
  margin-top: 2.3rem;
}

/* 画像横スクロール時のスクロールバー指定 */
@media screen and (max-width: 767px) {
  .simplebar-content {
    font-size: 80rem;
  }
  .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1 !important;
  }
  .simplebar-scrollbar::before {
    background: #AAAAAA !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    height: 1.5rem !important;
    margin-top: 3px;
  }
  .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
  }
  .simplebar-track {
    background: #fff;
    height: 15px !important;
  }
}

.products-description-p + .img-table {
  margin-top: 4.6rem;
}

@media screen and (min-width: 768px) {
  .products-description-p + .img-table {
    margin-top: 2.8rem;
  }
}

.block-bl21 {
  margin: 17.7rem 1.5rem 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .block-bl21 {
    flex-direction: column;
    margin: 0 4rem 0;
  }
}

.block-bl21 .caption-bl21 {
  margin: 20rem 4rem 0;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .block-bl21 .caption-bl21 {
    margin: 0 4rem 0 0;
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .block-bl21 .bl21-img {
    margin: 5rem auto 4rem;
  }
}

.block-bl21 .bl21-img img {
  width: 35.6rem;
}

@media screen and (max-width: 767px) {
  .block-bl21 .bl21-img img {
    width: 100%;
  }
}

.end-margin {
  padding-bottom: 15rem;
}
