@charset "utf-8";



#btn-back-to-top {
  z-index: 100;
}



.section h2 {
    /* font-size: 8.75rem; */
    font-size: 8rem;
    font-family: "sofia-pro", sans-serif!important;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    margin-bottom: 7rem;
    background: linear-gradient(
      to right,
      #90cae9 0%,
      #00a1e6 20%,
      #85b19c 45%,   /* ← どこまで緑を伸ばすか調整 */
      #cab71b 65%    /* ← 黄色が始まる位置を早めると見える範囲が広がる */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section h2.text-transparent {
  background: linear-gradient(to right, 
    rgba(0, 161, 230, 0.2) 0%, 
    rgb(24 180 247 / 90%) 20%, 
    rgba(133, 177, 156, 0.6) 45%, 
    rgba(202, 183, 27, 0.6) 65%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section h2 > span.h2-ja {
  display: block;
  position: static;
  margin-top: -3rem;
  font-size: 2.1rem;
  font-family: "nitalago-ruika", sans-serif;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 0.2rem;
  color: var(--bs-black);
  -webkit-text-fill-color: initial;
}

@keyframes fadeInLine {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3.5rem;
  transform: translateX(-50%);
  width: 0.5px;
  height: 22px;
  background-color: #000;
  opacity: 0;
  animation: fadeInLine 0.8s ease forwards;
  animation-delay: 1.6s; /* ← span（事業内容）と同タイミング */
}


@media (max-width: 991px) {
    h2 {
        font-size: 1.6rem;
    }

    h2 > span::before {
        left: 49.5%;
    }

}

@media (max-width: 767.98px) {
    .section h2 {
        font-size: 4.3rem;
        margin-bottom: 4rem;
        /* line-height: 0.9; */
    }

    .section h2.text-transparent {
        background: linear-gradient(to right, 
        rgba(0, 161, 230, 0.6) 0%, 
        rgba(133, 177, 156, 0.6) 45%, 
        rgba(202, 183, 27, 0.6) 65%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    .section h2 > span.h2-ja {
        font-size: 1.3rem!important;
        letter-spacing: 0;
        margin-top: -1.5rem;
    }

    .section h2::after {
        height: 12px;
        bottom: -2.5rem;
    }
}



.section .section-copy-container {
  text-align: center;
  margin-bottom: 3rem;
}

.section .section-copy p {
  font-size: 1.5rem;
  font-family: "nitalago-ruika", sans-serif;
  font-style: normal;
  font-weight: 100;
  line-height: 1.6!important;
}

.section .section-discription-container {
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section .section-discription-container {
      text-align: left;
      padding: 0 2rem;
  }
}

@media (max-width: 991px) {
  /* .section .section-discription p br{
    display: none;
  } */
}

@media (max-width: 767.98px) {
  .section .section-copy p {
    font-size: 1.125rem;
  }

  .section .section-copy-container {
    margin-bottom: 1.5rem;
  }

  .section .section-discription-container {
      text-align: left;
      padding: 0 1rem;
  }

  .section .section-discription p {
      font-size: 0.875rem;
      font-weight: 500;
  }

}

@media (max-width: 430px) {
  .section .section-discription-container p {
    letter-spacing: -0.03rem;
  }
  .section .section-discription p {
      font-size: 1rem;
      font-weight: 500;
  }
}

@media (max-width: 375px) {
  .section .section-discription-container {
    padding: 0;
  }
}

.page-guide {
  position: absolute;
  right: 7%;
  top: 17rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 0 0.5rem;
  border-left: 1px solid var(--bs-black);
  height: 23rem;
}

.page-guide p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
}

.page-guide span {
  margin-top: 20px;
  font-weight: 300;
  position: relative;
}

.page-guide span::before {
  content: "ー";
  font-weight: 100;
  writing-mode: horizontal-tb; 
  transform: rotate(90deg); 
  padding: 0 1.5rem 0 0;
  position: relative;
  left: 0.2rem;
}

.btn-gradient {
    width: 340px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .page-guide {
    display: none;
  }
}

@media (max-width: 991px) {
    .btn-gradient {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
  .page-guide {
    display: none;
  }

}

@media (max-width: 430px) {
    .btn-gradient {
        width: 100%;
    }
}



/* fadeInUpの移動距離を短くする */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 7%, 0); /* 50%の移動距離 */
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


section p {
  line-height: 2.2;
}

/* キービジュアル */
div#main-visual {
    position: relative;
    overflow: hidden;
    background:url(../img/main-visual-bg.webp) no-repeat;
    background-size:cover
}

#main-visual.section {
    display: block;
}

.show-pc {
  display: none;
}

.show-sp {
  display: block;
}

@media (min-width: 991px) {
  .show-pc {
    display: block;
  }
  
  .show-sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  div#main-visual {
      background:url(../img/main-visual-bg-sp.webp) no-repeat;
      background-size: cover;
      min-height: 100vh;
  }
}

@media (max-width: 767.98px) {
  div#main-visual {
    background:url(../img/main-visual-bg-sp.webp) no-repeat;
    background-size:100%;
    min-height: 91vh;
  }

  /* div#main-visual.vh-100 {
    height: initial!important;
  } */

}

@media (max-width: 480px) {
  div#main-visual {
    background-size: contain;
    min-height: 83vh;
  }

  .main-navi-scroll {
      top: 10vh;
  }
}

@media (min-width: 403px) and (max-width: 430px) {
  div#main-visual.vh-100 {
    height: initial!important;
  }
}


@media (max-width: 390px) {
  div#main-visual {
    background-size: contain;
    min-height: 86vh;
  }

  div#main-visual.vh-100 {
    height: initial!important;
  }
}

@media (max-width: 375px) {
  div#main-visual {
    background-size: contain;
    min-height: 103vh;
  }
}


/* メインコピー */
.main-copy-container {
    position: absolute;
    z-index: 20;
    top: 23vh;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1012px;
    /* max-width: 1150px; */
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
    background: url(../img/main-copy-bg.webp) no-repeat top left;
    background-size: cover;
    overflow: hidden;
}

#main-copy {
    position: relative;
    text-align: center;
    width: 100%;
    font-family: "nitalago-ruika", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 5.7rem;
    color: var(--bs-white);
    margin-bottom: 0;
}

/* 既存のスタイルに追加 */
.main-copy-icon {
  display: inline-block;
  width: 55px;
  height: 97px;
  /* background-image: url('../img/h1-icon.png'); */
  background-image: url('../img/h1-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  /* background-position: center;
  vertical-align: middle; */
  /* margin: 0 10px; */
  position: relative;
  top: 11px;
  left: -3%;
  animation: lightBulbGlow 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes lightBulbGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  10% {
    filter: drop-shadow(0 0 8px rgba(255, 237, 160, 0.7))
            drop-shadow(0 0 15px rgba(255, 220, 100, 0.4))
            drop-shadow(0 0 20px rgba(255, 200, 50, 0.2));
  }
  15% {
    filter: drop-shadow(0 0 10px rgba(255, 237, 160, 0.8))
            drop-shadow(0 0 18px rgba(255, 220, 100, 0.6))
            drop-shadow(0 0 25px rgba(255, 200, 50, 0.3));
  }
  25% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}

/* レスポンシブ対応 */
@media (max-width: 767.98px) {
  .main-copy-icon {
    width: 42px;
    height: 76px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .main-copy-icon {
    width: 18px;
    height: 46px;
    top: 4px;
  }
}


.main-sub-copy-container {
    position: absolute;
    z-index: 25;
    top: 43vh;
    left: 0;
    right: 0;
    margin: 1rem 0;
    text-align: center;
    display: block;
}

#main-sub-copy {
    color: var(--bs-white);
    font-family: "nitalago-ruika", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.9rem;
}

#main-sub-copy span {
    font-size: 2.4rem;
}

.main-discription-container {
    position: absolute;
    z-index: 30;
    /* top: 54vh; */
    top: 47vh;
    left: 0;
    right: 0;
    margin: 1rem 0;
    text-align: center;
    display: block;  
}

