.elementor-4016 .elementor-element.elementor-element-dacc52d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-77b04b9 *//* ヘッダー全体の基本設定 */
.recruit-header {
    width: 100%;
    
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.recruit-header__inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 0 0 20px;
}

/* ロゴ */
.recruit-header__logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* ナビゲーション */
.recruit-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 15px;
}

/* 共通ボタン形状 */
.recruit-nav-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 25px;
    border-radius: 23px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* TOP / 知る (枠線ボタン) */
.btn-outline {
    border: 1px solid #007bc4;
    color: #007bc4;
}
.btn-outline:hover {
    background: #007bc4;
    color: #fff;
}

/* 募集要項 (青背景ボタン) */
.btn-blue {
    background: #007bc4;
    color: #fff;
    border: 1px solid #007bc4;
}
.btn-blue:hover {
    background: #005f96;
    border-color: #005f96;
}

/* 子メニューの制御 */
.has-child {
    position: relative;
}
.plus {
    margin-left: 8px;
    font-size: 18px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.has-child:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.sub-menu li a {
    height: auto;
    padding: 12px 20px;
    border-radius: 0;
    border: none;
    justify-content: flex-start;
    font-size: 14px;
    color: #333;
}
.sub-menu li a:hover {
    background: #f0f8ff;
    color: #007bc4;
}

/* エントリーボタン (右端のグラデーション) */
.recruit-header__entry {
    height: 100%;
}

/* --- エントリーボタン (右端のグラデーション) の修正 --- */

.btn-entry {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 180px;
    /* [初期状態] 画像と同じグラデーション */
    background: linear-gradient(135deg, #ffde2e 0%, #ff952b 100%);
    text-decoration: none;
    border-bottom-left-radius: 40px;
    /* トランジションをopacityからbackgroundに変更してスムーズに */
    transition: background 0.3s ease; 
}

/* ★ここを大幅変更★ ホバー時のグラデーションを明確に変える */
.btn-entry:hover {
    opacity: 1; /* 透明度は変えない */
    /* [ホバー時] 全体的にオレンジを濃く、より鮮やかなグラデーションに */
    background: linear-gradient(135deg, #ffc800 0%, #ff7b00 100%);
    
    /* お好みで、少しボタンを浮かせても面白いです（不要なら消してください） */
    /* box-shadow: 0 4px 15px rgba(255, 149, 43, 0.4); */
}

.entry-text {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ナビゲーションを右寄せにするための設定 */
.recruit-header__nav {
    margin-left: auto; /* これでロゴとの間を広げて右に寄せます */
    margin-right: 30px; /* エントリーボタンとの間に少し余白を作る場合 */
}

/* 既存のコードはそのままでOKですが、
   もし募集要項ボタンとエントリーボタンをピッタリくっつけたい場合は 
   margin-right を 0 に調整してください */
   
   /* 募集要項 (青背景ボタン) */
.btn-blue {
    background: #007bc4;
    color: #fff !important; /* 文字色は常に白に固定 */
    border: 1px solid #007bc4;
}

/* ホバー時の設定 */
.btn-blue:hover {
    background: #005f96; /* 背景を一段階濃い青に変更 */
    border-color: #005f96;
    color: #fff !important; /* ホバー時も文字は白のまま */
    opacity: 1; /* 透明度は下げない */
}/* End custom CSS */