<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/******************
custom.css
*******************/

/* 20240926 topFAQの追加 */
.faq-outer {
  margin-top: 6.25rem;
  margin-bottom: 4rem;
}
.faq-wrap{
  margin-bottom: 20px;
}
.que-wrap {
  display: block;
}
.que-wrap::-webkit-details-marker {
  display: none;
}
.que-inner{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  
  color: #fff;
  padding: 20px;
  font-weight: bold;
  align-items: center;
  border-radius: 5px;
  background-color: #0168b6;
}
details[open] .que-inner{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.que-wrap .icon {
  display: block;
  position: relative;
  width: 16px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
details[open] .icon {
  transform: rotate(180deg);
}
.que-wrap .icon::before,
.que-wrap .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
}
.que-wrap .icon::before {
  left: 0;
  transform: rotate(45deg);
}
.que-wrap .icon::after {
  right: 0;
  transform: rotate(-45deg);
}
@keyframes close-animation {
  from {
      transform: rotate(180deg);
  }
  to {
      transform: rotate(0deg);
  }
}
details[open] .que-inner::after {
  animation: 0.4s open-animation forwards;
}
@keyframes open-animation {
  from {
      transform: rotate(0deg);
  }
  to{
      transform: rotate(180deg);
  }
}
.ans-inner {
  padding: 20px;
  border: 1px solid #0168b6;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.ans-inner .red{
  color: #cf2e2e;
  font-weight: bold;
}
.ans-inner p {
  margin: 0;
  line-height: 1.8;
}
.ans-inner br {
  display: none;
}
@media (min-width: 768px) {
  .faq-outer {
      margin-bottom: 10rem;
  }
  .ans-inner {
      padding: 40px;
  }
  .ans-inner br {
      display: block;
  }
}
/* 20240926 製造の流れについて */
.oem-steps-outer {
  margin-top: 6.25rem;
  margin-bottom: 4rem;
}
.oem-steps-wrap{
  gap: 40px;
  display: flex;
}
.oem-steps-flex.black{
  width: 30%;
}
.oem-steps-flex.black .item:before,
.oem-steps-flex.black .item:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color:#333;
  position:absolute;
  top: 20px;
}
.oem-steps-flex.black .item:before {
  left: 0px;
}
.oem-steps-flex.black .item:after {
  right: 0px;
}
.oem-steps-flex.blue{
  width: 70%;
}
.oem-steps-flex.blue .item{
  width: 50%;
}
.oem-steps-flex h4.ttl{
  padding: 20px 0;
  font-weight: bold;
  text-align: center;
  margin: 20px auto 40px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
.oem-steps-flex.blue h4.ttl{
  color: #0168b6;
  border-top: 2px solid #0168b6;
  border-bottom: 2px solid #0168b6;
}
.oem-steps-flex h5.ttl{
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.oem-steps-flex.blue h5.ttl{
  color: #0168b6;
}
.oem-steps-flex h5.ttl:before,
.oem-steps-flex h5.ttl:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}
.oem-steps-flex.blue h5.ttl:before,
.oem-steps-flex.blue h5.ttl:after {
  background-color: #0168b6;
}
.oem-steps-flex h5.ttl img{
  width: 40px;
  margin-right: 5px;
}
.oem-steps-flex h5.ttl span{
  padding: 0 20px;
}
.oem-steps-flex.blue .oem-steps-inner{
  gap: 40px;
  display: flex;
}
.oem-steps-flex .box{
  padding: 30px 0;                    
  text-align: center;
  margin-bottom: 20px;
}
.oem-steps-inner .item{
  position: relative;
}
.oem-steps-inner .item:before,
.oem-steps-inner .item:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color:#333;
  position:absolute;
  top: 20px;
}
.oem-steps-flex.blue .oem-steps-inner .item:before,
.oem-steps-flex.blue .oem-steps-inner .item:after {
  background-color:#0168b6;
}
.oem-steps-inner .item:before {
  left: 0px;
}
.oem-steps-inner .item:after {
  right: 0px;
}
.oem-steps-inner .box {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  border-radius: 10px;
  border: 2px solid #808080;
}
.oem-steps-flex.blue .oem-steps-inner .box {
  color: #0168b6;
  border: 2px solid #0168b6;
}
.oem-steps-inner .box::after{
  content: "";
  display: block;
  width: 20px;
  height: 22px;
  background-color: rgba(128, 128, 128, 0.3);
  position: absolute;
  left: calc(50% - 10px);
  bottom: -22px;
  margin: auto;
}
.oem-steps-flex.blue .oem-steps-inner .box::after{
  background-color: rgba(1, 104, 182, 0.3);
}
.oem-steps-flex.blue .oem-steps-inner .non-box {
  position: relative;
  border: 2px solid transparent;
}
.oem-steps-flex.blue .oem-steps-inner .non-box::before{
  content: "";
  display: block;
  width: 20px;
  height: calc(100% + 2px);
  background-color: rgba(1, 104, 182, 0.3);
  position: absolute;
  left: calc(50% - 10px);
  top: -2px;
  bottom: auto;
}
.oem-steps-flex.blue .oem-steps-inner .right-bar {
  position: relative;
}
.oem-steps-flex.blue .oem-steps-inner .right-bar::before{
  content: "";
  display: block;
  width: 42px;
  height: 20px;
  background-color: rgba(1, 104, 182, 0.3);
  position: absolute;
  right: -42px;
  top: calc(50% - 10px);
  bottom: auto;
}
.oem-steps-flex.blue .oem-steps-inner .corner-box {
  border: 2px solid transparent;
  position: relative;
}
.oem-steps-flex.blue .oem-steps-inner .corner-box::before{
  content: "";
  display: block;
  width: calc(50% - 8px);
  height: 20px;
  background-color: rgba(1, 104, 182, 0.3);
  position: absolute;
  left: -2px;
  top: calc(50% - 10px);
  bottom: auto;
}
.oem-steps-flex.blue .oem-steps-inner .corner-box::after{
  content: "";
  display: block;
  width: 20px;
  height: calc(50% + 32px);
  background-color: rgba(1, 104, 182, 0.3);
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  margin: 0;
}
.oem-steps-flex.black .oem-steps-inner .box:last-child::after{
  display: none;
}
.oem-steps-flex .blue-box{
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color:#0168b6;
  border: 2px solid #0168b6;
}
.oem-steps-flex .yellow-box{
  padding: 25px 0;
  border: 20px solid #FFFF00;
}
.oem-steps-flex .yellow-box h6.ttl{
  color: #0168b6;
  font-size: 24px;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 10px;
}
.oem-steps-flex .yellow-box h6.ttl .small{
  font-size: 60%;
}
.oem-steps-flex .yellow-box h6.ttl .marker{
  background-color: #ffff66;
}
.oem-steps-flex .yellow-box p{
  line-height: 1.8;
}
@media (min-width: 768px) {
  .oem-steps-outer {
      margin-bottom: 10rem;
  }
}
@media (max-width: 769px) {
  .oem-steps-wrap {
      gap: 0;
      flex-wrap: wrap;
  }
  .oem-steps-flex.black,
  .oem-steps-flex.blue {
      width: 100%;
  }
}
@media (max-width: 599px) {
  .oem-steps-flex.black .item{
      width: 80%;
      margin: 0 auto;
  }
  .oem-steps-inner .item:before,
  .oem-steps-inner .item:after,
  .oem-steps-flex.black .item:before,
  .oem-steps-flex.black .item:after {
      top: 15px;
  }
  .oem-steps-flex h5.ttl{
      font-size: 3.8vw;
  }
  .oem-steps-flex h5.ttl span{
      padding: 0 10px;
  }
  .oem-steps-flex h5.ttl img{
      width: 30px;
  }
  .oem-steps-flex.blue .oem-steps-inner{
      gap: 20px;
  }
  .oem-steps-flex .blue-box,
  .oem-steps-flex.blue .oem-steps-inner .box{
      padding: 20px 0;
  }
  .oem-steps-flex.blue .oem-steps-inner .right-bar::before{
      width: 22px;
      right: -22px;
  }
  .oem-steps-flex .yellow-box{
      border: 10px solid #FFFF00;
  }
  .oem-steps-flex .yellow-box h6.ttl{
      font-size: 20px;
      margin-bottom: 5px;
  }
  .oem-steps-flex .yellow-box h6.ttl .small{
      font-size: 60%;
  }
}

