/*
Theme Name: LibertyLife Recruit
*/

/**
 * #.# 要素の共通スタイル設定
 *
 * 要素に共通して適用するCSS。
 */

/*------------- 基本カラー -------------*/
:root{
    /*背景色*/
    --background-color:#FFFFFF;
    /*フォントカラー*/
    --font-color:#222222;
    /*メインカラー*/
    --main-color:#1C3E85;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-padding-top: 150px !important;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    font-family: 'Poppins', 'Zen Kaku Gothic Antique', sans-serif;
    line-height: 1.6;
    color: var(--font-color);
    background: var(--background-color);
    overflow-x: hidden;
}
.wrapper{
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
.flex-100 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 100px;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
    list-style: none;
}
.s_indent {
    padding-left: 2em !important;
    text-indent: -1em;
    margin-top: 0px !important;
}
/*背景色*/
.bg-jobs-color {
    background: #F6F9FF;
    position: relative;
}
.bg-jobs-color::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: skewY(-5deg);
    transform-origin: top left;
    z-index: -1;
}
.bg-jobs-color::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: skewY(5deg);
    transform-origin: bottom left;
    z-index: -1;
    padding-top: 175px;
}
@media screen and (max-width: 475px) {
    * {
        font-size: 14px;
    }
    .wrapper {
        padding: 0 20px;
    }
}

/*---------- ヘッダー ----------*/
header {
    width: 100%;
    height: 85px;
    position: fixed;
    z-index: 999;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    background: #fff;
}
.hg-nav_inner {
    height: 100%;
    display: flex;
    align-items: center;
}
.header-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    align-items: center;
    height: 100%;
    border-bottom: 1px solid #E6E6E6;
}
h1.logo {
    line-height: 1;
}
.logo img {
    width: 200px;
}
p.r_logo-text {
    font-size: 13px;
    color: var(--font-color);
    font-weight: 500;
}
ul.h-list {
    display: flex;
    gap: 30px;
    color: var(--font-color);
    font-weight: 600;
    align-items: center;
    font-size: 15px;
}
.nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    font-weight: 600;
    color: var(--font-color);
    gap: 2px;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