#main-discription {
    color: var(--bs-white);
    /* font-size: 1.25rem; */
    font-size: 1.5rem;
    font-weight: 500;
}


.main-navi-container {
  position: absolute;
  z-index: 30;
  bottom: 10vh;
  left: 0;
  right: 0;
  margin: 1rem 0;
  text-align: center; /* ← 子要素（#main-navi）を中央寄せ */
}

#main-navi {
  color: var(--bs-white);
  font-size: 1rem;
  position: relative;
  display: inline-block; /* ← 文字幅に合わせる＆中央寄せ可能に */
  padding: 1rem 2rem 0rem 2rem;
  box-sizing: border-box;
}

/* 左上のかぎかっこ */
#main-navi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-top: 1px solid var(--bs-white);
  border-left: 1px solid var(--bs-white);
}

/* 右下のかぎかっこ */
#main-navi::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-bottom: 1px solid var(--bs-white);
  border-right: 1px solid var(--bs-white);
}


.main-navi-scroll {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 47px;
  background: url("../img/main-navi-scroll.png") no-repeat center center;
  background-size: contain;
  animation: scroll-fade 4s ease-in-out infinite;
  opacity: 0;
}

/* 矢印が上から下にフェードイン → フェードアウト */
@keyframes scroll-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}




@media (max-width: 1500px) {
    .main-copy-container {
      /* bottom: 22vh; */
    }
    
    #main-copy {
      /* font-size: 3.5rem; */
    }
}

@media (max-width: 1319px) {
    #main-copy {
        /* font-size: 3.5rem; */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .main-copy-container {
       width: 90%;
       background-size: contain;
       top: 30vh;
    }

    .main-copy-icon {
      width: 39px;
      top: 1px;
    }

    .main-sub-copy-container {
      top: 36vh;
    }

    .main-navi-container {
      bottom: 13vh;
    }

    .main-navi-scroll {
      bottom: -5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .main-copy-container {
       width: 90%;
       background-size: contain;
       top: 30vh;
    }

    .main-copy-icon {
      width: 46px;
      top: 9px;
    }

    .main-sub-copy-container {
      top: 36vh;
    }

    .main-navi-container {
      bottom: 13vh;
    }

    .main-navi-scroll {
      bottom: -5rem;
    }
}

@media (max-width: 767.98px) {
    .main-copy-container {
        opacity: 1 !important;
        position: absolute !important;
        top: 14vh !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        width: 90% !important;
        max-width: none !important;
        background: url(../img/main-copy-bg-sp.webp) no-repeat top left;
        background-size: contain;  
        overflow: visible;
        padding: 0.3rem 0;
    }

    #main-copy {
        font-size: 1.98rem !important;
        letter-spacing: 0;
        position: relative !important;
        height: auto !important;
        max-width: calc(100vw - 0.25rem) !important;
        padding: 0 !important;
        line-height: 1.4 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible;
    }

    .main-sub-copy-container {
        top: 22vh;
    } 

    #main-sub-copy {
        font-size: 1.2rem;
        font-weight: 100;
        font-style: normal;
    }

    #main-sub-copy p {
        line-height: 1.3;
    }

    #main-sub-copy span {
        font-size: 1.6rem;
        font-weight: 100;
        font-style: normal;
    }

    .main-discription-container {
        /* top: 34.5vh; */
        top: 22vh;
    }

    #main-discription {
        font-size: 1.0rem;
        font-weight: 100!important;
    }

    .main-navi-container {
        top: 40vh;
        /* top: 46vh; */
    }

    #main-navi {
        /* font-size: 0.77rem; */
        font-weight: 100!important;
        padding: 0.8rem 1.2rem 0rem 1.2rem;
    }

    #main-navi::before, #main-navi::after {
        width: 15px;
        height: 15px;  
    }

    #main-navi p {
        line-height: 1.3;
    }

    .main-navi-scroll {
        bottom: -2rem;
        top: 8vh;
        width: 8px;
        height: 25px; 
    }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) {
    .main-copy-container {

    }
}
@media (max-width: 390px) {

    #main-discription {
        font-size: 0.9375rem;
        font-weight: 100!important;
    }
  }

@media (max-width: 375px) {
    .main-navi-container {
        top: 47vh;
    }
}



/* WOW.jsアニメーション開始前に要素を非表示にする */
.wow {
  visibility: hidden;
}

/* アニメーション実行中・完了後は表示 */
.wow.animated {
  visibility: visible;
}



/* 事業内容 */
section#business {
  position: relative;
  text-align: center;
  padding: 5rem 0 0;
  z-index: 1;
}

section#business .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section#business .contents-wrapper {
  overflow: hidden;
}

section#business .business-contents {
  position: relative;
  min-height: 1533px;
  background: none;
  overflow: visible;
  z-index: 1;
  padding: 20rem 0 15rem 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#business .business-contents {
    padding: 12rem 0 5rem 0;
    min-height: 1340px;
  }
  section#business #food.business-contents {
    min-height: 1095px;
  }
  section#business .contents-wrapper {
    padding: 0 2rem;
  }
  section#business .section-discription br.show-sp {
    display: none;
  }

}

@media (max-width: 767.98px) {
  section#business .business-contents {
    /* min-height: 1066px; */
    min-height: 1298px;
    padding: 9rem 0 2rem 0;
  }

}

@media (max-width: 480px) {

}

section#business .business-title-container {
  display: inline-block;
  position: relative;
}




section#business .business-title-container h3 {
  position: relative;
  display: inline-block;
  font-size: 1.65rem;
  font-weight: 500;
  color: #fff;
  padding: 0.4rem 1.3rem 0.6rem;  
  line-height: 1.2;
  z-index: 0; 
}


section#business .business-title-container h3::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewX(-14deg);
  background: #19ad36;
  z-index: -2; 
  translate: 7px 6px;
  border-radius: 2px; 
}


section#business .business-title-container h3::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewX(-14deg);
  background: #000;
  z-index: -1; 
  border-radius: 2px;
}


section#business .business-title-container div {
  position: absolute;
  right: 50%;
  top: -3rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;  
  font-size: 0.625rem;
  font-weight: 100;
  color: var(--bs-black);
  letter-spacing: 0.1em;
  z-index: 6;   
}

@media (max-width: 767.98px) {
  section#business .business-title-container {
    margin-bottom: 1rem;
  }
  section#business .business-title-container h3 {
    font-size: 1.2rem;
    padding: 0.2rem 1.3rem 0.4rem;
  }
  section#business .business-title-container div {
    right: 45%;
  }
}

section#business .business-contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
  height: 100%;
}




section#business p.business-detail {
  display: block;
  margin-bottom: 4rem;
  font-weight: 500;
}



section#business .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 4rem;
}

section#business .card .card-body {
  text-align: left;
  padding: 0 2rem;
}

section#business #tool .pickup-slider .col-lg-6:nth-child(even)  {
  padding-left: 3rem;
}
section#business #tool .pickup-slider .col-lg-6:nth-child(even) .card .card-body {
  padding: 0 0 0 2rem;
}

section#business #injection .pickup-slider .card .card-body {
    padding: 0 0 0 1.5rem;
}


section#business .card .card-title {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 0.5rem 2rem 0.5rem 0.8rem;
  margin-bottom: 1.5rem;
  z-index: 0;
  overflow: visible;
}

/* 濃い緑（右下が斜め） */
section#business .card .card-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(25,173,54);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  z-index: -2
}

/* 薄い緑（右上が斜め）画像で重ねる */
section#business .card .card-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px; /* ← 画像の幅分だけ */
  height: 100%;
  background: url("../img/business-tool-card-title-bg.webp") no-repeat right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

section#business .card .card-text {
  line-height: 2.0!important;
  /* font-size: 0.975rem; */
}