/*--20241223 追加 素材の概要テキスト加筆--*/
.overview-txt-block p{
  margin-bottom: 30px;
  color: #000;
}
.overview-txt-block .overview-sp-br{
  display: none;
}
@media (min-width: 768px){
  .overview-txt-block p .overview-sp-br{
    display: block;
  }
}

/*--20241223 追加 活用例の追加--*/
.example-block .example-list{
  width: 100%;
  margin: 0;
  padding: 0;
}
.example-block .example-list li{
  display: flex;
  text-indent: -1rem;
  padding-left: 1rem;
}
.example-block .example-list li::before{
  display: inline-block;
  content: "";
  margin-top: 6px;
  margin-right: 7px;
  width: 10px;
  height: 10px;
  vertical-align: top;
  border-radius: 5px;
  background-color: #0168b6;
}
.example-block .example-list li p{
  padding-left: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px){
  .example-block .example-list{
    display: flex;
    flex-wrap: wrap;
  }
  .example-block .example-list li{
    width: 50%;
  }
  .example-block .col-example{
    max-width: 254px;
  }
}

/* 20250430 新規ページ作成のご提案 */
.footer-list ul {
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.footer-list ul li {
  padding-left: 1rem;
}
.page-lik-block{
  justify-content: center;
}

/* 背景 */
/* soft-capsule */
.bg-soft-capsule {
  background-image: url(../img/bg_soft_capsule.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* hard-capsule */
.bg-hard-capsule {
  background-image: url(../img/bg_hard_capsule.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* powder */
.bg-powder {
  background-image: url(../img/bg_powder.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* tablet */
.bg-tablet {
  background-image: url(../img/bg_tablet.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* 20250731 アフターサポート体制について */
.contents-support {
    margin: 6.4rem auto;
}
.contents-support .contents-support-wrap &gt; div {
    width: 100%;
    margin-bottom: 1.6rem;
}
.contents-support .contents-support-wrap &gt; div img {
    margin-bottom: .8rem;
    height: 200px;
    object-fit: cover;
}
.contents-support .contents-support-wrap &gt; div p {
    line-height: 1.8;
}
@media (min-width: 768px){
    .contents-support .contents-support-wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .contents-support .contents-support-wrap &gt; div {
        width: calc(100% / 3 - 20px);
        margin-bottom: 1.6rem;
    }
}

/* 20250828 原料について */
#ingredient .material-table-border {
  border: 3px solid #0168b6;
}
#ingredient .col-12 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
#ingredient .table-left-border {
  position: relative;
}
#ingredient .material-name-title .table-left-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20px;
  background-color: #0168b6;
}
#ingredient .material-inner tr {
  background: #ebf5ff;
  margin-bottom: 0;
  margin-right: 0;
  width: 100％;
  text-align: left;
  padding: 20px;
}
#ingredient .material-inner td:first-child {
  color: #0168b6;
  width: 300px;
}
#ingredient .material-inner td:nth-child(2) {
  width: 100px;
}
#ingredient .material-inner td:nth-child(2) span {
  color: #fff;
  background-color: #ff9300;
  display: inline-block;
  padding: 0 3px;
  border-radius: 2px;
}
#ingredient .material-inner tr:nth-child(odd) {
  background: #ffffff;
  margin-bottom: 0;
  margin-right: 0;
  width: 100％;
  text-align: left;
}
#ingredient .material-toggle-parts {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 200;
}
#ingredient .material-toggle-parts span {
  display: block;
  background: #0168b6;
  height: 3px;
  width: 15px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  position: relative;
}
#ingredient .material-toggle-parts span:nth-child(1) {
  top: 2px;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
