/*
Theme Name: Laddear to
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Ladder to
Tags: custom-background, custom-logo, full-width-template
*/
body {
    font-family: "Noto Sans JP", "Montserrat", sans-serif;
    font-weight: 400;
    color: #0F1419;
    line-height: 1.7;
}
.medium-text {
    font-weight: 500; 
}
p{
    font-weight: normal;
}

h1, h2, h3 {
    font-weight: 700; 
}
p{
    font-size: clamp(16px, 1.39vw, 20px);
}
.en-accent {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
.jp-accent{
    font-family: "Noto Sans JP", "Montserrat", sans-serif;
    font-weight: 400;
}
header{
    padding: 17.5px 80px;
    border-bottom: 1px solid #0F1419;
}
header img{
    width: 60px;
}
.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}
.logo-container a{
    display: flex;
    align-items: center;
    font-size: 30px;
}
.logo-container a span{
    display: contents;
    font-size: 32px;
}
.menu-container,
.menu-container ul{
    display: flex;
    align-items: center;
}
.menu-container ul li{
    margin-right: 40px;
}
.menu-container ul li a{
    display: inline-block;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    box-shadow: none;
    text-shadow: 0 0 transparent;
}
.menu-container ul li a:hover{
    transform: scale(1);
    text-shadow: 3px 3px 8px rgba(201,201,201,1);
}
header .entry-btn{
    background-color: #0F1419;
    border-radius: 8px;
    border: 2px solid #0F1419;
    transition: background-color 0.3s ease-in-out;
}
header .entry-btn:hover{
    background-color: #fff;
    color: #0F1419;
}
header .entry-btn a{
    display: inline-block;
    padding: 1px 30px;
    color: #fff;
}
header .entry-btn a:hover{
    color: #0F1419;
}
header .menu-item{
    position: relative;
}
header .menu-item a{
    display: block;
}
header .dropdown-menu{
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    min-width: 200px;
    background-color: #FFF;
    border: 1px solid #0F1419;
    margin-top: 31px;
}
.dropdown-menu .dropdown-item a {
    display:block;
    padding: 13.5px 57px 13.5px 15px;
    white-space: nowrap;
    font-size: 16px;
}
header .has-dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
}
.dropdown-menu .dropdown-item{
    position: relative;
    margin: 0;
}

.dropdown-menu .dropdown-item::after{
    content:'';
    background-image: url('img/arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
#menu-btn-check {
    display: none !important;
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
}
/*トップページメインビジュアル以降*/
/* =================================================
   メインビジュアル
   ================================================= */
.main-visual {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 660px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}
/* --- 左側：コンテンツエリア --- */
.mv-left {
    position: absolute;
    top: 0;
    left: 2%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 2vw;
    z-index: 20;
    pointer-events: none;
}
.mv-bg-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35vw; 
    z-index: -1;
}
.mv-copy {
    position: relative;
    pointer-events: auto;
    font-size: 5vw;
    font-weight: 800;
    line-height: 1.3;
    color: #0F1419;
    margin: 0;
    white-space: nowrap;
    transform: rotate(-10deg); 
    transform-origin: left center;
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
    width: 100% !important;
    text-align: center !important;
    display: block !important;
}
.mv-copy span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block !important; /* ★重要：幅を持てるようにする */
    text-align: center !important;
    width: auto !important;
    /* もし親要素に対して完全に真ん中にしたい場合は以下を追加 */
    margin: 0 auto !important;
    outline: none !important;
}
/* --- 右側：2列縦スクロールエリア（位置を固定） --- */
.mv-right {
    width: 56.25vw;
    height: 100%;
    overflow: hidden;
    z-index: 10;
    flex-shrink: 0;
}
.vertical-scroll-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 1.04vw; 
    height: 100%;
    padding-right: 1.04vw; 
}
.scroll-column {
    width: 27.08vw; 
    flex-shrink: 0;
}
.scroll-container-vertical {
    display: flex;
    flex-direction: column;
}
.column-1 .scroll-container-vertical {
    animation: infinity-scroll-vertical 100s linear infinite reverse;
}
.column-2 .scroll-container-vertical {
    animation: infinity-scroll-vertical 120s linear infinite;
    animation-delay: -30s;
}
.scroll-item-vertical {
    padding: 0.52vw 0; 
}