section#business .card .img-injection-02 {
  width: 70%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#business p.business-detail {
      /* font-size: 0.875rem; */
      text-align: left;
      padding: 0 2rem;
  }
  section#business .card .card-title {
      font-size: 0.9rem;
      padding: 0.5rem 1rem 0.5rem 0.5rem;
  }

  section#business .card .card-body {
      text-align: left;
      padding: 0 0 0 1rem;
  }

  section#business .card .card-text {
    text-align: left;
    /* font-size: 0.875rem; */
  }
}

@media (max-width: 767.98px) {
  section#business p.business-detail {
      /* font-size: 0.875rem; */
      text-align: left;
      padding: 0 1rem;
  }

  section#business #injection p.business-detail {
    margin-bottom: 0rem;
  }

  section#business .card .card-text {
    text-align: left;
    /* font-size: 0.875rem; */
  }

  section#business .card .img-injection-02 {
    width: 80%;
  }
  section#business #tool .pickup-slider .col-lg-6:nth-child(even) {
    padding-left: 0;
  }
  section#business #tool .pickup-slider .col-lg-6:nth-child(even) .card .card-body {
    padding: 0.5rem 0.5rem 0.5rem 0;
  }

  section#business #injection .pickup-slider .card .card-body {
    padding: 0.5rem 0.5rem 0.5rem 0;
  }
}



/* 各セクション */
section#business #tool::before {
  background-image: url("../img/business-tool-bg.webp");
  clip-path: polygon(0 0, 100% 280px, 100% 100%, 0 calc(100% - 280px));
}

section#business #injection::before {
  background-image: url("../img/business-injection-bg.webp");
  clip-path: polygon(0 280px, 100% 0, 100% calc(100% - 280px), 0 100%);
}

section#business #food::before {
  background-image: url("../img/business-food-bg.webp");
  clip-path: polygon(0 0, 100% 280px, 100% 100%, 0 calc(100% - 280px));
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#business #tool::before {
    background-image: url("../img/business-tool-bg.webp");
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 calc(100% - 100px));
  }

  section#business #injection::before {
    background-image: url("../img/business-injection-bg.webp");
    clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  }

  section#business #food::before {
    background-image: url("../img/business-food-bg.webp");
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 calc(100% - 100px));
  }
}

@media (max-width: 767.98px) {
  section#business #tool::before {
    background-image: url("../img/business-tool-bg.webp");
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }

  section#business #injection::before {
    background-image: url("../img/business-injection-bg.webp");
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  }

  section#business #food::before {
    background-image: url("../img/business-food-bg.webp");
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }
}



/* 重なり */
section#business #injection {
  margin-top: -300px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#business #injection {
    margin-top: -118px;
  }
}


section#business #food {
  margin-top: -300px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#business #food {
    margin-top: -103px;
  }
}

@media (max-width: 767.98px) {
  section#business #injection {
    margin-top: -60px;
  }

  section#business #food {
    margin-top: -60px;
  }

}

/* z-index順序 */
section#business #tool { z-index: 1; }
section#business #injection { z-index: 2; }
section#business #food { z-index: 3; }


@media (max-width: 767.98px) {

    section#business .pickup-slider {
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }

    section#business .pickup-slider.swiper {
        padding: 0; /* 左右に80pxのパディング */
        margin: 0 -80px; /* はみ出した分を相殺 */
    }

    section#business .pickup-slider .swiper-wrapper {
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    section#business .pickup-slider .swiper-slide {
        /* width: 200px;  */
        width: 240px; 
        box-sizing: border-box;
        margin: 0 10px;
    }

    section#business #injection .pickup-slider .swiper-slide {
        width: 236px;
    }

    section#business #food .pickup-slider .swiper-slide {
        width: 240px;
    }
    

    section#business .pickup-slider.swiper-initialized {
        margin: 0 -15px; /* スライダーの左右マージンを調整 */
    }
    

    
    /* スライドの基本設定 */
    section#business .pickup-slider .swiper-slide .card {
        transition: all 0.3s ease;
        margin-bottom: 0.5rem;
    }

    section#business .pickup-slider .swiper-slide .card .col-md-4 {
        height: 185px;
    }
    section#business #injection .pickup-slider .swiper-slide .card .col-md-4 {
      height: 205px;
    }

    section#business #food .pickup-slider .swiper-slide .card .col-md-4 {
      height: 205px;
    }

    section#business .pickup-slider .swiper-slide .card img {
        height: 100%;
    }

    #business #injection .card .col-md-5 {
      height: 200px; /* 画像枠の高さを固定（お好みで調整） */
    }

    #business #injection .card img {
      height: 100%;
      width: auto;
      object-fit: contain;
      object-position: center center;
    }
   
    #business #food .card .col-md-5 {
      height: 200px; /* 画像枠の高さを固定（お好みで調整） */
    }

    #business #food .card img {
      height: 100%;
      width: auto;
      object-fit: contain;
      object-position: center center;
    }

    section#business #injection .pickup-slider .swiper-slide:nth-child(2) .card img {
        height: 12rem;
        width: auto;
    }

    section#business #injection .pickup-slider .col-md-4 {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    section#business #injection .pickup-slider .col-md-4 picture {
      display: flex;
      width: 100%;
      justify-content: center;
    }

    /* カードボディの高さを統一 */
    section#business .pickup-slider .card-body {
        /* height: 220px;  */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0.5rem 0.5rem 0.5rem 0;
    }
    
    section#business .pickup-slider .card-title {
        font-size: 1.0rem;
        flex-shrink: 0;
        margin-bottom: 10px;
        padding: 0.6rem 2rem 0.7rem 0.8rem
    }
    
    section#business #food .pickup-slider .card-title {
        letter-spacing: -0.04rem;
    }

    section#business .pickup-slider .card-text {
        flex-grow: 1; 
        margin-bottom: 15px;
        line-height: 1.6!important;
        letter-spacing: -0.03rem;
    }
    
    section#business .pickup-slider .card-link-text {
        flex-shrink: 0; 
        margin-top: auto;
    }
    
    section#business .pickup-slider .swiper-pagination {
        margin-top: 30px;
    }
    
    section#business .pickup-slider .swiper-pagination li button:before {
        font-size: 12px;
        opacity: 0.5;
    }
    
    section#business .pickup-slider .swiper-pagination li.swiper-slide-active button:before {
        opacity: 1;
    }

    section#pickup h3.card-title {
        font-size: 1.125rem;
    }
}

/* section#business .pickup-slider 内のスクロールバーを対象 */
section#business .swiper-scrollbar {
  display: none;
}

@media (max-width: 767.98px) {
  section#business .swiper-scrollbar {
    display: block;
    height: 10px;
    background: #fff;       /* バー全体の背景 */
    border-radius: 8px;
    margin-top: 1rem;
    overflow: hidden;
    width: 90%;
  }

  section#business .swiper-scrollbar-drag {
    background: #61677a;    /* 表示中部分 */
    border-radius: 8px;
    left: -12px;
    width: 156px !important;
  }
}


/* 業種別カスタマイズ */

/* 工作機械 */
section#business #tool .page-guide {
  top: 23.8rem;
}

/* section#business #tool .card .card-title::before {
  background-color: rgb(25, 173, 54);
}

section#business #tool .card .card-title::after {
  background-color: rgba(25, 173, 54, 0.5);
} */



/* 産業機械 */
section#business #injection.business-contents {
  min-height: 1420px;
}

section#business #injection .business-title-container h3::before {
  background: #4ec0e1;
}

section#business #injection .card .card-title::before {
  background-color: rgb(78, 192, 225);
}

section#business #injection .card .card-title::after {
  background: url("../img/business-injection-card-title-bg.webp") no-repeat right bottom;
}

section#business #injection.business-contents {
  min-height: 1047px;
}

@media (max-width: 767.98px) {
   section#business #injection .business-title-container h3::before {
    background: #4ec0e1;
  }

  section#business #injection.business-contents {
    min-height: 1115px;
  }
}