#ingredient .material-toggle-parts span:nth-child(2) {
  bottom: 1px;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
}
#ingredient .material-toggle.is_set span:nth-child(2) {
  -webkit-transform: rotateZ(0);
  transform: rotateZ(0);
}
#ingredient .more {
  background: #0168b6;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #0168b6;
  margin: 0 auto;
}
#ingredient .more:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/* 20251002 SPハンバーガーメニューの改善 */
@media screen and (max-width: 769px) {
    .dropdown-menu.-material {
    min-width: 12rem;
  }
}

/* 20251002 レイアウト変更について */

/* header */
.header-container {
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #abb8c3;
    padding-left: 15px;
}
@media screen and (min-width: 1200px) {
    .d-xl-flex {
        display: -webkit-box !important;
        display: flex !important;
        justify-content: space-around;
    }
    .pc-nav-menu {
        width: 100%;
    }
    #header .menu-list {
        padding: 1rem 4rem 1rem;
    }
    .header-contact {
        display: flex;
        align-items: center;
    }
    .header-contact .character {
        max-width: 94px;
    }
    .header-contact a {
        background-color: #0168b6;
        padding: 1rem 0.5rem;
        display: block;
        color: #fff;
    }
    .header-contact a:hover {
        color: #fff;
    }
    .header-contact a:visited {
        color: #fff;
    }
    .header-contact a img {
        max-width: 40px
    }
    .pc-nav-menu .menu-list li a.-top {
        position: relative;
        padding-left: 30px;
    }
    .pc-nav-menu .menu-list li a.-top::before {
        content: '';
        display: inline-block;
        width: 27px;
        height: 18px;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        left: 0;
        top: 0;
        background-image: url(../img/home-icon.png);
        background-size: contain;
        vertical-align: middle;
    }
    .dropdown-menu.border-blue {
        max-width: 425px;
    }
}