.scroll-item-vertical img {
    width: 100%;
    aspect-ratio: 390 / 260; 
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
@keyframes infinity-scroll-vertical {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}
/*TOP-COMPANY*/
.top-company{
    position: relative;
    width: 100%;
    padding: clamp(80px, 10vw, 160px) 0;
    background-image: url('img/top-company-bgimg.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.top-company h2 span,
.top-business h2 span,
.top-recruit h2 span,
.top-news h2 span{
    display: block;
    font-size: clamp(13px, 1.39vw, 20px);
    margin-bottom: -36px;
}
.top-company h2,
.top-business h2,
.top-recruit h2,
.top-news h2{
    position: relative;
    z-index: 2;
    font-size: clamp(32px, 6.66vw, 96px);
    font-weight: normal;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.5s;
    margin: 0;
}
.top-company .h2-bg,
.top-business .h2-bg{
    position: relative;
    width: 45%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 3.82%;
    margin-bottom: 3.82%;
    background-color: transparent;
    overflow: hidden;
}
.top-recruit .h2-bg{
    position: relative;
    width: 36%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 3.82%;
    margin-bottom: 3.82%;
    background-color: transparent;
    overflow: hidden;
}
.top-news .h2-bg{
    position: relative;
    width: 30%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 3.82%;
    margin-bottom: 3.82%;
    background-color: transparent;
    overflow: hidden;
}
.top-company .h2-bg a,
.top-business .h2-bg a,
.top-news .h2-bg a{
    display: block;
    color: #0F1419;
}
.top-recruit .h2-bg a{
    display: block;
    color: #fff;
}
.top-company .h2-bg .title-icon,
.top-business .h2-bg .title-icon,
.top-recruit .h2-bg .title-icon,
.top-news .h2-bg .title-icon{
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 20px;
}
.top-company_text-contents{
    padding-left: 5.56%;
}
.top-company_text-contents p{
    margin-bottom: 15px;
}
.top-company_text-contents h3{
    font-size: clamp(24px, 2.77vw, 40px);
    margin-bottom: 40px;
}
.top-company_text-contents p{
    width: 60%;
}
.top-business {
    position: relative;
    width: 100%;
    min-height: 100%; 
    background-color: #9E8B8E; 
    background: linear-gradient(
        to bottom, 
        #383132 0%, 
        rgba(107, 94, 96, 0.7) 50%, 
        rgba(158, 139, 142, 0.7) 100%
    );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: scroll; 
    padding: clamp(80px, 10vw, 160px) 0;
    color: #ffffff;
    overflow: hidden;
}
/* ==========================================================================
   1. スライダー全体の親枠（突き抜けと高さ確保）
   ========================================================================== */
.top-service {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 100px;
}
#service-slider .splide__track {
    width: 200vw !important; 
    max-content: none !important;
    overflow: visible !important; 
}
#service-slider .splide__list {
    display: flex !important;
    width: max-content !important;
}
/* ==========================================================================
   2. スライド（li）とカードのデザイン
   ========================================================================== */
#service-slider .splide__slide {
    width: 440px !important;
    height: 520px !important; 
    margin-right: 40px !important;
    flex-shrink: 0 !important;
    list-style: none !important;
}

/* スライド直下のリンク要素に高さを強制 */
.splide__slide a.service-card__link {
    display: block !important;
    width: 100% !important;
    height: 520px !important;
    text-decoration: none !important;
    position: relative !important;
}

/* カードの枠組み */
.service-card__base {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block !important;
}
/* 画像コンテナ */
.service-card__img {
    width: 100% !important;
    height: 100% !important;
}
/* 実際の画像 */
.service-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
/* 白枠ラベル（右下固定） */
.service-card__info {
    position: absolute !important;
    bottom: 30px !important;
    right: 30px !important;
    width: fit-content !important;
    padding: 10px 24px !important;
    background-color: #ffffff !important;
    border-radius: 8px !important;
    margin: 0 !important;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.service-card__title {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: bold;
    color: #0F1419;
    margin: 0;
}
/* ホバーでカード全体を浮かせる */
.splide__slide a.service-card__link:hover .service-card__base {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* 白枠の設定（画像内の右下に浮かせる） */
.service-card__info {
    position: absolute !important;
    bottom: 30px !important;
    right: 30px !important;
    width: fit-content !important; 
    padding: 10px 24px !important;
    background-color: #ffffff !important;
    border-radius: 8px !important;
    margin: 0 !important;
    display: inline-block !important;
    white-space: nowrap !important;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.service-card__title {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: bold;
    color: #0F1419;
    margin: 0;
    line-height: 1.4;
}
/* ==========================================================================
   3. ナビゲーション・ドット・矢印（共通）
   ========================================================================== */
#service-slider .splide__pagination,
#service-slider .splide__arrows {
    position: absolute;
    top: calc(100% + 34px);
    transform: none;
    z-index: 10;
}
/* --- ドット（pagination）の設定 --- */
#service-slider .splide__pagination {
    left: 5.55%; 
    justify-content: flex-start;
    padding: 0;
    width: auto;
    display: flex !important;
}
#service-slider .splide__pagination__page {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    background: #FFFFFF !important;
    opacity: 1 !important;
    margin: 0 15px 0 0;
    border: none;
    border-radius: none;
    padding: 0;
    cursor: pointer;
    transform: none !important; 
    transition: background 0.3s;
}
/* 選択されているドットの色 */
#service-slider .splide__pagination__page.is-active {
    background: #F8B500 !important;
    transform: none !important;
    width: 20px !important;
    height: 20px !important;
}
/* --- 矢印（arrows）の基本レイアウト --- */
#service-slider .splide__arrows {
    right: 5.55%; 
    display: flex;
    justify-content: space-between;
    width: 410px; 
    align-items: center;
    height: 20px;
    position: absolute;
    top: calc(100% + 34px);
    z-index: 10;
}

