/* ------------------------------front-page-------------------------------- */

/* レコメンド */

    .swiper-wrapper {
      width: 100%;
    }

    .swiper-slide-click {
      width: 100%;
    }

    .swiper-recommend .swiper-slide {
      background-repeat: no-repeat;
      background-size: 50% 100%;
      background-position: right;
      border-radius: 10px;
      width: 640px;
      height: 280px;
    }

    .swiper-recommend .swiper-slide .bg-light {
      background: linear-gradient(to right,
          #12b3c7 0%,
          #12b3c7 53.65%,
          rgba(18, 179, 199, 0.4) 100%);
    }

    @media screen and (max-width: 799px) {
      .swiper-recommend .swiper-slide {
        width: calc(100vw - 40px - 24px);
        height: 310px;
      }
    }

    .swiper-recommend .swiper-slide .post-content a {
      font-family: Hind;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      /* 28.8px */
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-thickness: 1px;
    }

/* サービスラインナップ */

    #service-lineup {
      background-image: url('<?= get_theme_image_path('home/services-bg.svg'); ?>');
      background-repeat: no-repeat;
      background-position: left bottom;
    }

    @media screen and (max-width: 799px) {
      #service-lineup {
        background-image: url('<?= get_theme_image_path('home/services-bg-sp.svg'); ?>');
      }
    }

/* 事例セクション */

          #swiper-case {
            overflow: hidden;
            border-radius: 10px;
          }

          #swiper-case .swiper-wrapper .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
            border-radius: 10px;
          }

          #swiper-case-container .progress-bar {
            position: relative;
            margin-top: 16px;
            height: 4px;
            background: #E0E0E0;
            border-radius: 10px;
            overflow: hidden;
          }

          #swiper-case-container .progress-bar span {
            display: inline-block;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: #12B3C7;
            border-radius: 10px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.5s linear;
          }

          .swiper-slide a {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
          }
            #swiper-case .swiper-wrapper .swiper-slide {
              background-color: transparent;
            }

          @media screen and (min-width: 800px) {
            #swiper-case {
              height: 304px;
              min-width: 502px;
              max-width: 502px;
            }

            #swiper-case .swiper-wrapper .swiper-slide {
              height: 100%;
              width: 502px;
            }

            #swiper-case-container .progress-bar {
              margin: 16px 0 0 0;
            }

            #swiper-case-container .progress-bar {
              width: 100%;
            }
          }

          /* カードリンク */
              .home-card-animate .bg-img {
      transition: transform 0.25s ease-in-out;
    }

    .home-card-animate:hover .bg-img {
      transform: scale(1.1);
    }

    .home-card-animate .btn-arrow {
      transition: transform 0.25s ease-in-out;
    }

    .home-card-animate:hover .btn-arrow {
      transform: translateX(calc(80px + 15px));
    }

    @media screen and (max-width: 799px) {
      .home-card-animate:hover .btn-arrow {
        transform: translateX(calc(80px + 15px));
      }
    }

/* ----------------------------front-page終わり---------------------------- */

/* --------------------------澪標について（message）-------------------------- */

article .content img,
article .content figure {
    height: 240px;
}

article .content a {
    position: relative;
    height: 24px;
    color: #098999;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
}

article .content a::after {
    position: absolute;
    content: url('../images/link-icon.svg');
}

/* --------------------澪標について（message）終わり---------------------- */

/* --------------------------事例一覧・詳細-------------------------- */

/* 事例一覧 */

.case_card_top:after {
    display: none;
}

/* 事例詳細 */

.linkcard {
    margin: 0;
    width: 100%;
    height: unset;
}

.lkc-card {
    margin: 0;
}

.lkc-internal-wrap,
.lkc-external-wrap {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #F9F9F9;
    padding: 24px;
    display: flex;
    align-items: center;
}

.lkc-thumbnail {
    max-width: 160px;
    max-height: 120px;
    margin: 0;
    float: none;
}

.lkc-thumbnail img {
    width: 160px !important;
    max-width: 160px;
    height: 120px !important;
    max-height: 120px;
    object-fit: cover;
    border-radius: 16px;
}

@media screen and (max-width: 799px) {
    .lkc-thumbnail {
        max-width: 280px;
        max-height: 210px;
        margin: 0 auto;
        float: none;
    }

    .lkc-thumbnail img {
        width: 100% !important;
        max-width: 280px;
        height: 210px !important;
        max-height: 210px;
        object-fit: cover;
        border-radius: 16px;
    }
}


.lkc-link {
    height: 100%;
    width: 100%;
    padding-right: 0 !important;
}

.lkc-content {
    height: unset;
    margin: 0;
    display: flex;
    gap: 32px;
    align-items: center;
}

@media screen and (max-width: 799px) {
    .lkc-content {
        flex-direction: column;
        gap: 24px;
    }
}

.lkc-content::after {
    position: absolute;
    top: calc(50% - 12px);
    right: 24px;
    width: 24px;
    height: 24px;
    content: url('<?= get_theme_image_path(' link-icon.svg'); ?>');
}


@media screen and (max-width: 799px) {
    .lkc-content::after {
        display: none;
    }
}

.lkc-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    margin-right: 28px;
}

