/** Shopify CDN: Minification failed

Line 413:1 Unexpected "="

**/

/*============================================================================
  /pages
  共通目次
==============================================================================*/
.section-page-mokuzi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  .item{
    margin-bottom: 10px;
    @media screen and (max-width: 767px) {
      margin-bottom: 20px;
    }
    a{
      display: block;
      text-decoration: none;
      margin: 0 20px;
      position: relative;      
      @media screen and (max-width: 767px){
        font-size: 12px;
      }
      &:hover{
        &:before{
          content: "";
          position: absolute;
          bottom: -10px;
          display: inline-block;
          width: 38px;
          height: 2px;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translate(-50%);
          background-color: #222;
          border-radius: 2px;
        }
      }
    }
  }
}

/*============================================================================
  /pages/factory
  工場ページの目次
==============================================================================*/
.section-factory-mokuzi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  .item{
    margin-bottom: 10px;
    @media screen and (max-width: 767px) {
      margin-bottom: 20px;
    }
    a{
      display: block;
      text-decoration: none;
      margin: 0 20px;
      position: relative;      
      @media screen and (max-width: 767px){
        font-size: 12px;
      }

    }
  }
}


 

/* ============ タイトル関係 ============ */

.title-border {
  text-align: center;
  margin-bottom: 50px!important;
  font-weight: 500!important;
  position: relative;
  font-size: 20px!important;
  letter-spacing: 0.1em;
  color: #222222;
  @media (max-width: 767px) {
    font-size: 18px!important;
  }
  &:before{
    content: "";
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 38px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #222;
    border-radius: 2px;
  }
  span{
    display: inline-block;
    font-size: 9px;
    align-content: normal;
    border: 1px solid #222222;
    padding: 4px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
    line-height: 1;    
  }
}

/* ============ テキスト関係 ============ */


/* 中央揃え */
.txt-center{
  text-align: center;
}

.txt-center-pc{  
  @media (min-width: 768px) {
    text-align: center;
  }
}


/* 背景枠付きテキストボックス */
.txt-waku{
  background: #F7F7F7;
  padding: 60px;  
  @media (max-width: 767px) {
    padding: 45px 24px;
  }
  &.txt-waku--wide{
    @media (max-width: 767px) {      
      width: 100vw;
      margin: 0 calc(50% - 50vw);
    }
  }
}


/* 背景枠付きSTEPテキストボックス */
.txt-waku-step{
  background: #F7F7F7;
  padding: 60px;
  position: relative;
  @media (max-width: 767px) {
    padding: 90px 24px 24px 24px;
  }
  .txt-waku-step--number{
    position: absolute;
    left: 0;
    top: 10px;
    background: #222;
    color: #FFF;
    padding: 8px 50px;
    font-weight: 500;
    @media (max-width: 767px) {
      top: 30px;
      left: -12px;
      padding: 9px 50px;
    }
  }
}