/* --- 矢印の形状設定（共通） --- */
#service-slider .splide__arrow {
    all: unset;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 170px !important; 
    height: 40px !important; 
    cursor: pointer !important;
    background: transparent !important;
}

/* デフォルトSVGを排除 */
#service-slider .splide__arrow svg {
    display: none !important;
}

/* 中央の線（12px） */
#service-slider .splide__arrow::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    height: 12px !important; 
    background-color: #000 !important;
    transform: translateY(-50%) !important;
    transition: background 0.3s;
}

/* 先端のハの字（共通） */
#service-slider .splide__arrow::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    width: 30px !important;   
    height: 30px !important;  
    border-style: solid !important;
    border-color: #000 !important;
    transition: border-color 0.3s;
    box-sizing: content-box !important; 
}

/* 右矢印（Next） */
#service-slider .splide__arrow--next::after {
    right: 0 !important;
    border-width: 10px 10px 0 0 !important; 
    transform: translateY(-50%) rotate(45deg)!important;
}

/* 左矢印（Prev） */
#service-slider .splide__arrow--prev::after {
    left: 0 !important;
    border-width: 10px 0 0 10px !important; 
    transform: translateY(-50%) rotate(-45deg)!important;
}
/* 1. 基本の色（白） */
#service-slider .splide__arrow::before {
    background: #FFFFFF !important;
}
#service-slider .splide__arrow::after {
    border-color: #FFFFFF !important;
}
/* 2. アクティブ・ホバー時の色（黄色） */
#service-slider .splide__arrow:not(:disabled):hover::before,
#service-slider .splide__arrow:not(:disabled)::before {
    background: #F8B500 !important;
}
#service-slider .splide__arrow:not(:disabled):hover::after,
#service-slider .splide__arrow:not(:disabled)::after {
    border-color: #F8B500 !important;
}
/* 3. 無効時（端に到達した時など） */
#service-slider .splide__arrow:disabled {
    cursor: default;
}
#service-slider .splide__arrow:disabled::before { 
    background: #FFFFFF !important; }
#service-slider .splide__arrow:disabled::after { 
    border-color: #FFFFFF !important; }

.splide__arrow--prev svg,
.splide__arrow svg{
    display: none!important;
}
/*トップページ-採用*/
.top-recruit{
    padding: 5.56% 0;
}
.top-recruit-btn_container{
    padding: 4.17% 5.56%;
}
/* ボタンの外枠（2つ並べる親要素） */
.top-recruit-btn_box {
    display: flex;
    justify-content: center;
    gap: 10%;
    width: 100%;
    margin: 0 auto;
}
/* 各ボタンのスタイル */
.top-recruit-btn {
    width: clamp(300px, 41.4vw, 530px);
    height: clamp(80px, 8.59vw, 110px);
    background-color: #0F1419;
    transition: background-color 0.3s ease;
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
}
/* リンクエリアをボタン全体に広げる */
.top-recruit-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: clamp(24px, 3vw + 9.6px, 48px);
    gap: 20px;
}
/* 矢印アイコン */
.top-recruit-btn .title-icon {
    width: clamp(20px, 1.5vw, 28px);
    height: auto;
    transition: transform 0.3s ease;
}
/* ホバー演出 */
.top-recruit-btn:hover {
    background-color: #0F1419;
}
.top-recruit-btn:hover .title-icon {
    transform: translateX(8px);
}
/*トップページニュース*/
.top-news{
    background-color: #0F1419;
    color: #fff;
}
.top-news .container{
    padding: 5.56% 0;
}
.top-news__item{
    padding: 0 5.56%;
}
.top-news__item p{
    font-weight: bold;
}
.top-news__item a{
    display: flex;
    align-items: center;
    border-bottom: solid 1px #fff;
    padding: 10px 0 20px 0;
    color: #fff;
}
.top-news__date{
    font-size: clamp(14px, 1.25vw + 9.5px, 24px);
    margin-right: 30px;
}
.top-news__title{
    font-size: clamp(20px, 0.5vw + 18px, 24px);
}
.top-news-detail-wh-btn{
    width: 12.5%;
    min-width: 200px;
    background-color: #fff;
    border: solid 2px #fff;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 5.56%;
}
.top-news-detail-wh-btn a {
    display: block;
    padding: 16px 30px;
    color: #0F1419;
    text-align: center;
    transition: 0.4s;
}
.top-news-detail-wh-btn:hover{
    background-color: #0F1419;
    border: solid 2px #fff;
}
.top-news-detail-wh-btn a:hover{
    color: #fff;
}