@media screen and (max-width: 799px) {
    .lkc-title {
        margin-right: 0;
    }
}

.lkc-title-text {
    color: #098999;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    overflow: unset;
}

@media screen and (max-width: 799px) {
    .lkc-title-text {
        position: relative;
        display: inline;
    }

    .lkc-title-text::after {
        position: absolute;
        width: 24px;
        height: 24px;
        margin-left: 4px;
        content: url('/wp-content/themes/mioana/assets/images/link-icon.svg');
    }
}

.lkc-url,
.lkc-link::after {
    display: none;
}

/* --------------------------事例一覧・詳細終わり-------------------------- */

/* --------------------------メンバー一覧----------------------------- */
	.member-card a img:hover {
		opacity: 0.7 !important;
		transition: 0.3s !important;
	} 
/* --------------------------メンバー一覧終わり-------------------------- */

/* -----------------------------ニュース一覧------------------------------- */

    #paginator span {
        width: 20px;
        height: 24px;
        text-align: center;
    }

    #paginator .prev {
        margin-right: 12px;
    }

    #paginator .next {
        margin-left: 12px;
    }

    #paginator a.page-numbers {
        color: #4C4948;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
        min-width: 20px;
        min-height: 24px;
    }

    #paginator .page-numbers.current {
        color: #098999 !important;
        font-weight: 700 !important;
        text-align: center;
    }

/* --------------------------ニュース一覧終わり-------------------------- */

/* ---------------------------Recruit-------------------------- */

/* メッセージ */
  .message_btn:hover {
    background: #F9F9F9;
    transition: 0.4s;
  }
  .message_btn:hover span {
    color: #1EB7CB;
    transition: 0.4s;
  }
  .hover-icon {
  margin-left: 5px;
}
.message_btn:hover .hover-icon {
        width: 18px; /* ホバー時のサイズ */
        height: 18px;
    }
/* メッセージ終わり */
/* ギャラリー */
  .gallery_btn {
    border-color: none;
    background: linear-gradient(90deg, #5AD2E2, #1EB7CB);
    transition: 0.4s;
  }
  .gallery_btn span {
    color: #fff;
    transition: 0.4s;
  }
  .gallery_btn:hover {
    background: #F9F9F9;
    border-color: #1EB7CB;
    transition: 0.4s;
  }
  .gallery_btn:hover span {
    color: #1EB7CB;
    transition: 0.4s;
  }
  .hover-icon {
    margin-left: 5px;
  } 
  .gallery_btn:hover .hover-icon {
    width: 18px; /* ホバー時のサイズ */
    height: 18px;
  }
  .btn {
    margin-left: auto;
    margin-right: auto;
    width: 275px;
  }
  .c-btn01 {
    background: #E8AD59;
    color: var(--cl-white);
    border-radius: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Ropa Sans", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    overflow: hidden;
    padding: 25px 60px 25px 35px;
    position: relative;
    width: 100%;
    min-height: 58px;
    z-index: 2;
    color: #fff;
  }
  .c-btn01::after {
    content: "";
    background: url(https://www.tis.co.jp/career/img/common/arrow-next.svg) no-repeat center / contain;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    width: 15px;
    height: 12px;
  }
  .btn02 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .c-btn02 {
    border-radius: 100px;
    background: #E8AD59;
    color: var(--cl-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 160px;
    z-index: 2;
  }
  .c-btn02 .en {
    font-family: "Ropa Sans", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    font-size: 61px;
    font-weight: bold;
  }
  .c-btn02 .ja {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin: 0 40px 0 34px;
  }
  .c-btn02 .inn::after {
    content: "";
    background: url(https://www.tis.co.jp/career/img/common/arrow-next.svg) no-repeat center / contain;
    display: inline-block;
    width: 34px;
    height: 27px;
  }
  .c-btn01:hover, .c-btn02:hover {
    opacity: 0.8;
  }
  @media screen and (max-width: 767px) {
    .c-btn02 {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 100px;
    }
    .c-btn02 .inn {
        display: grid;
        padding-left: 36px;
    }
    .c-btn02 .en {
        font-size: 28px;
    }
    .c-btn02 .ja {
        font-size: 14px;
        margin: 2px 0 0;
    }
    .c-btn02 .inn::after {
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 42px;
        width: 25px;
        height: 20px;
    }
  }
/* ギャラリー終わり */

/* 福利構成 */
.welfare_btn {
    border-color: none;
    background: linear-gradient(90deg, #5AD2E2, #1EB7CB);
    transition: 0.4s;
    position: relative;
    z-index: 2;
  }
  .welfare_btn span {
    color: #fff;
    transition: 0.4s;
  }
  .welfare_btn:hover {
    background: #fff;
    border-color: #1EB7CB;
    transition: 0.4s;
  }
  .welfare_btn:hover span {
    color: #1EB7CB;
    transition: 0.4s;
  }
.hover-icon {
  margin-left: 5px;
}
  .welfare_btn:hover .hover-icon {
        width: 18px; /* ホバー時のサイズ */
        height: 18px;
    }

@media (max-width: 480px) {
.sp_op {
  opacity: 0.3;
}
}
/* 福利構成終わり */


/* ---------------------------Recruit終わり-------------------------- */