/* 食品機械 */
section#business #food.business-contents {
    padding: 20rem 0 0 0;
}

section#business #food .business-title-container h3::before {
  background: #f39700;
}

section#business #food .card .card-title::before {
  background-color: rgb(243, 151, 0);
}

section#business #food .card .card-title::after {
  background: url("../img/business-food-card-title-bg.webp") no-repeat right bottom;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#business #food.business-contents {
      padding: 12rem 0 0 0;
  }
}


@media (max-width: 767.98px) {
  section#business #food.business-contents {
      /* min-height: 950px; */
      min-height: 1060px;
      padding: 9rem 0 0rem 0;
  }
}




@media (max-width: 1199px) {

    
}

@media (max-width: 991px) {
    section#business {
        /* margin-top: -14rem; */
    }

    section#business .container {
        padding: 0;
        max-width: none;  
    }

    section#business .contents-wrapper {
        margin-top: 2rem;
        margin-bottom: 0;
    }
  
}

@media (max-width: 767.98px) {
    section#business {
        margin-top: -14rem;
        padding: 2rem 0 0;
    }

    section#business .contents-wrapper {
        margin-top: 1rem;
        position: relative;
        padding: 0 0 0 2rem;
    }
}

@media (max-width: 430px) {
    section#business {
        margin-top: -15rem;
    }
    section#business .card .card-pic {
        background: linear-gradient(to left, var(--bs-white) 86%, transparent 14%);
        background-position: 0px 100%;
        background-size: 100% 80%;
        background-repeat: no-repeat;
        padding: 0 1.5rem;
    }
    section#business .card .card-detail {
        background: linear-gradient(to left, var(--bs-white) 86%, transparent 14%);
        margin-top: -1px;
    }
    section#exhibition .card-body {
        padding: 1.5rem 1.5rem 1.5rem 3rem!important;
    }
}

/* 数字で見るソディック */
section#numbers {
  position: relative;
  padding-top: 0;
  /* ここには背景は書かない */
}

/* 背景を上にはみ出させる */
section#numbers::before {
  content: "";
  position: absolute;
  top: -129px; 
  left: 0;
  right: 0;
  height: calc(100% + 129px); 
  background-image: url("../img/numbers-bg-top.webp"), url("../img/numbers-bg-bottom.webp");
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 38%, 45%;
  z-index: -1; 
  pointer-events: none;
}

/* はみ出した背景を見えるようにするために */
section#numbers {
  z-index: 1;
}

section#numbers .container {
    padding-top: 0;
}

@media (min-width: 1400px) {
    section#numbers .container {
        max-width: 1175px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
  section#numbers {
    background-image: 
      url(../img/numbers-bg-top.webp),
      url(../img/numbers-bg-bottom.webp),
      url(../img/numbers-bg-top.webp),
      url(../img/numbers-bg-bottom.webp);
    
    /* 左・右・左・右の順番で位置指定 */
    background-position: left -8rem top 21rem, /* 1枚目：左上寄り */ 
      right -8rem top 56rem, /* 2枚目：右上寄り */ 
      left -8rem bottom 45rem, /* 3枚目：左中央 */ 
      right -8rem bottom 3rem; /* 4枚目：左下 */
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 61%, 75%, 63%, 83%;
  }
  
  section#numbers::before {
    content: none;
    background-image: none;
  }
}

@media (max-width: 767.98px) {
  section#numbers {
    background-image: 
      url(../img/numbers-bg-top.webp),
      url(../img/numbers-bg-bottom.webp),
      url(../img/numbers-bg-top.webp),
      url(../img/numbers-bg-bottom.webp);
    
    /* 左・右・左・右の順番で位置指定 */
    background-position: 
      left -8rem top 14rem, /* 1枚目：左上寄り */ 
      right -8rem top 53rem, /* 2枚目：右上寄り */ 
      left -8rem bottom 60rem, /* 3枚目：左中央 */ 
      right -8rem bottom 14rem; /* 4枚目：左下 */ 
    
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 96%, 116%, 96%, 116%;
  }

  section#numbers::before {
    content: none;
    background-image: none;
  }
  section#numbers .container {
      padding-top: 1rem;
  }
}

section#numbers .page-guide {
  margin-top: 15rem;
}

section#numbers h2.text-transparent {
  background: linear-gradient(
    to right,
    rgba(0, 161, 230, 0.5) 0%,
    rgba(133, 177, 156, 0.5) 45%,
    rgba(202, 183, 27, 0.5) 65%
  );    
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

#numbers .contents-wrapper.row {
  align-items: stretch !important;
}

#numbers .contents-wrapper {
  --mdb-gutter-x: 4.5rem;
  --mdb-gutter-y: 4.5rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section#numbers h2.text-transparent {
    line-height: 0.9;
    padding-bottom: 1rem;
  }
  section#numbers h2 > span.h2-ja {
    margin-top: -1.5rem;
  }
}

@media (max-width: 767.98px) {
  #numbers .contents-wrapper.row {
    margin-top: -4rem;
  }
  #numbers .contents-wrapper .col-lg-4 {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  #numbers .contents-wrapper.row {
    margin-top: -2rem;
  }
}

#numbers .contents-wrapper .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
}

#numbers .contents-wrapper .card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0.5rem;
}

#numbers .contents-wrapper .card-body .card-title {
  font-family: "nitalago-ruika", sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 1.1rem;
  text-align: center;
  z-index: 1;
  position: relative;
  display: inline-block;
  padding: 0.3rem 0;
}


#numbers .contents-wrapper .card-body .card-title::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #000;
  transform: skewX(-13deg); /* ← 右に13px傾くように */
  z-index: -1;
  pointer-events: none;
}

#numbers .contents-wrapper .card-body .img-container {
  text-align: center;
  height: 110px; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 0;
}

#numbers .contents-wrapper .card-body .counter-container {
  text-align: center;
  color: var(--bs-primary);
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#numbers .contents-wrapper .card-body .counter-container .counter {
  font-family: "sofia-pro", sans-serif!important;
  font-weight: 100;
  font-style: normal;
  font-size: 5rem;
}

#numbers .contents-wrapper .card-body .counter-container .counter span {
  font-size: 3rem;
}

#numbers .contents-wrapper .card-body .counter-container .text-notes {
  font-family: "NotoSansJP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.75rem;
  font-weight: normal;
  margin-top: -1.5rem;
}

#numbers .contents-wrapper .card-body .card-text {
  /* font-size: 0.875rem; */
}

@media (max-width: 767.98px) {
  #numbers .contents-wrapper .card-body .card-title {
    width: 80%;
    margin: 0 auto 1rem;
  }
  #numbers .contents-wrapper .card-body .card-text {
    padding: 0 1.6rem;
    line-height: 1.8!important;
  }
  #numbers .contents-wrapper .card-body .counter-container .text-notes {
    font-size: 1rem;
  }
}

/* ソディックの強み */
section#strengths.section {
  display: block;
}

section#strengths {
  position: relative;
  background: url(../img/strengths-bg.webp) no-repeat top left;
  background-size: contain;
  position: relative;
  overflow: hidden;
  color: var(--bs-white);
  padding: 5rem 0 0 0;
}



section#strengths h3.fade-start {
  opacity: 0;
  transform: translateY(10px);
}

section#strengths h3.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

#strengths-02 {
  padding: 13rem 0;
}

#strengths-03 {
  padding: 13rem 0;
}

#strengths-04 {
  padding: 8rem 0;
}


section#strengths .page-guide {
  border-left: 1px solid var(--bs-white);
  top: 19rem;
}


/* 共通設定 */
section#strengths .container-fluid {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -300px; /* ← セクション間のスキマ防止 */
  -webkit-mask-image: none; /* Safari系対策 */
  transform: translateZ(0);
}

/* 1番：水平 */
#strengths-01.container-fluid {
  background: transparent;
  clip-path: none;
  margin-top: -100px!important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 300px), 0 100%) ;
}