/*-------下層ページ共通-------*/
.lower-level_container{
    padding: 5.56%;
}

.lower-level_container h1{
    position: relative;
    font-size: 6vw;
    font-weight: normal;
    padding-left: 4%;
    margin-bottom: 4.16%;
    line-height: 1.5;
}
.lower-level_container h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    transform: none;
    width: 20px;
    height: 1em;
    margin-top: 0;
    background-color: #0063A7;
}
.lower-level_container .h1-jptext{
    display: block;
    font-size: clamp(12px, 1.2vw + 8px, 24px);
    margin-bottom: -1%;
}
/*------会社概要------*/
.company h2{
    font-size: clamp(20px, 4.1vw + 4px, 64px);
    margin-bottom: 4.17%;
    margin-top: 5.56%;
}
.company .flex-box p{
    margin-bottom: 20px;
}
.company .flex-box{
    display: flex;
    justify-content: space-between;
}
.company .flex-box-representative img{
    width: clamp(335px, (551 / 1440) * 100vw, 551px);
    height: auto;
    aspect-ratio: 551 / 522;
    object-fit: cover;
    max-width: 100%;
}
.company .flex-box-representative{
    flex-shrink: 0;
    margin-left:6.39%;
}
.company-sign{
    margin-top: 5%;
    width: 30%;
}
.company-sign span{
    font-size: clamp(16px, 1.39vw, 20px);
    font-weight: bold;
}
.companyProfile-box{
    border: solid 1px #0F1419;
    border-radius: 8px;
    padding: 60px;
    margin-top: 5.56%;
}
.companyProfile-box ul li{
    display: flex;
    align-items: center;
    border-bottom: solid 1px #0F1419;
    padding: 40px 0;
}
.companyProfile-box ul li span{
    font-size: clamp(16px, 1.5vw + 10px, 32px);
    font-weight: bold;
    color: #fff;
    background-color: #0F1419;
    padding: 10px 15px;
    margin-right: 2.08%;
    flex-shrink: 0;
}
.company-client-title{
    position: relative!important;
    padding-left: 4%!important;
}
.company-client-title::before{
    content: "";
    position: absolute!important;
    left: 0!important;
    top: 0.4em!important;
    transform: none!important;
    width: 20px;
    height: 1em;
    margin-top: 0!important;
    background-color: #ECE093!important;
}
/*--------ビジネス一覧--------*/
.business-list-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2.08vw; 
    justify-content: center;
    list-style: none;
    padding: 0;
    width: 100%;
}
.business-list-box li {
    position: relative;
    width: calc((100% - 2.08vw) / 2);
    max-width: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}
.business-list-box li:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.business-list-box li a{
    display: block;
}
.business-list img{
    width: 100%;
    height: auto;
    aspect-ratio: 624 / 338;
    object-fit: cover;
    border-radius: 8px;
}
.business-list span{
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-size: clamp(16px, 0.75vw + 13.2px, 24px);
    font-weight: bold;
}