@media screen and (max-width: 1199px) {
    .header-top {
        border-bottom: none;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
    }
    .header-contact {
        display: none;
    }
}

@media screen and (max-width: 769px) {
    .header-top {
        flex: 0 0 78%;
        max-width: 78%;
    }
    #header .main-logo {
        max-width: 100%;
    }
}

/* リンクボタン */
.oem-link {
    margin-top: 80px;
}
.oem-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 64px;
    padding: 8px 24px;
    font-family: sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    overflow-wrap: anywhere;
    background-color: #0168b6;
    margin: 0 auto;
}
.oem-link a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.oem-link a:visited{
    color: #fff;
}
@media screen and (max-width: 769px) {
    .oem-link {
        margin-top: 30px;
    }
}

/* 弊社の特徴 */
#feature {
    margin-bottom: 80px;
}
.feature-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.feature-item {
    width: calc((100% - 40px)/2);
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}
.feature-item .txt {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.feature-link {
    margin-top: auto;
}
.feature-content .tag {
    text-align: left;
    margin-bottom: 20px;
}
.feature-content .tag .feature {
    padding: 0.25rem 2rem;
    border-radius: 50rem;
    background-color: #0168b6;
}

.feature-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 54px;
    padding: 8px 24px;
    font-family: sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    overflow-wrap: anywhere;
    background-color: #0168b6;
    margin: 0 auto;
}
.feature-link a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.feature-link a:visited{
    color: #fff;
}
.feature-content .ttl {
    text-align: left;
    min-height: 1em;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 769px) {
    .feature-content {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }
}

/* 20251016 
/soft_capsule/・/hard_capsule/・/tablet/・/powder/ 
活用事例の掲載 */
.example-block .example-list.example-list-pset {
  padding: 0px 30px;
}
.example-block .example-list li.example-item {
  display: block;
  text-indent: 0rem;
  padding-left: 0rem;
}
.example-item-imgbox {
  margin-bottom: 6px;
}
.example-block .example-list li.example-item::before {
  content: unset;
}
.material .check-box-02 img.example-item-img {
  max-width: 100%;
}
.example-block .example-list li p.example-item-txt {
  padding-left: 0rem;
  padding: 0px 8px;
}
.example-item-txt:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background-color: #0168b6;
  margin-right: 4px;
}
@media screen and (max-width: 769px) {
  .example-block .example-list li.example-item:not(:last-of-type) {
    margin-bottom: 26px;
  }
}
@media (min-width: 768px) {
  .example-block .example-list li.example-item {
    width: calc(94% / 2);
  }
  .example-block .example-list li.example-item:nth-of-type(odd) {
    margin-right: 6%;
  }
  .material .check-box-02 img.example-item-img {
    max-width: 100%;
  }
}
/* 20251030 
/soft_capsule/・/hard_capsule/・/tablet/・/powder/ 
企業情報の掲載 */
.company_information {
  border-bottom: 2px solid #0168b6;
  margin-bottom: 50px;
}
.company_information dl:first-child {
  border-top: 2px solid #0168b6;
}
.company_information dl {
  margin-bottom: 0;
  border-bottom: 1px solid #dcdcdc;
}
.company_information dl dt {
  padding: 0.6rem 0;
  width: 100%;
}
.company_information dl dd {
  padding: 0.6rem 0;
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .company_information dl dt {
    padding: 1.3rem;
    width: 300px;
  }
  .company_information dl dd {
    padding: 1.3rem;
    width: calc(100% - 300px);
  }
}</pre></body></html>