/* 2番：上下とも斜め */
#strengths-02.container-fluid {
  background: url(../img/strengths-02-bg.webp) no-repeat top center;
  background-size: cover;
  clip-path: polygon(0 299px, 100% -1px, 100% calc(100% - 299px), 0 101%);
  background-color: black;
}

/* 3番：上下とも斜め */
#strengths-03.container-fluid {
  background: url(../img/strengths-03-bg.webp) no-repeat;
  background-size: cover;
  background-position: top center;
  clip-path: polygon(0 299px, 100% -1px, 100% calc(100% - 299px), 0 101%);
  background-color: black;
}

/* 4番：上だけ斜め、下は水平 */
#strengths-04.container-fluid {
  background: url(../img/strengths-04-bg.webp) no-repeat bottom right;
  background-size: cover;
  clip-path: polygon(0 300px, 100% 0, 100% 100%, 0 100%);
  background-color: black;
}

/* コンテンツ部分（テキスト等） */
section#strengths .strengths-detail {
  position: relative;
  z-index: 1; 
  padding: 8rem 0;
  font-size: 1.125rem;
}

section#strengths .strengths-detail p {
  padding: 3rem 0 0 3rem;
}

section#strengths #strengths-01 .strengths-detail p {
  padding: 3rem 0 0 0;  
}

section#strengths .strengths-detail .text-large {
  font-size: 1.4rem;
  font-weight: 600;
}


section#strengths #strengths-01 .strengths-detail h3 {
  padding-left: 7rem;
}

section#strengths #strengths-03 .strengths-detail h3 {
  padding-left: 7rem;
  padding-top: 5rem;
}


section#strengths #strengths-02 .strengths-detail h3, section#strengths #strengths-04 .strengths-detail h3{
    position: absolute;
    right: 11%;
    top: 5rem;
    padding-right: 1.8rem;
}

section#strengths #strengths-02 .strengths-detail p, section#strengths #strengths-04 .strengths-detail p{
  padding-left: 10rem;
}

section#strengths h2 span {
  color: var(--bs-white);
}

section#strengths h2::after {
  background-color: var(--bs-white);
}

section#strengths h3 {
  writing-mode: vertical-rl;   /* 全体縦書き */
  text-orientation: upright;
  font-family: "nitalago-ruika", sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 2.0rem;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  position: relative;
}

section#strengths h3 .vertical-bar {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center center;
}

/* タイトル アニメーション */
.fade-char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fade-char.visible {
  opacity: 1;
}


section#strengths .title-border {
  font-size: 3rem;
  position: relative;
  line-height: 1.5;
}

section#strengths .title-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  bottom: 0;
  width: 2px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

section#strengths .title-border.border-visible::after {
  opacity: 1;
}


section#strengths .title-bg {
  color: #fff;
  font-size: 3rem;
  padding: 0.3rem 0.2rem 0.3rem 0.1rem;
  position: relative;
  display: inline-block; 
  line-height: 1;
  margin-left: 0.8rem;
}

section#strengths .title-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #76c31d, #00a73c);
  opacity: 0; /* ◀ 初期状態は非表示に戻す */
  transition: opacity 0.4s ease; /* ◀ アニメーションを有効に戻す */
  z-index: -1;
}

/* ▼ JavaScriptによって .bg-visible が付与されたら表示する */
section#strengths .title-bg.bg-visible::before {
  opacity: 1;
}

section#strengths .title-bg.bg-visible::before {
  opacity: 1;
}

/* 囲み文字 */
section#strengths .title-enclosed {
  color: #fff;
  font-size: 4.2rem;
}

section#strengths .title-enclosed .fade-char {
  border: 1px solid #fff;
  padding: 0.3rem 0;
  margin: -0.02rem 0.05rem;
}

/* 英字（横書きで縦方向に配置） */
section#strengths .title-en {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  white-space: pre;          /* ← 半角スペースをそのまま表示 */
  word-spacing: 0.5em;       /* ← 単語間の余白を調整 */  
  position: relative;
  color: #ccc;
  font-size: 0.975rem;
  height: 100%;
  margin-right: 3rem;
}

 section#strengths #strengths-02 .title-en, section#strengths #strengths-04 .title-en {
    margin-right: 0rem;
    position: absolute;
    top: 0;
    right: -4rem;
}

/* 英字右側に縦線 */
section#strengths .title-en::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #cccccc;
  opacity: 0;
  transition: opacity 0.4s ease;
}

section#strengths #strengths-02 .title-en::after, section#strengths #strengths-04 .title-en::after {
  left: -14px;
}


section#strengths .title-en.line-visible::after {
  opacity: 1;
}


@media (min-width: 768px) and (max-width: 1024px) {
  section#strengths {
    background: url(../img/strengths-bg-sp.webp) no-repeat top center;
    background-size: 100%;
    overflow: hidden;
    padding: 3rem 0 0;
  }

  section#strengths h2 {
    letter-spacing: -0.2rem;
    line-height: 0.9;
    padding-bottom: 1rem;
  }

  section#strengths h2 > span.h2-ja {
    margin-top: -1.5rem;
  }

  section#strengths .title-border {
    font-size: 2.2rem;
  }

  section#strengths .title-bg {
    font-size: 2.2rem;
  }

  section#strengths .title-enclosed {
    font-size: 3.4rem;
  }

  section#strengths .title-en {
    margin-right: 2rem;
  }
  section#strengths #strengths-02 > div > div {
    margin-top: 0;
  }

  section#strengths #strengths-01 .strengths-detail p {
      padding: 0 2rem 0 0;
      margin: 0 0 0 -1rem;
  }

  section#strengths #strengths-03 .strengths-detail p {
      padding: 7rem 2rem 0 0;
      margin: 0 0 0 2rem;
  }

  section#strengths #strengths-02 .strengths-detail p, section#strengths #strengths-04 .strengths-detail p {
      padding: 0 0 0 1.5rem;
  }

  section#strengths #strengths-01.container-fluid {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
  }

  section#strengths #strengths-01 .strengths-detail h3, section#strengths #strengths-03 .strengths-detail h3 {
    padding-left: 0;
    margin: 0 0 0 1rem;
  }

  section#strengths #strengths-02 .strengths-detail h3, section#strengths #strengths-04 .strengths-detail h3 {
      right: 7%;
      top: 5rem;
      padding-right: 0;
  }

  section#strengths #strengths-02.container-fluid {
    background: url(../img/strengths-02-bg.webp) no-repeat;
    background-size: 200%;
    background-position: top -230px left -350px;
    padding: 6rem 2.2rem;
    clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
    margin-top: -71px;
  }

  section#strengths #strengths-03.container-fluid {
    background: url(../img/strengths-03-bg.webp) no-repeat;
    background-size: cover;
    background-position: top 0 left -150px;
    padding: 1rem 2.2rem 5rem 2.2rem;
    clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
    background-color: black;
    margin-top: -148px;
  }

  section#strengths #strengths-04.container-fluid {
    background: url(../img/strengths-04-bg.webp) no-repeat;
    background-size: cover;
    background-position: bottom left -20px;
    padding: 6rem 2.2rem 0rem 2.2rem!important;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%)!important;
    background-color: black;
    margin-top: -184px;
  }

  section#strengths #strengths-04 .strengths-detail {
    padding: 7rem 0;
  }

  section#strengths #strengths-04 > div > div {
    margin-top: 1rem;
  }

  section#strengths br.show-pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  section#strengths #strengths-02.container-fluid {
    padding: 6rem 2.2rem 0;
    background-position: top -173px left -350px;
  }

  section#strengths #strengths-03.container-fluid {
    background-position: top 0 left -400px;
  }

  section#strengths #strengths-04.container-fluid {
    background-position: bottom left -353px;
  }
}