/*--------ビジネス詳細--------*/
.business-detail_h1{
    margin-bottom: 0!important;
}
.business-detail_smalltitle{
    display: block;
    margin-bottom :4.16%;
    font-size: clamp(12px, 0.75rem + 1.8vw, 32px);
}
.business-detail_container_flexbox{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 5.56%;
}
.business-detail_container_flexbox img{
    border-radius: 8px;
}
.business-detail-business_img,
.business-detail-representative_img{
    flex-shrink: 0;
}
.business-detail-business_img img{
    width: 100%;
    max-width: 551px;
    aspect-ratio: 551 / 522;
    object-fit: cover;
    height: auto;
}
.business-detail-representative_img img{
    width: 100%;
    max-width: 376px;
    aspect-ratio: 376 / 356;
    object-fit: cover;
    height: auto;
}
.business-detail h2{
    font-size: clamp(24px, 0.47rem + 5.14vw, 64px);
}
.business-h2-title{
    position: relative;
    padding-left: 4%;
    margin-bottom: 2.08%;
}
.business-h2-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    transform: none;
    width: 20px;
    height: 1em;
    margin-top: 0;
    background-color: #ECE093;
}
.business-detail h3{
    font-size: clamp(20px, 0.94rem + 1.33vw, 32px);
    margin-bottom: 1.39%;
}
.business-formbtn{
    width: 100%;
    max-width: 282px; 
    aspect-ratio: 282 / 60;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0F1419;
    color: #fff;
    border: solid 2px #0F1419;
    text-decoration: none;
    border-radius: 8px;
    font-size: clamp(14px, 1vw + 10px, 18px);
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-top: 5.56%;
}
.business-formbtn:hover{
    cursor: pointer;
    background-color: #fff;
    border: solid 2px #0F1419;
    color : #0F1419;
}
.business-formbtn a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/*採用-社員の声*/
.voice-header{
    position: relative;
    align-items: center;
    cursor: pointer;
    border: solid 1px #0F1419;
    padding: 40px 0;
    text-align: center;
    margin: 5.56% 0;
}
.voice-container .voice-item:first-child .voice-header{
    margin-top: 0;
}
.voice-header .icon{
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    display: inline-block;
    width: 30px;
    height: 30px;
    transition: transform 0.4s ease;
    transform-origin: center 13px;
}
.voice-header .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 15px solid transparent; 
    border-right: 15px solid transparent;
    border-top: 26px solid #0F1419; 
    border-bottom: 0;
}
.voice-item.is-open .icon {
    transform: translateY(-50%) rotate(180deg);
}
.staff-main-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 510; 
    overflow: hidden;
}
.staff-main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.staff-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0066ad;
    color: #fff;
    padding: 2% 5.7%;
    z-index: 10;
    margin-bottom: 2%;
}
.staff-badge span{
    font-size: clamp(16px, 1.1vw + 12px, 28px);
}
.voice-content .qa-row{
    display: flex;
    justify-content: space-between;
    gap: 2.78%;
    margin-top: 4.17%;
}
.is-reverse{
    flex-direction: row-reverse;
}
.qa-text h3{
    font-size: clamp(20px, 2.63vw + 10.13px, 48px);
    margin-bottom: 2.78%;
}
.qa-image {
    flex: 0 0 501px;
    max-width: 100%;
}
.qa-image img {
    width: 100%;
    aspect-ratio: 501 / 445; 
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 8px;
}
/*採用トップページ*/
.mv-staff__grid {
    display: flex;
    margin: 0 auto;
}
.staff-card {
    flex: 1;
}
.staff-card img {
    width: 100%;
    aspect-ratio: 144 / 510; 
    max-height: 510px; 
    object-fit: cover;
}
.mv-text-box{
    width: 71%;
    text-align: center;
    margin: 0 auto;
    margin-top: 4.17%;
    margin-bottom: 4.17%;
}
.aboutUs {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.aboutUS-contents_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.aboutUS-contents_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.aboutUS-contents_text {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 5.56%; 
}
.aboutUS-contents_text h2{
    font-size: clamp(24px, 6.76vw - 1.35px, 96px);
    margin-bottom: 4.17%;
}
.aboutUS-contents_text span{
    display: block;
    font-size: clamp(12px, 0.751vw + 9.18px, 20px);
    margin-bottom: -30px;
}
.aboutUS-contents_text h3{
    font-size: clamp(16px, 1.502vw + 10.37px, 32px);
    font-weight: normal;
    margin-bottom: 2.78%;  
}
.aboutUS-contents_text p{
    width: 80%;
}
.top-voice{
    margin: 5.56% 0;
}
.top-voice .h2-bg,
.recruit-recruitment-requirements .h2-bg{
    position: relative;
    width: 29.6%;
    padding-top: 1%; 
    padding-bottom: 1%;
    padding-left: 3.82%;
    margin-bottom: 3.82%;
    background-color: transparent; 
    overflow: hidden;
}
.top-voice .h2-bg a,
.recruit-recruitment-requirements .h2-bg a{
    display: block;
    color: #fff;
}
.top-voice .h2-bg::before,
.recruit-recruitment-requirements .h2-bg::before,
.top-recruit .h2-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0F1419;
    transform: translateX(-101%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}
.top-company .h2-bg::before,
.top-business .h2-bg::before,
.top-news .h2-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(-101%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}
.top-voice h2,
.recruit-recruitment-requirements h2{
    position: relative;
    z-index: 2;
    font-size: clamp(24px, 3.756vw + 9.92px, 64px);
    font-weight: normal;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.5s;
    margin: 0;
}
.top-voice .h2-bg .title-icon,
.recruit-recruitment-requirements .h2-bg .title-icon{
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 20px;
}
.top-voice .h2-bg.is-active::before,
.recruit-recruitment-requirements .h2-bg.is-active::before,
.top-company .h2-bg.is-active::before,
.top-business .h2-bg.is-active::before,
.top-recruit .h2-bg.is-active::before,
.top-news .h2-bg.is-active::before{
    transform: translateX(0);
}
.top-voice .h2-bg.is-active h2,
.recruit-recruitment-requirements .h2-bg.is-active h2,
.top-company .h2-bg.is-active h2,
.top-business .h2-bg.is-active h2,
.top-recruit .h2-bg.is-active h2,
.top-news .h2-bg.is-active h2{
    opacity: 1;
}
.voice-explanationtext{
    margin-bottom: 3%;
    padding-left: 5.56%;
}
/* ==========================================================================
   1. スライダー全体の親枠（突き抜けと高さ確保）
   ========================================================================== */
.top-voice {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 100px;
}

#voice-slider .splide__track {
    width: 200vw !important; 
    max-content: none !important;
    overflow: visible !important; 
}