li.nav-item .nav-link {
    border-bottom: 2px solid transparent;
    position: relative;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 15px;
}
.nav-item:hover > .nav-link {
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 5px;
    color: var(--main-color);
}
.form-jump-btn {
    display: flex;
    gap: 10px;
}
/*募集要項ボタン*/
.mid-career_btn {
    display: flex;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, rgba(28, 62, 133, 1) 0%, rgba(76, 139, 245, 1) 50%, rgba(23, 46, 105, 1) 100%);
    background-size: 200% 100%;
    border: none;
    transition: background-position 0.5s ease, transform 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(28, 62, 133, 0.2);
    align-items: center;
}
.mid-career_btn:hover {
    background-position: 100% 0;
}
/*エントリーボタン*/
.new-graduates_btn {
    display: flex;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, rgba(202, 14, 73, 1) 0%, rgba(235, 159, 112, 1) 50%, rgba(202, 14, 73, 1) 100%);
    background-size: 200% 100%;
    border: none;
    transition: background-position 0.5s ease, transform 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(28, 62, 133, 0.2);
    align-items: center;
}
.new-graduates_btn:hover {
    background-position: 100% 0;
}
/*サブコンテンツ*/
li.nav-item.nav-has-sub {
    position: relative;
    padding-right: 15px;
}
li.nav-item.nav-has-sub::before,
li.nav-item.nav-has-sub::after {
    content: "";
    position: absolute;
    background: var(--main-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
li.nav-item.nav-has-sub::before {
    width: 2px;
    height: 12px;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    transform-origin: center center;
}
li.nav-item.nav-has-sub::after {
    width: 12px;
    height: 2px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transform-origin: center center;
}

li.nav-item.nav-has-sub:hover::before {
    transform: translateY(-50%) rotate(90deg);
}
li.nav-item.nav-has-sub:hover::after {
    opacity: 0;
}
ul.sub-list {
    display: flex;
    flex-direction: column;
    width: 240px;
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    padding: 30px 0 10px;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav-has-sub:hover > .sub-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
a.sub-link {
    display: block;
    padding: 10px 10px 10px 30px;
    position: relative;
    transition: color 0.3s ease;
    font-size: 15px;
}
p.nav-not_link{
    font-size: 15px;
}
a.sub-link::before {
    content: "";
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    position: absolute;
    top: 48%;
    right: 30px;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg) translateY(-50%);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
a.sub-link::after {
    content: "";
    width: 12px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    transition: background 0.3s ease, transform 0.3s ease, height 0.3s ease;
}
a.sub-link:hover {
    color: var(--main-color);
}
a.sub-link:hover::before {
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}
a.sub-link:hover::after {
    background: var(--main-color);
}
.sp_display {
    display: none;
}  
/*ハンバーガーメニュー*/
@media screen and (max-width: 1260px) {
    .hg-nav-open {
    overflow: hidden;
    }
    #hg-nav_Area.hg-nav_open .hg-nav_inner {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 100vh;
    }
    .sp_display {
        display: block;
    }
    header {
        height: 75px;
    }
    .header-nav {
        padding: 0 25px;
    }
    div#hg-nav_Area {
        display: block;
    }
    .hg-nav {
        display: block;
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        background: #ffffff;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: .5s;
        z-index: 3;
    }
    .hg-nav_open .hg-nav {
        right: 0px;
    }
    .hg-nav_inner {
        height: 100vh;
    }
    .hg-nav_inner {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    ul.h-list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100vw;
    }
    li.nav-item {
        border-bottom: 1px solid #E6E6E6;
        width: 100%;
        padding: 0px;
    }
    li.nav-item.nav-has-sub {
        padding: 0px !important;
    }
    .nav-item .nav-link {
        display: flex;
        align-items: flex-start;
        padding: 25px 30px !important;
    }
    p.nav-not_link{
        display: flex;
        align-items: flex-start;
        padding: 25px 30px !important;
        flex-direction: column;
        position: relative;
    }
    li.nav-item.nav-has-sub::before,
    li.nav-item.nav-has-sub::after {
        display: none;
    }
    .nav-not_link::before {
        content: "";
        opacity: 1;
        width: 2px;
        height: 15px;
        background: var(--main-color);
        position: absolute;
        top: 50%;
        right: 41px;
        transition: transform 0.25s ease;
        transform: translateY(-50%);
    }
    .nav-not_link::after {
        content: "";
        opacity: 1;
        width: 15px;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        top: 50%;
        right: 35px;
        transform: translateY(-50%);
        transition: opacity 0.2s 0.1s ease;
    }
    .nav-item.nav-has-sub.sp-open > .nav-not_link::before {
        transform: translateY(-50%) rotate(90deg);
    }
    .nav-item.nav-has-sub.sp-open > .nav-not_link::after {
        opacity: 0;
    }
    ul.sub-list {
        height: 0;
        overflow: hidden;
        transition: height .3s ease;
        position: relative;
        left: 0;
        width: 100%;
        top: 0;
        right: 0;
        padding: 0;
    }
    ul.sub-list li {
        padding: 0 50px 5px;
    }
    ul.sub-list li:last-child {
        padding: 0 50px 20px;
    }
    .nav-item.nav-has-sub.sp-open > ul.sub-list {
        height: auto;
    }
    .nav-contact__links {
        width: 100%;
        height: 100% !important;
        gap: 10px;
        margin: 50px 0px;
    }
    p.nav-link {
        padding: 0 !important;
    }
    .nav-item .sub-link {
        display: flex;
        align-items: flex-start;
        padding: 10px 0 !important;
    }
    span.nav-contact__link_text {
        font-size: 20px;
    }
    .nav-contact__link_text span {
        font-size: 16px;
    }
    a.c-link-style.nav-contact__link {
        flex: 1;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        height: 100%;
    }
    img.nav-contact__icon {
        width: 50px;
    }
    .hg-nav .header-nav ul li {
        position: relative;
        margin: 0;
        border-bottom: 1px solid #BFC6D4;;
    }
    .hg-nav .header-nav ul li a {
        display: block;
        font-weight: 500;
        padding: 1em;
        text-decoration: none;
        transition-duration: 0.2s;
    }
    p.r_logo-text {
        font-size: 12px;
    }
    .header-nav .logo a {
        display: flex;
        justify-content: center;
        margin: 0px auto 5px;
    }
    .nav-link-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .hg-nav_toggle {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: var(--main-color);
        padding: 0 8px;
        transition: transform 0.3s ease;
    }
    ul.header__brand-logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    ul.header__brand-logo img {
        width: 100%;
        max-width: 90px;
    }
    .header__inner-bottom ul.sns-links {
        display: flex;
        justify-content: center;
        margin: 30px auto;
    }
    /* ＋ → × に変化 */
    .hg-nav-has-sub.hg-nav_subopen .hg-nav_toggle {
        transform: rotate(45deg);
    }
    .hg-nav_sub-list {
        display: none;
    }
    .hg-nav-has-sub.hg-nav_subopen .hg-nav_sub-list {
        display: block;
    }
    .hg-nav .header-nav ul li.hg-nav_sub-item {
        border-bottom: none;
        padding-left: 1em;
    }

    /*============
    .toggle_btn
    =============*/
    .hg-nav_toggle_btn {
        display: block;
        position: fixed;
        top: 20px;
        right: 30px;
        width: 60px;
        height: 30px;
        transform: translate(0, 0);
        transition: all .5s;
        cursor: pointer;
        z-index: 3;
    }
    .hg-nav_open .hg-nav_toggle_btn {
        right: 25px;
    }
    .hg-nav_toggle_btn span {
        display: block;
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        background-color: var(--main-color);
        transition: all .5s;
    }
    .hg-nav_toggle_btn span:nth-child(1) {
        top: 5px;
        width: 30px;
    }
    .hg-nav_toggle_btn span:nth-child(2) {
        top: 15px;
        width: 30px;
    }
    .hg-nav_toggle_btn span:nth-child(3) {
        top: 25px;
        width: 30px;
    }
    .hg-nav_open .hg-nav_toggle_btn span {
        width: 30px;
    }
    .hg-nav_open .hg-nav_toggle_btn span:nth-child(1) {
        transform: translate(0, 10px) rotate(-45deg);
        animation: unset;
    }
    .hg-nav_open .hg-nav_toggle_btn span:nth-child(2) {
        opacity: 0;
        animation: unset;
    }
    .hg-nav_open .hg-nav_toggle_btn span:nth-child(3) {
        transform: translate(0, -10px) rotate(45deg);
        animation: unset;
    }
    /*募集要項・エントリーボタン*/
    li.form-jump-btn {
        width: 100%;
        margin: 30px auto 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .new-graduates_btn,
    .mid-career_btn {
        width: 300px;
        padding: 20px 30px;
        position: relative;
    }
    .new-graduates_btn:after,
    .mid-career_btn:after {
        content: "";
        position: absolute;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        width: 10px;
        height: 10px;
        right: 25px;
        top: 50%;
        transform: rotate(-45deg) translateY(-50%);
    }
}
@media screen and (max-width: 768px) {
    span.nav-contact__link_text {
        font-size: 16px;
    }
    img.nav-contact__icon {
        width: 30px;
    }
    a.c-link-style.nav-contact__link {
        flex: 1;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        height: 100%;
        padding: 10px !important;
    }
    .sp_display {
        margin-bottom: 10px;
    }    
}
@media screen and (max-width: 475px) {
    ul.header__brand-logo img {
        width: 100%;
        max-width: 70px;
    }
}

/*---------- エラーページ ----------*/
.page-404 {
    margin: 280px auto 200px;
    text-align: center;
}
.title-blue {
    font-size: 56px;
    color: var(--main-color);
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.page-404 .more-link {
    margin: 50px auto 0;
    text-align: left;
}
@media screen and (max-width: 768px) {
    .page-404 {
        margin: 200px auto 150px;
    }
    .title-blue {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
        gap: 0;
    }
    .title-blue span {
        font-size: 16px;
    }
}

/*---------- セクションタイトル ----------*/
h2.section-title {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}
.section-en_title {
    color: var(--main-color);
    font-size: 16px;
    padding-left: 15px;
    position: relative;
    font-weight: 600;
}
span.section-en_title::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.section-jp_title {
    font-size: 42px;
}
h3.section-sub_title {
    position: relative;
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
}
h3.section-sub_title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--main-color);
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
@media screen and (max-width: 1260px) {
    .section-jp_title {
        font-size: 34px;
    }
    .section-en_title {
        font-size: 15px;
    }
    span.section-en_title::after {
        width: 6px;
        height: 6px;
    }
    h3.section-sub_title {
        font-size: 24px;
    }
    h3.section-sub_title::after {
        width: 40px;
    }
}
@media screen and (max-width: 475px) {
    .section-jp_title {
        font-size: 24px;
    }
    .section-en_title {
        font-size: 13px;
        padding-left: 10px;
    }
    span.section-en_title::after {
        width: 5px;
        height: 5px;
        top: 45%;
    }
    h3.section-sub_title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    h3.section-sub_title::after {
        width: 30px;
        height: 2px;
        bottom: -5px;
    }
}

/*詳細ボタン*/
a.more-link {
    position: relative;
    color: var(--main-color);
    font-weight: 600;
    border: 2px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 50px;
    width: 200px;
    display: block;
    margin: 15px 0 0 auto;
    transition: .5s ease;
}
a.more-link::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: .5s ease;
}
a.more-link::before {
    content: "";
    position: absolute;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    width: 6px;
    height: 6px;
    right: 23px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: .5s ease;
}
a.more-link:hover {
    background: var(--main-color);
    color: #fff;
}
a.more-link:hover::before {
    border-color: #fff;
}
a.more-link:hover::after {
    border-color: #fff;
}

/*---------- 職種紹介 ----------*/
section.jobs-section {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    padding: 50px 40px 0;
}
ul.department-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 15px;
}
li.department-item {
    position: relative;
    background: #fff;
    padding: 30px 20px 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .05);
}
li.department-item::after {
    content: "";
    width: 100%;
    height: 10px;
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 8px 8px 0 0;
}
li.department-item img {
    width: 50px;
    height: 50px;
}
.department-header {
    padding: 10px 0;
    margin-bottom: 5px;
}
p.department-name {
    font-size: 20px;
    font-weight: 600;
}
p.department-name_list {
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    height:3em;
}
p.department-name_list span {
    white-space: nowrap;
}
p.department-notice {
    font-size: 15px;
    height: 180px;
}
a.department-link {
    color: var(--main-color);
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 10px 1.5em 10px 0;
    font-size: 15px;
    transition: all 0.3s ease;
}
a.department-link::before {
    content: "";
    position: absolute;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    width: 5px;
    height: 5px;
    right: 3px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: all 0.3s ease;
}
a.department-link::after {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    right: 5px;
    top: 50%;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}