@media (max-width: 767.98px) {
  section#strengths {
    background: url(../img/strengths-bg-sp.webp) no-repeat top center;
    background-size: 100%;
    overflow: hidden;
    padding: 3rem 0 0;
  }

  section#strengths .container-fluid {
    clip-path:none;
    margin-top: -129px;
    padding: 0 2.2rem;
  }

  section#strengths #strengths-02.container-fluid {
    background: url(../img/strengths-02-bg-sp.webp) no-repeat top center;
    background-size: cover;
    padding: 6rem 2.2rem 0;
    clip-path: polygon(0 62px, 100% 0, 100% calc(100% - 62px), 0 100%);
    margin-top: -71px;
  }

  section#strengths #strengths-03.container-fluid {
    background: url(../img/strengths-03-bg-sp.webp) no-repeat bottom 2rem center;
    background-size: cover;
    padding: 1rem 2.2rem 5rem 2.2rem;
    clip-path: polygon(0 62px, 100% 0, 100% calc(100% - 62px), 0 100%);
    background-color: black;
  }

  section#strengths #strengths-04.container-fluid {
    background: url(../img/strengths-04-bg-sp.webp) no-repeat bottom right;
    background-size: cover;
    padding: 6rem 2.2rem 0rem 2.2rem!important;
    clip-path: polygon(0 62px, 100% 0, 100% 100%, 0 100%)!important;
    background-color: black;
  }

  section#strengths.section h2 {
    font-size: 3.9rem;
    letter-spacing: -0.1rem;  
  }

  section#strengths h3 {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    position: relative;
    font-size: 1rem;
  }

  section#strengths #strengths-01 .strengths-detail h3, section#strengths #strengths-03 .strengths-detail h3 {
    padding-left: 0;
    padding-top: 2.5rem;
  }

  section#strengths #strengths-02 .strengths-detail h3, section#strengths #strengths-04 .strengths-detail h3 {
    left: 1.5rem;
  }

  section#strengths #strengths-02 .strengths-detail p, section#strengths #strengths-04 .strengths-detail p {
    padding-left: 0;
    padding-top: 8.5rem;
  }

  section#strengths #strengths-03 .strengths-detail p {
    padding-left: 0;
    padding-top: 2rem;
  }
  section#strengths h3 .vertical-bar {
    transform: rotate(0deg);
  }

  section#strengths .strengths-detail {
    padding: 5rem 0;
  }

  section#strengths .strengths-detail .col-lg-8 {
    margin-top: 0;
  }

  section#strengths .strengths-detail p {
    /* font-size: 0.875rem; */
    font-size: 1.0rem;
    line-height: 1.6!important;
    padding: 0;
  }

  section#strengths .strengths-detail .text-large {
    font-size: 1.1rem;
    font-weight: 400;
  }

  section#strengths .title-en {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    margin-right: 0;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: normal;
    font-size: 0.8rem;
  }
  
  section#strengths #strengths-02 .title-en, section#strengths #strengths-04 .title-en {
    left: 0;
    top: -2rem;
  }

  section#strengths .title-en::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 75vw;
    height: 1px;
    background-color: #cccccc;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  section#strengths #strengths-02 .title-en::after, section#strengths #strengths-04 .title-en::after {
    left: 0;
  }

  section#strengths .title-border {
    font-size: 1.8rem;
    line-height: 1.9;
  }

  section#strengths .title-border::after {
    left: 0;
    top: 33px;
    width: 115px;
    height: 1px;
  }

  section#strengths .title-bg {
    font-size: 1.8rem;
    padding: 0.2rem 0.2rem 0.1rem 0.1rem;
    margin: 0 0 0.7rem 0;
  }

  section#strengths .title-bg::before {
    background: linear-gradient(to left, #76c31d, #00a73c);
  }

  section#strengths .title-enclosed {
    font-size: 2.4rem;
    line-height: 1.0;
  }

  section#strengths .title-enclosed .fade-char {
    margin: -0.01rem;
  }
}


@media (max-width: 480px) {
  section#strengths {
    background-size: 116%;
  }
  section#strengths #strengths-01 .strengths-detail .col-md-8 {
    margin-top: 0;
  }
  section#strengths #strengths-01 .strengths-detail p {
    padding: 0 0 0 0;
  }
  section#strengths #strengths-03 .strengths-detail h3 {
    letter-spacing: -0.04rem;
  }
  section#strengths #strengths-04 .title-en {
    font-size: 0.7rem;
    letter-spacing: -0.03rem;
  }  
}




/* ソディックの想い */
section#thoughts {
  position: relative;
  background: url(../img/thoughts-bg.webp) no-repeat top left;
  background-size: cover;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

/* === グラデーションレイヤー === */
section#thoughts::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* セクション下部40%に限定 */
  pointer-events: none;
  z-index: 1;

  /* グラデーションアニメーション設定 */
  background: linear-gradient(
    -45deg,
    #00a73c,
    #00a73c,
    #00a73c,
    #00a73c,
    #00a73c,
    #4ea25b,
    #00a790,
    #00a790,
    #00a790,
    #00a790,       
    #b5e270,
    #9ac160,
    #9ac160,
    #9ac160,
    #4ea25b,
    #00a73c
  );
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;

  /* ✅ 下200pxを不透明に保ちつつ、そこから上に向けてフェードアウト */
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0px,
    rgba(0, 0, 0, 1) 400px,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0px,
    rgba(0, 0, 0, 1) 400px,
    rgba(0, 0, 0, 0) 100%
  );
}

/* === グラデーションの動き === */
@keyframes gradientFlow {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

section#thoughts .card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    z-index: 6;
    position: relative;
    margin: 0 1rem;
}

section#thoughts .card:hover {
    transform: none;
}

section#thoughts .card::after {
    content: url(../img/icon-arrow-right-white.svg);
    transform: scale(0.5) translateX(0);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: transform 0.3s ease;
    pointer-events: none;    
}

section#thoughts .card:hover::after {
    content: url(../img/icon-arrow-right-white.svg);
    transform: scale(0.5) translateX(20px); 
    transition: transform 0.3s ease;
}


section#thoughts .card .card-body {
    text-align: center;
    padding-bottom: 0;
}

section#thoughts .card .card-title {
    color: var(--bs-white);
    font-size: 1.2rem;
}


section#thoughts .contents-wrapper {
    margin-top: 16rem;
}

section#thoughts .img-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 280px;
    margin: 0 auto;
}

/* 背景のひし形（疑似要素） */
section#thoughts .img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 161, 230, 0.5) 0%, rgba(131, 177, 158, 0.5) 50%, rgba(202, 183, 27, 0.5) 75%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    z-index: 0;
}

section#thoughts .img-area {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

section#thoughts .img-area picture {
    width: 100%;
    height: 100%;
    display: block;
}

section#thoughts .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section#thoughts .img-text {
    color: white;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 1;
}

/* レスポンシブ対応 */
@media (min-width: 768px) and (max-width: 1024px) {
  section#thoughts {
    background: url(../img/thoughts-bg-sp.webp) no-repeat;
    background-size: 100%;
    background-position: right 0 top -720px;
    overflow: hidden;
    padding: 3rem 0 0rem;
  }


  section#thoughts .contents-wrapper {
    margin-top: 9rem;
  }

  section#thoughts .card {
    margin: 0 auto;
    max-width: 400px;    
  }

  section#thoughts .footer-copyright-text {
    padding: 2rem 0;
  } 
}

@media (min-width: 768px) and (max-width: 819px) {
  section#thoughts {
    background-position: right 0 top -720px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  section#thoughts::after {
    height: 57%;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 1) 990px, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 1) 990px, rgba(0, 0, 0, 0) 100%);
  }
}

@media (min-width: 820px) and (max-width: 1023px) {
  section#thoughts {
    background-position: right 0 top -820px;
  }
}

@media (min-width: 1024px) and  (max-width: 1280px) {
  section#thoughts {
    background-position: right 0 top -1300px;
  }
}