#voice-slider .splide__list {
    display: flex !important;
    width: max-content !important;
}

/* ==========================================================================
   2. スライド（li）とカードのデザイン
   ========================================================================== */
#voice-slider .splide__slide {
    width: 520px !important;
    margin-right: 40px !important;
    flex-shrink: 0 !important;
    list-style: none !important;
}
.splide__slide a.voice-card {
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
}
.voice-card__base {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
    padding: 10.5% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    transition: transform 0.3s ease;
}

/* ホバー演出 */
.splide__slide a.voice-card:hover .voice-card__base {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.voice-card__img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.voice-card__img img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.voice-card__info {
    margin-top: 15px !important;
    width: 100% !important;
}

.voice-card__dept {
    font-size: clamp(12px, 1.1vw, 15px);
    color: #0F1419;
    margin: 0;
}

/* ==========================================================================
   3. ナビゲーション共通設定
   ========================================================================== */
#voice-slider .splide__pagination,
#voice-slider .splide__arrows {
    position: absolute;
    top: calc(100% + 34px);
    transform: none;
    z-index: 10;
}

/* ==========================================================================
   4. ドット
   ========================================================================== */
#voice-slider .splide__pagination {
    left: 5.55%; 
    justify-content: flex-start;
    padding: 0;
    width: auto;
    display: flex !important;
}

#voice-slider .splide__pagination__page {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    background: #0F1419 !important;
    opacity: 1 !important;
    margin: 0 15px 0 0;
    border: none;
    border-radius: none;
    padding: 0;
    cursor: pointer;
    transform: none !important; 
    transition: background 0.3s;
}

#voice-slider .splide__pagination__page.is-active {
    background: #F8B500 !important;
    transform: none !important; 
}
/* ==========================================================================
   5. 矢印
   ========================================================================== */
#voice-slider .splide__arrows {
    right: 5.55%; 
    display: flex;
    justify-content: space-between;
    width: 410px; 
    align-items: center;
    height: 20px;
    /* 位置固定のための追加 */
    position: absolute;
    top: calc(100% + 34px);
    z-index: 10;
}

#voice-slider .splide__arrow {
    all: unset;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 170px !important; 
    height: 40px !important; 
    cursor: pointer !important;
    background: transparent !important;
    text-indent: -9999px !important; /* テキストを画面外へ飛ばす */
    font-size: 0 !important;         /* 念のため文字サイズを0に */
    color: transparent !important;   /* 文字を透明に */
}

#voice-slider .splide__arrow svg {
    display: none !important;
}

#voice-slider .splide__arrow:disabled {
    opacity: 1 !important;
    cursor: default;
}

/* 中央の線（12px） */
#voice-slider .splide__arrow::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    height: 12px !important;
    background: #0F1419 !important; 
    transform: translateY(-50%) !important;
    transition: background 0.3s;
}

/* 先端のハの字（共通設定） */
#voice-slider .splide__arrow::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    transition: border-color 0.3s;
    box-sizing: border-box !important;
    border-style: solid !important;
    border-width: 0; /* 初期化 */
}

/* 右矢印（Next） */
#voice-slider .splide__arrow--next::after {
    right: 0 !important;
    border-width: 10px 10px 0 0 !important;
    border-color: #0F1419;
    transform: translateY(-50%) rotate(45deg) !important;
}

#voice-slider .splide__arrow--next:not(:disabled)::before { 
    background: #F8B500 !important; 
}
#voice-slider .splide__arrow--next:not(:disabled)::after { 
    border-color: #F8B500 !important; 
}

/* 左矢印（Prev） */
#voice-slider .splide__arrow--prev::after {
    left: 0 !important;
    border-width: 10px 0 0 10px !important;
    border-color: #0F1419;
    transform: translateY(-50%) rotate(-45deg) !important;
}

#voice-slider .splide__arrow--prev:not(:disabled)::before { 
    background: #F8B500 !important; 
}
#voice-slider .splide__arrow--prev:not(:disabled)::after { 
    border-color: #F8B500 !important; 
}

/*------採用トップページ-募集要項------*/
.recruit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}
.recruit-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recruit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.recruit-card__img {
    width: 100%;
    height: 100%;
}