/* リストチェックボックス形式 */
.ul-chechbox{
  margin: 0!important;
  li{
    list-style: none;
    position: relative;
    padding-left: 40px;
    margin-bottom: 5px;
    @media (max-width: 767px) {
      padding-left: 30px;
    }
    &:before{
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background: url(https://cdn.shopify.com/s/files/1/0549/1834/8887/files/icon_checklist.png?v=1644591306)no-repeat center center/contain;
      position: absolute;
      left: 0;
      top: 8px;
    }
  }
}






/* リスト形式のテーブル */
.table-list{  
  border-top: none!important;
  border-left: none!important;
  line-height: 1.7;
  border-spacing: 0 20px;  
  overflow: hidden;
  border-collapse: separate;
  tbody{
    position: relative;
    &:before{
      content: "";
      display: block;
      height: 1px;
      background: #EFEFEF;
      width: 100%;
      position: absolute;
      top: 10px;
    }
  }
  tr{
    position: relative;
    &:before{
      content: "";
      display: block;
      height: 1px;
      background: #EFEFEF;
      width: 100%;
      position: absolute;
      bottom: -10px;
      left: 0;
    }    
  }
  
  th{
    background: #F7F7F7!important;
    border-right: none!important;
    border-bottom: none!important;
    text-align: center!important;
    @media (max-width: 767px) {
      font-size: 12px;
    }
  }
  td{
    border-right: none!important;
    border-bottom: none!important;
    padding-left: 50px!important;
    @media (max-width: 767px) {
      font-size: 12px;
      padding-left: 15px!important;
    }
  }
  @media (max-width: 767px) {
  	&.table-list-spcol1{
      border-spacing: 0;
      &:before{
        display: none;
      }
      tr{
        &:before{
          display: none;
        }
      }
      th{        
        display: block;
        width: 100%;
        max-width: none!important;
        padding: 7px;        
      }
      td{        
        display: block;
        width: 100%;
        padding-left: 0!important;
        padding: 15px 0 25px 0;   
        text-align: center;
      }
    }
  }
}


/* ============ ボタン関係 ============ */

/* 吹き出し付きボタン */
.btn-hukidashi{
  position: relative;
  margin-top: 40px;
  @media (max-width: 767px) {
    margin-top: 80px;
  }      
  span{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 12px;
    background: #222;
    color: #FFF;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 20px;
    @media (max-width: 767px) {
      padding: 10px 25px;
      top: -25px;
      display: block;
    }
    &:before{
      content: "";
      display: block;
      position: absolute;
      bottom: -14px;
      left: 50%;
      margin-left: -8px;
      border: 8px solid transparent;
      border-top: 6px solid #222;
      z-index: 0;
    }
  }
  a{
    border: 1px solid #222222;
    display: inline-block;    
    padding: 15px 40px;
    text-decoration: none!important;
    font-weight: 500;
  }
    p{
    border: 1px solid #222222;
    display: inline-block;    
    padding: 15px 40px;
    text-decoration: none!important;
    font-weight: 500;
    font-size: 25px;  
  }
}

/* ボタン2カラム */
.btn-area-col2{
  display: flex;
  gap: 50px;
  @media (max-width: 767px) {
    display: block;    
  }  
  .item{
    width: 50%;
    @media (max-width: 767px) {
      width: 100%;
    }
    &:first-child{
      text-align: right;      
      @media (max-width: 767px) {
        margin-bottom: 20px;
      }
    }
    a{
      @media (max-width: 767px) {
        width: 100%;
      }
    }
  }
}


/* ============ 背景色 ============ */

.bg-white{background: #FFF;}
.bg-gray{background: #F7F7F7;}


/* ============ デバイス事の表示切替 ============ */
.visible-xs,.visible-sm,.visible-md,.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}


*============================================================================
  #NEWレスポンシブ
==============================================================================*/


/* 背景枠付きSTEPテキストボックス */
.txt-waku-scene{
  background: #F7F7F7;
  padding: 60px;
  position: relative;
  p{
   margin: 10px 0;  
   }
    h3{
     font-size: 1.1em;  
   }
    h3{
     font-size: 1.1em;  
   }
  @media (max-width: 767px) {
       width: 100vw;
       margin: 0 calc(50% - 50vw);  
    padding: 90px 24px 24px 24px;
  }
  .txt-waku-scene--number{
    position: absolute;
    left: 0;
    top: 10px;
    background: #222;
    color: #FFF;
    padding: 8px 50px;
    font-weight: 500;
    @media (max-width: 767px) {
      top: 40px;
      left: 0;
      padding: 9px 50px;
    }
  }
}


.Faq__Section {
  margin-bottom: 20px;
}

.Faq__Section ~ .Faq__Section {
  margin-top: 34px;
}

.Faq__Item {
  position: relative;
  margin: 14px 0;
}

.Faq__Icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--text-color-light);
  transition: all 0.3s ease-in-out;
}

.Faq__Icon svg {
  width: 8px;
  height: 10px;
  vertical-align: baseline;
}

.Faq__Item[aria-expanded=true] .Faq__Icon {
  transform: rotateZ(90deg);
  color: var(--heading-color);
}

.Faq__ItemWrapper {
  padding-left: 26px;
}

.Faq__Question {
  display: block;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}

.Faq__AnswerWrapper {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.25s ease-in-out, visibility 0s ease-in-out 0.25s;
}

.Faq__Item[aria-expanded=true] .Faq__AnswerWrapper {
  visibility: visible;
  transition: height 0.25s ease-in-out;
}

.Faq__Answer {
  padding: 16px 0 22px 0;
}

.Faq__Item--lastOfSection .Faq__Answer {
  padding-bottom: 0;
}

.FaqSummary {
  list-style: none;
  margin: 0;
  padding: 0;
}

.FaqSummary__Item {
  margin-bottom: 12px;
}

.FaqSummary__Item.is-active::after {
  width: 100%;
}

.FaqSummary__Link {
  display: block;
}

.FaqSummary__LinkLabel {
  position: relative;
  display: inline-block;
}

.FaqSummary__LinkLabel::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left center;
  background: currentColor;
  transition: transform 0.2s linear;
}

.FaqSummary__Item.is-active .FaqSummary__LinkLabel::after {
  transform: scale(1, 1);
}

@media screen and (min-width: 641px) {
  .Faq__Section {
    margin-bottom: 34px;
  }

  .Faq__Section ~ .Faq__Section {
    margin-top: 60px;
  }
}