@media (max-width: 767.98px) {
  section#thoughts {
    background: url(../img/thoughts-bg-sp.webp) no-repeat top left;
    background-size: contain;
    overflow: hidden;
    padding: 3rem 0 0rem;
  }
  section#thoughts::after {
    height: 62%;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 1) 89%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 1) 89%, rgba(0, 0, 0, 0) 100%);
  }
  section#thoughts .contents-wrapper {
    margin-top: 6rem;
  }
  section#thoughts h2 {
    font-size: 3.9rem;
    letter-spacing: -0.03rem;
  }

  section#thoughts .contents-wrapper .col-lg-4 {
    margin: 1rem 0;    
  }

  section#thoughts .card {
    padding: 0 2rem;
  }

  section#thoughts .card::after {
    transform: scale(0.3) translateX(0);
    right: 2rem;
  }

  section#thoughts .card .card-title {
    font-size: 1rem;
    padding: 0;
  }

  section#thoughts .img-container {
    height: 208px;
  }

  section#thoughts .img-text {
    font-size: 36px;
  }

  section#thoughts p.mb-5 {
    margin-bottom: 0!important;
  }

}

@media (max-width: 480px) {
  section#thoughts::after {
      height: 55%;
      mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 1) 96%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 1) 96%, rgba(0, 0, 0, 0) 100%);
  }

  section#thoughts .contents-wrapper {
    margin-top: 12rem;
  }  
}

@media (max-width: 375px) {
  section#thoughts::after {
      height: 57%;
  }
}


section#thoughts #footer-simple {
  text-align: center;
  margin-top: 6rem;
  z-index: 7;
  position: relative;
}

section#thoughts .footer-copyright-text {
  text-align: center;
  padding: 2rem 0 0;
  color: var(--bs-white);
}

section#thoughts .footer-logo {
  margin-top: 6rem;
}

section#thoughts .footer-logo img {
  width: 12rem;
}

@media (max-width: 767.98px) {
  section#thoughts #footer-simple {
    padding: 0 0 3rem 0;
  }
}



/* ピックアップ情報 */
section#pickup {
    background: var(--bs-secondary);
}

section#pickup .container {
    /* padding: 5rem 0; */
}

section#pickup h2 span::before {
    width: 78px
}

section#pickup a {
    color: var(--bs-black);
    text-decoration: none;
}



section#pickup a:hover .card-body {
    opacity: 0.7;
    transform: none;
}


section#pickup .card {
    background: var(--bs-white);
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 3rem;
    /* min-height: 100%;
    max-height: 350px; */
    overflow: hidden;
}

section#pickup .card:hover {
    transform: none;
}

section#pickup .card-body {
  /* position: relative; */
  padding: 1.3rem;
  /* min-height: 100%; */
}

section#pickup .card-link-text {
    position: absolute;
    bottom: 15px;
    right: 10px;
    color: var(--bs-primary);
    font-size: 0.8rem;
    padding-right: 2rem;
}

section#pickup .card-link-text::after {
    content: url(../img/icon-arrow-green.svg);
    transform: scale(0.5);
    position: absolute;
    top: -3px;
    right: 10px;
}

section#pickup h3.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.06rem;
    color: var(--bs-primary);
    margin: 0 0 1.0rem;
}

section#pickup .card-text {
    line-height: 1.6 !important;
    display: block;
    margin-bottom: 0;
}


.swiper-pagination li button:before {
    font-size: 20px;
}

.swiper-pagination li.swiper-slide-active button:before {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    section#pickup .container {
        /* padding: 3rem 0; */
    }
    section#pickup .contents-wrapper {
        margin-top: 3rem;
    }

    html {
        overflow-x: hidden;
    }

}

/* @media (max-width: 767px) {
    .pickup-slider.swiper {
        padding: 0 70px;
        margin: 0 -70px;
    }
}

@media (max-width: 479px) {
    .pickup-slider.swiper {
        padding: 0 60px;
        margin: 0 -60px;
    }
} */



/* 展示会出展情報 */
section#exhibition .container {
    padding: 0 2rem;
}

section#exhibition .contents-wrapper {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

section#exhibition h2 span::before {
    width: 108px
}

section#exhibition a {
    color: var(--bs-black);
    text-decoration: none;
}

section#exhibition a:hover .card-detail {
    opacity: 0.7;
}


section#exhibition .card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 3rem;
}

section#exhibition .card:hover {
    transform: none;
}

section#exhibition .card .card-pic {
    position: relative;
}

section#exhibition .card .card-pic {
    background: linear-gradient(to left, var(--bs-light) 50%, transparent 50%);
}



section#exhibition .card .card-detail {
    margin-top: 3rem;
    background: var(--bs-light);
    position: relative;
}

section#exhibition .card .card-detail::after {
    content: url(../img/icon-arrow-box-white.svg);
    transform: scale(0.5);
    position: absolute;
    bottom: 0rem;
    right: 0.5rem;
}

section#exhibition .card picture {
    overflow: hidden;
    display: block;
    padding-bottom: 3rem;
}

section#exhibition .card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section#exhibition .card-body {
    padding: 1.5rem 2rem;
}



section#exhibition h3.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--bs-primary);
    margin: 1.5rem 0 1.0rem;
}

section#exhibition .card-text {
    line-height: 2.0 !important;
    display: block;
    margin-bottom: 2rem;
}

section#exhibition .card-date {
    font-size: 1.2rem;
    line-height: 1.0!important;
    margin-bottom: 0.3rem;
    /* position: absolute;
    bottom: -2rem; */
}

section#exhibition .card-date::before {
    content: "開催期間";
    font-size: 0.9rem;
    background-color: var(--bs-yellow-green);
    display: inline-block;
    padding: 0.3rem 0.7rem;
    margin-right: 1rem;
    color: var(--bs-white);
    text-align: center;
}

@media (max-width: 1199px) {
    section#exhibition .card .card-pic {
        background: none;
    }
    section#exhibition .card picture {
        padding-bottom: 0;
    }
    section#exhibition .card .card-detail {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    section#exhibition .container {
        padding: 0 1.5rem;
    }

    section#exhibition .contents-wrapper {
        margin-top: 3rem;
    }

    section#exhibition .card .card-pic {
        background: linear-gradient(to left, var(--bs-light) 93%, transparent 14%);
        background-position: 0px 100%;
        background-size: 100% 80%;
        background-repeat: no-repeat;
        padding: 0 1.5rem 0 0;
    }

    section#exhibition .card .card-detail {
        background: linear-gradient(to left, var(--bs-light) 93%, transparent 14%);
        margin-top: -1px;
    }

    section#exhibition .card-body {
        padding: 1.5rem 1.5rem 1.5rem 4.8rem;
    }

    section#exhibition h3.card-title {
        font-size: 1.125rem;
        margin: 0 0 1rem;
    }

    section#exhibition .card-date {
        font-size: 1rem;
        line-height: 1.6!important;
        margin-bottom: 1.5rem;
    }

    section#exhibition .card-date::before {
        display: block;
        width: 30%;
        margin-bottom: 0.5rem;
        line-height: 1.0!important;
    }

    section#exhibition .card-date span {
        display: block;
    }
}

/* 新着オウンドメディア記事 */
section#media {
    background: var(--bs-secondary);
}

section#media h2 {
    margin-bottom: 3rem;
}

section#media h2 span::before {
    width: 80px
}


section#media .container {
    padding: 0;
}

section#media .contents-wrapper {
    margin-bottom: 3rem;
}


section#media .card {
    background: transparent;
    box-shadow: none;
    border-top: 1px solid var(--bs-teal);
    border-radius: 0;
}

section#media .card:hover {
    transform: none;
}

section#media .card > .row > div {
    overflow: hidden;
}

section#media .contents-wrapper.row > .col-lg-6:nth-child(odd) {
    /* padding-right: 3rem; */
    padding-right: 1.5rem;
}

section#media .contents-wrapper.row > .col-lg-6:nth-child(even) {
    /* padding-left: 3rem; */
    padding-right: 1.5rem;
}