.recruit-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.recruit-card__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    transition: background-color 0.3s ease;
}
.recruit-card__text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #ffffff;
    font-size: clamp(16px, 2vw, 36px);
    font-weight: bold;
    z-index: 2;
}
/*採用-募集要項*/
.SPparagraph{
    display: none;
}
.recruit-recruiting_container li{
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom:solid 1px #0F1419 ;
}
.recruit-business-title{
    font-size: clamp(20px, 5vw, 48px);
    font-weight: 500;
    margin-bottom: 3.47%;
}
.recruit-li-title{
    position: relative;
    flex-basis: calc(100px + 10vw);
    flex-shrink: 0;
    line-height: 1.2;
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 500;
}
.recruit-li-title::before{
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background-color: #0F1419;
}
.recruit-li-contents{
    margin: 0;
    padding-left: 30px;
}
.recruit-recruiting_container .entry-btn-container{
    width: 42.5vw;
    background-color: #F8B500;
    border: solid 2px #F8B500;
    margin: 0 auto;
    margin-top: 4.17%;
    margin-bottom: 5.56%;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.recruit-recruiting_container .entry-btn{
    display: block;
    padding: 30px 127px;
    color: #fff;
    text-align: center;
    font-size: clamp(20px, 2.8vw, 40px);
}
.recruit-recruiting_container .entry-btn-container:hover{
    background-color: #fff;
    border: solid 2px #F8B500;
}
.recruit-recruiting_container .entry-btn:hover{
    color: #0F1419;
}
/*--------ニュースページ一覧--------*/
.news-archive {
    padding-bottom: 5.56%;
}
/* 一覧部分 */
.news-item {
    border-bottom: 1px solid #0F1419;
}
.news-item__link {
    display: flex;
    align-items: center;
    padding: 30px 0;
    text-decoration: none;
    color: #0F1419;
    transition: background-color 0.3s;
}
.news-item__link:hover {
    background-color: #fafafa;
}
/* メタ情報（日付） */
.news-item__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 250px;
    flex-shrink: 0;
}
.news-item__date {
    font-size: clamp(12px, 2vw + 4px, 24px);
    color: #0F1419;
}
/* タイトル */
.news-item__title {
    flex: 1;
    font-size: clamp(16px, 1.5vw + 10px, 24px);
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
}
.news-item__link:hover .news-item__icon {
    transform: translateX(10px);
}
.news-pagination {
    margin-top: 60px;
}

.news-pagination ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 20px;
}
.news-pagination li a,
.news-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    color: #0F1419;
}
.news-pagination li span.current {
    background: #0F1419;
    color: #fff;
    border-color: #0F1419;
}
/* 矢印共通の土台 */
.news-pagination li a span {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
}
.next-arrow,
.prev-arrow {
    display: block;
    width: 12px;
    height: 12px;
    border-top: 4px solid #0F1419;
    border-right: 4px solid #0F1419;
    transition: border-color 0.3s ease;
}
/* 次へ（>） 45度回転 */
.next-arrow {
    transform: rotate(45deg);
    margin-left: -6px;
}
/* 前へ（<） 225度（または-135度）回転 */
.prev-arrow {
    transform: rotate(-135deg);
    margin-right: -6px;
}
.news-pagination li a:hover .next-arrow,
.news-pagination li a:hover .prev-arrow {
    border-color: #d9d9d9;
}
/*--------ニュース詳細ページ--------*/
.news-detail__title{
    font-size: clamp(24px, 5.5vw + 4px, 64px)!important;
}
.top-news-detail-btn{
    width: 20%;
    background-color: #0F1419;
    border: solid 2px #0F1419;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 5.56%;
    margin-bottom: 5.56%;
}
.top-news-detail-btn a{
    display: block;
    padding: 16px 30px;
    color: #fff;
    text-align: center;
    transition: 0.4s;
}
.top-news-detail-btn:hover{
    background-color: #fff;
    border: solid 2px #0F1419;
}
.top-news-detail-btn a:hover{
    color: #0F1419;
}