a.department-link:hover {
    padding-right: 1em;
}
a.department-link:hover::before, 
a.department-link:hover::after {
    right: 0px;
}
@media screen and (max-width: 1260px) {
    ul.department-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px 15px;
    }
}
@media screen and (max-width: 475px) {
    section.jobs-section {
        padding: 50px 20px 0;
    }
    li.department-item {
        padding: 20px 15px 10px;
    }
    p.department-name {
        font-size: 16px;
    }
    p.department-name_list {
        font-size: 12px;
        height: 2.5em;
    }
    p.department-name_list span {
        font-size: 100%;
    }
    p.department-notice {
        font-size: 14px;
        height: auto;
    }
    a.department-link {
        font-size: 14px;
    }
    ul.department-list {
        gap: 15px;
    }
}

/*---------- エントリーボタン ----------*/
.recruit-entry__list {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}
.recruit-entry__item {
    width: 100%;
    text-align: center;
    color: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
    position: relative;
    border-radius: 8px;
}
.recruit-entry__item a {
    display: block;              
    width: 100%;
    height: 100%;   
    z-index: 1;
    padding: 50px;
}
.recruit-entry__item.mid-career {
    background: linear-gradient(90deg, rgba(28, 62, 133, 1) 0%, rgba(76, 139, 245, 1) 50%, rgba(23, 46, 105, 1) 100%);
    background-size: 200% 100%;
    border: none;
    transition: background-position 0.5s ease, transform 0.3s ease;
}
.recruit-entry__item.new-graduate {
    background: linear-gradient(90deg, rgba(202, 14, 73, 1) 0%, rgba(235, 159, 112, 1) 50%, rgba(202, 14, 73, 1) 100%);
    background-size: 200% 100%;
    border: none;
    transition: background-position 0.5s ease, transform 0.3s ease;
}
.recruit-entry__item:hover {
    background-position: 100% 0;
}
.recruit-entry__en {
    font-size: 30px;
    font-weight: 600;
}
.recruit-entry__jp {
    font-weight: 500;
}
.recruit-entry__item::before {
    content: "";
    position: absolute;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 45px;
    transform: translateY(-50%) rotate(-45deg);
}
.recruit-entry__item::after {
    content: "";
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
a.guideline_btn {
    font-size: 20px;
    margin: 20px auto;
    position: relative;
    font-weight: 500;
    width: 180px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    transition: all 0.5s ease;
    cursor: pointer;
}
a.guideline_btn::after {
    content: "";
    position: absolute;
    width: 100%;
    background: var(--main-color);
    height: 2px;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.5s ease;
}
a.guideline_btn span {
    width: 30px;
    height: 30px;
    background: #fff;
    display: block;
    border-radius: 50%;
    position: relative;
    border: 2px solid var(--main-color);
    transition: all 0.5s ease;
}
a.guideline_btn span::after {
    content: "";
    position: absolute;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(-45deg);
}
a.guideline_btn:hover {
    color: var(--main-color);
}
a.guideline_btn:hover span {
    background: var(--main-color);
}
a.guideline_btn:hover span::after {
    border-color: #fff;
}
@media screen and (max-width: 1260px) {
    .recruit-entry__list {
        gap: 15px;
    }
    .recruit-entry__item {
        text-align: left;
    }
    .recruit-entry__item a {
        padding: 25px;
    }
    .recruit-entry__en {
        font-size: 24px;
    }
    .recruit-entry__jp {
        font-size: 14px;
    }
}
@media screen and (max-width: 800px) {
    .recruit-entry__en {
        font-size: 20px;
    }
    .recruit-entry__item::after {
        width: 30px;
        height: 30px;
        right: 25px;
    }
    .recruit-entry__item::before {
        width: 10px;
        height: 10px;
        right: 36px;
    }
}
@media screen and (max-width: 600px) {
    .recruit-entry__list {
        flex-direction: column;
        gap: 10px;
    }   
    .recruit-entry__item a {
        padding: 15px;
    }
}

/*------------- フッター -------------*/
footer {
    border-top: 1px solid #D3CCBE;
}
.footer__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 0 30px;
}
.footer__inner-top {
    display: flex;
    justify-content: space-between;
}
/*会社情報*/
.footer__company {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.footer__logo img {
    max-width: 250px;
    width: 100%;
}
.footer__address {
    font-style: normal;
}
/*SNSアイコン*/
ul.sns-links {
    display: flex;
    align-items: center;
    gap: 10px;
}
a.sns-links__link img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}
/*ナビゲーション*/
.footer__nav-columns {
    display: flex;
    gap: 50px;
}
.footer__nav-list {
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.footer__nav-list a {
    transition: all 0.3s ease;
}
ul.footer__nav-list a:hover {
    border-bottom: 1px solid var(--main-color);
    color:var(--main-color);
}
.footer__nav-title,
.sub-link-title {
    font-weight: 600;
}
ul.footer__subnav-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
ul.footer__subnav-list li {
    font-size: 14px;
    font-weight: 500;
    padding-left: 1.2em;
    position: relative;
}
ul.footer__subnav-list li::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background: #222;
    left: 2px;
    top: 50%;
}