section#media .contents-wrapper.row > .col-lg-6:nth-child(3) .card, section#media .contents-wrapper.row > .col-lg-6:nth-child(4) .card {
    border-bottom: 1px solid var(--bs-teal);
}


section#media .card img {
    padding: 2rem 0;
}


section#media .card-body {
  position: relative;
  min-height: 100%;
}

section#media .card-link {
    color: var(--bs-black);
}
section#media .card-link:hover .card-body {
    opacity: 0.7;
}

section#media .card-link-text {
    position: absolute;
    bottom: 1rem;
    right: 0;
    color: var(--bs-primary);
    font-size: 0.8rem;
    padding-right: 1.8rem;
}

section#media .card-link-text::after {
    content: url(../img/icon-arrow-green.svg);
    transform: scale(0.5);
    position: absolute;
    top: -3px;
    right: 5px;
}

section#media .card-category {
    display: inline-block;
    padding: 0.1rem 0.5rem 0.2rem;
    color: var(--bs-white);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

section#media .card-category.tool {
    background-color: var(--bs-matcha);
}

section#media .card-category.injection {
    background-color: var(--bs-taupe);
}

section#media .card-category.metal-3d-printer {
    background-color: var(--bs-mastard);
}


section#media h3.card-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 1.5rem 0 1.0rem;
}

section#media .card-date {
    font-size: 0.8125rem;
    line-height: 1.0!important;
    margin-bottom: 0.3rem;
}

section#media .card-date::before {
    content: "公開日";
    font-size: 0.750rem;
    background-color: #c9e5a5;
    display: inline-block;
    padding: 0.2rem 0.2rem;
    margin-right: 0.5rem;
}

section#media .card-tags {
    margin-bottom: 1.5rem;
}
section#media .card-tags span {
    margin-right: 0.3rem;
    padding: 0 0.2rem;
    border: 1px solid var(--bs-gray-dark);
    color: var(--bs-gray-dark);
    font-size: 0.750rem;
    white-space: nowrap;
}

@media (max-width: 1600px) {
    section#media .card-body {
        height: 300px;
    }
}

@media (max-width: 1400px) {
    section#media .card-body {
        height: 330px;
    }
}

@media (max-width: 1300px) {
    section#media .card-body {
        height: 350px;
    }
}

@media (max-width: 1100px) {
    section#media .card-body {
        height: 390px;
    }
}

@media (max-width: 1000px) {
    section#media .card-body {
        height: 420px;
    }
}

@media (max-width: 991px) {
    section#media .container {
        padding: 0;
    }
    
    section#media .card {
        border-top: none;
    }

    section#media .contents-wrapper {
        margin-top: -2rem;
    }

    section#media .card-body {
        padding: 0;
        height: 280px;
        display: block;
    }

    section#media h3.card-title {
        margin: 1.0rem 0 1.0rem;
    }

    section#media .card-category {
        width: fit-content;
        padding: 0.1rem 0.8rem 0.2rem;
    }

    section#media .card img {
        padding: 2rem 0 1rem;
    }
    section#media > .container > .text-center {
        margin: auto 1.5rem;
    }

}


/* サステナビリティ */
section#sustainability {
    text-align: center;
    margin: 0 3rem;
    padding: 0;
}

section#sustainability .container {
    background: url(../../../img/v2/sustainability-img-01.webp) no-repeat top;
    background-size: cover;
    padding: 3rem 4rem;
}

section#sustainability .contents-wrapper {
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: var(--bs-white);
    width: 70%;
    max-width: 1300px;
    background-color: rgba(255, 255, 255, 0.7);
}

section#sustainability h2 span::before {
    width: 56px
}

section#sustainability h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    margin: 3rem 0 2rem;
}

section#sustainability p {
    line-height: 1.8!important;
    display: block;
    margin: 2.5rem 0;
}

@media (max-width: 991px) {
    section#sustainability {
        margin: 0 1.5rem 5rem;
        padding: 0;
    }
    section#sustainability .contents-wrapper {
        margin: 0;
        padding: 3rem 1.5rem;
        width: 100%;
        background-color: transparent;
    }

    section#sustainability .container {
        background: url(../../../img/v2/sustainability-img-01-sp.webp) no-repeat top;
        padding: 6rem 0 3rem;
        background-size: cover;
    }
    section#sustainability p {
        text-align: left;
    }
    section#sustainability br {
        display: none;
    }
}


/* 採用情報 */
section#recruit {
    text-align: center;
    margin: 0 3rem;
}

section#recruit .container {
    background: url(../../../img/v2/recruit-img-01.webp) no-repeat top;
    background-size: contain;
    padding: 262px 4rem 0  4rem;
}

section#recruit h2 span::before {
    width: 56px
}

section#recruit .contents-wrapper {
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--bs-white);
    width: 70%;
    max-width: 1300px;
}

section#recruit h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    margin: 3rem 0 2rem;
}

section#recruit p {
    line-height: 1.8!important;
    display: block;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    section#recruit {
        margin: 0 1.5rem;
        padding: 0;
    }

    section#recruit .container {
        background: url(../../../img/v2/recruit-img-01-sp.webp) no-repeat top;
        background-size: contain;
        padding: 175px 1.5rem 0 1.5rem;
    }

    section#recruit .contents-wrapper {
        padding: 3rem 0 0;
        width: 100%;
    }

    section#recruit h3 {
        font-size: 1.4rem;
        margin: 3rem 0 2rem;
    }

    section#recruit p {
        letter-spacing: -0.08rem;
        font-size: 0.86rem;
    }
}


/* インジケーターナビゲーション */
.section-indicator {
  position: fixed;
  right: 30px;
  bottom: 5%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.indicator-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bs-black);
  border: 1px solid var(--bs-black);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
  box-shadow: none;
}

.indicator-btn:hover {
  background-color: var(--bs-primary);
  transform: scale(1.0);
}

.indicator-btn.active {
  background-color: transparent;
  transform: scale(1.0);
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .section-indicator {
    display: none;
  }
}

/* ツールチップ */
.indicator-btn::before {
  content: attr(data-title);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.indicator-btn:hover::before {
  opacity: 1;
}

/* セクションスタイル */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* padding: 80px 20px; */
  padding: 5rem 0;
  scroll-margin-top: 0;
  margin-bottom: 0;
}

/* .section:nth-child(odd) {
  background-color: #f8f9fa;
}

.section:nth-child(even) {
  background-color: #fff;
} */

/* レスポンシブ対応 */
@media (max-width: 767.98px) {
  .section-indicator {
    right: 15px;
    gap: 12px;
  }
  
  .indicator-btn {
    width: 12px;
    height: 12px;
  }
  
  .indicator-btn::before {
    display: none;
  }
}

footer {
  display: none;
}

/* スライドインアニメーションのカスタマイズ */
/* @keyframes slideInRightCustom {
  0% {
    transform: translateX(100%); 
    opacity: 0; 
  }
  100% {
    transform: translateX(0);
    opacity: 1; 
  }
} */

/* wowクラスにカスタムアニメーションを適用 */
/* .wow.animate__slideInRight {
  animation-name: slideInRightCustom;
} */

#business .pickup-slider .wow  {
    opacity: 0;               /* 初期状態で透明 */
    visibility: hidden;       /* 要素を非表示にする */
    transition: opacity 0.5s; /* 不透明度の変化にトランジションを適用 */
}

#business .pickup-slider .wow.active {
    opacity: 1;               /* アクティブ状態で不透明にする */
    visibility: visible;       /* 要素を表示する */
}

/* スライドインアニメーションの設定 */
@keyframes slideInFade {
  0% {
    opacity: 0; /* 初期状態は透明 */
    transform: translateX(80px); /* 右から少しスライドイン */
  }
  100% {
    opacity: 1; /* 最終的に不透明 */
    transform: translateX(0); /* 元の位置に戻る */
  }
}

/* アニメーションを適用するクラス */
.slide-in {
  animation: slideInFade 1.2s ease forwards; /* アニメーションの持続時間とイージングを設定 */
}