/*--------エントリーフォーム--------*/
.form-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 2.36%;
    font-size: clamp(16px, 1.25vw + 12px, 20px);
}
.form-row {
    display: flex;
    border-bottom: 1px solid #0F1419;
    margin: 0;
    padding: 40px 0;
    align-items: center;
}
.form-row:first-child{
    border-top: 1px solid #0F1419;
}
.form-row dt {
    width: 30%;
}
.form-row dt p{
    font-weight: bold;
}
.form-row dt span{
    font-weight: normal;
}
.form-row dd {
    width: 70%;
    margin-left: 0;
}
.required {
    background: #ECE093;
    font-size: 0.7em;
    padding: 3px 10px;
    border-radius: 22px;
    margin-left: 10px;
    vertical-align: middle;
}
.no-required{
    background: #c9c9c9;
    font-size: 0.7em;
    padding: 3px 10px;
    border-radius: 22px;
    margin-left: 10px;
    vertical-align: middle;
}
.name-fields p{
    display: flex;
    gap: 10px;
}
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #0F1419;
    font-size: clamp(16px, 1.25vw + 12px, 20px) !important;
}
.name-fields input{
    max-width: 210px;
    padding: 17px 10px;
}
.name-fields span{
    max-width: 210px;
}
.mail-fields input{
    max-width: 440px;
    padding: 17px 10px;
}
.tell-fields input{
    max-width: 190px;
    padding: 17px 10px;
}
.company-fields input{
    max-width: 440px;
    padding: 17px 10px;
}
.job-fields select {
    width: 100%;
    padding: 17px 10px;
    font-size: 16px;
    border: 1px solid #0F1419;
    background-color: #fff;
    color: #0F1419;
    cursor: pointer;
}
.job-fields select:focus {
    border-color: #ECE093;
    outline: none;
}
.form-container input::placeholder {
    color: #d9d9d9;
    opacity: 1;
}
.privacy-box{
    margin: 5.56% 0;
}
.privacy-box br{
    display: none;
}
.privacy-box label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}
.privacy-box .wpcf7-list-item {
    margin: 0 !important;
    display: flex;
    align-items: center;
}
.privacy-box input[type="checkbox"] {
    appearance: checkbox !important;
    width: 20px;
    height: 20px;
    border: solid 1px #c9c9c9;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    flex-shrink: 0; 
}
.privacy-box span {
    display: block;
}
.privacy-box a{
    color: #0080FF;
}
.submit-box{
    width: 42.5vw;
    max-width: 612px;
    margin: 0 auto;
}
.submit-box input{
    background-color: #0F1419;
    color: #fff;
    padding: 40px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.submit-box input:hover{
    opacity: 0.7;
}
/*エントリーフォーム確認画面*/
.confirm-message {
    margin-bottom: 30px;
}
.confirm-data textarea{
    border: none !important;
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    pointer-events: none;
    color: #0F1419 !important;
    font-size: 20px !important;
    width: 100% !important;
    display: inline-block;
}
.confirm-data input{
    border: none !important;
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    pointer-events: none;
    color: #0F1419 !important;
    font-size: 20px !important;
    width: auto !important;
    display: inline-block;
}
.name-fields .wpcf7-form-control{
    max-width: none!important;
}
.button-row{
    padding: 40px 0;
}
.backbtn-box {
    width: 42.5vw;
    max-width: 612px;
    margin: 0 auto;
}
.backbtn-box input{
    background-color: #d9d9d9;
    color: #0F1419;
    padding: 40px 0;
    border-radius: 8px;
    margin-bottom: 8%;
    transition: all 0.3s ease;
}
.backbtn-box input:hover {
    background: #bbb;
}

/*--------プライバシーポリシー--------*/
.privacypolicy h2{
    font-size: 32px;
    margin-bottom: 1.38%;
}
.privacypolicy p{
    margin-bottom: 4.17%;
}
/*--------フッター--------*/
.footer {
    padding: 5.56% 5.56% 30px 5.56%;
    border-top: 1px solid #0F1419;
}
/* フッターリンクの基本状態 */
.footer-nav a {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0F1419;
}
.footer-nav a:hover {  
    text-shadow: 3px 3px 8px rgba(201,201,201,1);
}
.footer-main-copy{
    font-size: clamp(24px, 5vw + 4px, 48px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 4.17%;
}
.footer-banners {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}
.footer-banners div{
    width: 100%;
}
.footer-banner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 120px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #0F1419;
    color: #fff!important;
    font-weight: bold;
    font-size: 2vw;
    transition: opacity 0.3s ease;
}
.footer-banner:hover{
    opacity: 0.7 !important;
    color: #fff !important;
}
.footer-banner:visited{
    color: #fff!important;
}
.footer-banner .arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    display: inline-block;
    vertical-align: middle;
}

.footer-logo {
    font-size: clamp(28px, 1.15vw + 23.4px, 40px);
    font-weight: 500;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.56%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav__title {
    font-size: clamp(20px, 0.77vw + 16.9px, 28px);
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav li a {
    text-decoration: none;
    color: #0F1419;
    font-size: clamp(16px, 0.38vw + 14.5px, 20px);
}
/* コピーライト */
.footer-copy {
    text-align: center;
    font-size: 10px;
    color: #0F1419;
}

/*------テキスト・コンテンツのフェードインアニメーション表示------*/
.fade-left {
    opacity: 0;
    transform: translateX(-20px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-left.is-active {
    opacity: 1;
    transform: translateX(0);
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}
/*------キャッチコピーアニメーション------*/
.fade-right-rotate {
    opacity: 0;
    transform: translateX(-30px) rotate(-10deg); 
    animation: fadeRightRotate 0.8s ease-out forwards;
}
@keyframes fadeRightRotate {
    to {
        opacity: 1;
        transform: translateX(0) rotate(-10deg);
    }
}
/*--------aタグvisited--------*/
.header-container .main-menu a:visited,
header .entry-btn a:visited:hover,
.footer-nav a:visited,
.business-list a:visited,
.business-formbtn a:visited:hover{
    color :#0F1419!important;
}
.business-formbtn a,
.entry-btn a{
    color: #fff!important;
}