/*ブランドロゴ*/
ul.footer__brand-logo {
    max-width: 400px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}
ul.footer__brand-logo li img {
    max-width: 100px;
    width: 100%;
}

/*サイト情報*/
.footer__info {
    border-top: 1px solid #ccc;
    padding-top: 25px;
}
ul.footer__info-list a {
    color: #666;
}
ul.footer__info-list a:hover {
    color: var(--font-color);
}
.footer__inner-bottom {
    margin-top: 50px;
}
.footer__info-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    padding-bottom: 5px;
}
.footer__copy {
    text-align: center;
    font-size: 14px;
    color: #999;
}

@media screen and (max-width: 1250px) {
    .footer__inner {
        padding: 70px 35px 30px;
    }
    .footer__nav-columns {
        gap: 25px;
    }
    .footer__nav-list {
        gap: 20px;
    }
}
@media screen and (max-width: 825px) {
    .footer__inner-top {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .footer__company {
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}
@media screen and (max-width: 768px) {
    .footer__inner-top {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;
    }
    .footer__nav-list {
        gap: 10px;
    }
    .footer__nav-columns {
        gap: 10px;
        flex-direction: column;
        max-width: 350px;
        min-width: 300px;
        width: 100%;
    }
    .footer__info-list {
        gap: 8px;
        flex-wrap: wrap;
    }
    li.footer__nav-title,
    .sub-link-title {
        width: 100%;
        display: block;
        border-bottom: 1px solid #ccc;
        padding: 5px 15px 10px;
    }
    li.footer__nav-title a,
    .sublink_title {
        font-size: 16px;
    }
    .sub-link-title .sublink_title {
    position: relative;
    display: block;
    }
    ul.footer__nav-list a:hover {
        border-bottom: none;
        color: #000;
    }
    .sub-link-title .sublink_title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #000;
    transform: translateY(-50%);
    transition: transform .2s ease;
    }
    .sub-link-title .sublink_title::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 2px;
    height: 12px;
    background: #000;
    transform: translateY(-50%);
    transition: opacity .2s ease;
    }
    .sub-link-title .sublink_title.open::before {
    opacity: 0;
    }
    .footer__subnav-list {
    display: none !important;
    transition: all .2s ease;
    }
    .footer__subnav-list.is-open {
    display: block !important;
    }
}