/*----------------------------------------------
基本リセット・共通設定
----------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box !important;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #333;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    min-width: 1200px;
}

body {
    padding-top: 0 !important;
}

#container {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    overflow-x: hidden;
}

.recruit_wrapper {
    background-color: #fff;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    display: block;
    position: relative;
}

.br_sp {
    display: none;
}

@media screen and (min-width: 769px) {
    .recruit_wrapper {
        max-width: none !important;
        width: 100%;
        min-width: 0 !important;
        padding: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    * {
        line-height: 2;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        min-width: initial;
    }

    .br_pc {
        display: none;
    }
}

.recruit_copyright {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 60px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.05em;
    width: 100%;
}

/*----------------------------------------------
お知らせ
----------------------------------------------*/
.recruit-notice-area {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

.recruit-notice-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #d32f2f;
    border-radius: 4px;
    padding: 18px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 15px;
    max-width: 840px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.recruit-notice-inner.stopped {
    border-color: #aaa;
    background-color: #f9f9f9;
}

.recruit-notice-inner.stopped .notice-date {
    color: #666;
}

.notice-date {
    font-family: 'Lato', 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #d32f2f;
    font-size: 15px;
    white-space: nowrap;
}

.notice-text {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

.notice-text .highlight {
    font-weight: bold;
    background: linear-gradient(transparent 65%, #ffcccc 65%);
}

@media (max-width: 768px) {
    .recruit-notice-area {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .recruit-notice-inner {
        padding: 20px 15px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .notice-date {
        font-size: 13px;
        background-color: #fceceb;
        padding: 4px 10px;
        border-radius: 20px;
    }

    .recruit-notice-inner.stopped .notice-date {
        background-color: #e0e0e0;
        color: #555;
    }

    .notice-text {
        font-size: 15px;
        text-align: center;
        width: 100%;
    }
}


/*----------------------------------------------
サイドバー
----------------------------------------------*/
.recruit_sidebar {
    width: 290px;
    background-color: #e8fafa;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    padding: 30px 20px 10px;
    overflow-y: auto;
    box-sizing: border-box;
}

.sidebar_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-left: 5px;
}

.header_logo_wrapper {
    display: block;
    width: 150px;
    flex-shrink: 0;
}

.header_logo_img {
    display: block;
    width: 100%;
    height: auto;
}

.header_title_text {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 1.9%;
    cursor: default;
    user-select: none;
}

.sidebar_nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.sidebar_nav li {
    margin-bottom: 12px;
}

.sidebar_nav a {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
    line-height: 1.4;
}

.sidebar_nav a:hover {
    background-color: #f0f0f0;
    color: #333;
}

.nav_icon {
    width: 30px;
    height: 30px;
    background: #45c5c4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.nav_icon img {
    width: 16px;
    height: auto;
}

.sidebar_btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.sidebar_btns a {
    display: block;
    text-align: center;
    padding: 12px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    box-sizing: border-box;
}

.btn_outline {
    background: #fff;
    border: 2px solid #80D4D6;
    color: #333;
}

.btn_outline:hover {
    background-color: #80D4D6;
    color: #fff;
    border-color: #80D4D6;
    transform: translateY(2px);
}

.btn_solid {
    background: #68C1C3;
    color: #fff;
    border: 2px solid #68C1C3;
    box-shadow: 0 4px 6px rgba(104, 193, 195, 0.3);
}

.btn_solid:hover {
    background-color: #68C1C3;
    color: #fff;
    opacity: 0.7;
    box-shadow: 0 2px 4px rgba(104, 193, 195, 0.3);
    transform: translateY(2px);
}

.sidebar_link_corp {
    text-align: center;
    font-size: 12px;
}

.sidebar_link_corp a {
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon_external {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 1px 0 0 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    .recruit_sidebar {
        transform: translateX(-120%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 9999;
    }

    .sidebar_header {
        margin-bottom: 20px;
    }

    .header_logo_wrapper {
        width: 130px;
    }

    .header_title_text {
        font-size: 16px;
    }

    .recruit_sidebar.is-open {
        transform: translateX(0);
    }

    .sidebar_nav a {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* ハンバーガーボタン */
    .recruit_menu_btn {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        background-color: #45c5c4;
        border-radius: 50%;
        z-index: 10000;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .recruit_menu_btn span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        margin-bottom: 5px;
        transition: 0.3s;
        position: relative;
        top: 2px;
    }

    .recruit_menu_btn.is-open span:nth-of-type(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .recruit_menu_btn.is-open span:nth-of-type(2) {
        opacity: 0;
    }

    .recruit_menu_btn.is-open span:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .recruit_menu_btn.is-open .menu_text {
        opacity: 0;
    }

    /* オーバーレイ */
    .recruit_overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .recruit_overlay.is-open {
        display: block;
        opacity: 1;
    }
}

@media screen and (min-width: 769px) {

    .recruit_menu_btn,
    .recruit_overlay {
        display: none !important;
    }
}


/*----------------------------------------------
採用TOP
----------------------------------------------*/
.recruit_main {
    margin-left: 290px !important;
    width: calc(100% - 290px) !important;
    max-width: calc(100% - 290px) !important;
    padding: 0 0 100px 0;
    background-color: #F8FEFF;
    min-width: 0;
}

.recruit_hero {
    width: 100%;
    margin-bottom: 80px;
}

.hero_top_banner {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 15px;
    overflow: hidden;
}

.hero_bg_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero_text_overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.hero_title {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.hero_message {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero_bottom_images {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 0;
}

.hero_img_col {
    width: calc(25% - 11.25px);
    position: relative;
}

.hero_img_col::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.hero_img_col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section_search {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    max-width: 1800px;
    margin: 0 auto;
}

.sec_title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

.search_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.search_card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
    display: flex;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.search_card:hover {
    background-color: #f3f3f3;
}

.card_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #45c5c4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.card_icon img {
    width: 22px;
    height: auto;
}

.card_content {
    flex: 1;
}

.card_title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #333;
    padding-top: 2px;
}

.card_text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .recruit_main {
        margin-left: 0;
        width: 100%;
        padding: 0 0 80px 0;
    }

    .hero_top_banner {
        height: 300px;
        margin-bottom: 10px;
    }

    .hero_text_overlay {
        padding-left: 20px;
    }

    .hero_title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero_message {
        font-size: 14px;
    }

    .hero_bottom_images {
        flex-wrap: wrap;
        padding: 0 10px;
        gap: 10px;
    }

    .hero_img_col {
        width: calc(50% - 5px);
        margin-bottom: 0;
    }

    .section_search {
        padding: 0 20px;
    }

    .search_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search_card {
        padding: 20px;
    }

    .card_content {
        min-width: 0;
    }
}

/*----------------------------------------------
採用ページ詳細
----------------------------------------------*/
.single_recruit_main {
    margin-left: 290px !important;
    width: calc(100% - 290px) !important;
    max-width: calc(100% - 290px) !important;
    padding: 80px 50px 120px;
    background-color: #fff;
    min-width: 0;
}

.single_header,
.single_content_body,
.single_footer_actions {
    max-width: 820px;
    width: 100%;
    margin: 0;
}

.single_recruit_main .recruit_copyright {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
}

.single_header {
    border-bottom: none;
    margin: 0 auto 20px;
}

.single_title {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #000;
}

.single_meta {
    display: none;
}

.single_content_body {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    letter-spacing: 0.05em;
    margin: 0 auto 80px;
}

.single_content_body img {
    max-width: 100% !important;
    height: auto !important;
}

.single_content_body h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 40px 0 20px;
    padding: 0;
    border: none;
    color: #000;
}

.single_content_body h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 20px;
}

.single_content_body p {
    margin-bottom: 30px;
}

.single_content_body ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 30px;
}

.single_content_body li {
    list-style: disc;
    margin-bottom: 0.5em;
}

.single_content_body ol {
    list-style: decimal;
    padding-left: 1.5em;
    margin-bottom: 30px;
}

.single_content_body ol li {
    list-style: decimal;
    margin-bottom: 0.5em;
}

.highlight_box {
    background-color: #E8FAFA;
    padding: 40px;
    margin: 40px 0;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.single_content_body table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 50px 0;
    font-size: 18px;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.single_content_body th,
.single_content_body td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 25px;
    vertical-align: middle;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.single_content_body th {
    background-color: #fff;
    font-weight: normal;
    text-align: left;
    width: 30%;
}

.single_footer_actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    margin: 20px auto 0;
}

.btn_recruit_entry {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 60px;
    padding: 16px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    background: #68C1C3;
    color: #fff !important;
    border: 2px solid #68C1C3;
    box-shadow: 0 4px 6px rgba(104, 193, 195, 0.3);
    transition: all 0.3s ease;
}

.btn_recruit_entry:hover {
    background-color: #fff;
    color: #68C1C3 !important;
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(104, 193, 195, 0.2);
}

.single_content_body li p,
.single_content_body td p,
.single_content_body th p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .single_recruit_main {
        margin-left: 0;
        width: 100%;
        padding: 40px 20px 80px;
    }

    .single_title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .single_content_body h2 {
        font-size: 22px;
        margin: 50px 0 20px;
    }

    .single_content_body table,
    .single_content_body tbody,
    .single_content_body tr,
    .single_content_body th,
    .single_content_body td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .highlight_box {
        padding: 25px;
        margin: 25px 0;
        font-size: 18px;
    }

    .single_content_body {
        font-size: 15px;
    }

    .single_content_body th {
        background-color: #f9f9f9;
        font-weight: bold;
        padding-bottom: 10px;
        width: 100%;
    }

    .single_content_body td {
        width: 100%;
    }

    .recruit_main,
    .single_recruit_main {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/*----------------------------------------------
エントリーページ
----------------------------------------------*/
.recruit_main_full {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 20px 100px;
    background-color: #fff;
}

.recruit_main_full .wpcf7 {
    width: 100%;
    margin: 0 auto 2.5em !important;
    padding: 0;
    background: #fafafa !important;
    font-size: 14px;
    border-radius: 8px;
    box-sizing: border-box;
    border: none;
}

.recruit_main_full .wpcf7 form {
    margin: 1.5em 0 0;
    background-color: #fff !important;
}

.recruit_main_full .wpcf7 p {
    margin-bottom: 0 !important;
    padding: 0;
}

.recruit_main_full .dl_box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

.recruit_main_full .dl_box:first-child {
    border-top: 1px solid #e5e5e5;
}

.recruit_main_full .dt_box {
    width: 250px;
    background: #f1f1f1;
    padding: 20px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.recruit_main_full .fl_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.recruit_main_full .tit_in {
    margin: 0;
}

.recruit_main_full .dd_box {
    width: calc(100% - 250px);
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recruit_main_full .must {
    background: #f06060;
    color: #fff;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
    margin-left: 10px;
}

.recruit_main_full .any_label {
    background: #999;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
    margin-left: 10px;
}

.recruit_main_full input[type="text"],
.recruit_main_full input[type="email"],
.recruit_main_full input[type="tel"],
.recruit_main_full select,
.recruit_main_full textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    appearance: none;
}

.recruit_main_full input[type="text"],
.recruit_main_full input[type="email"],
.recruit_main_full input[type="tel"],
.recruit_main_full select {
    height: 50px;
}

.recruit_main_full select {
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px !important;
}

.recruit_main_full input:focus,
.recruit_main_full select:focus,
.recruit_main_full textarea:focus {
    background-color: #fff;
    border-color: #00a7ce;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 167, 206, 0.1);
}

.recruit_main_full textarea {
    height: 200px;
    resize: vertical;
}

.recruit_main_full input[type="file"] {
    width: 100% !important;
    padding: 15px;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: border-color 0.3s;
}

.recruit_main_full input[type="file"]:hover {
    border-color: #80D4D6;
}

.recruit_main_full input[type="file"]::file-selector-button {
    background: #888;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    margin-right: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.recruit_main_full input[type="file"]::file-selector-button:hover {
    background: #333;
}

.recruit_main_full .submit_area {
    text-align: center;
    margin-top: 50px;
}

.recruit_main_full .submit_btn_wrapper input[type="submit"] {
    background: #80D4D6;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 80px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    -webkit-appearance: none;
}

.recruit_main_full .submit_btn_wrapper input[type="submit"]:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .recruit_main_full {
        padding: 40px 15px;
    }

    .recruit_main_full .wpcf7 {
        padding: 0;
        background: none !important;
        border: none !important;
    }

    .recruit_main_full .dl_box {
        display: block;
        border: none;
        margin-bottom: 20px;
    }

    .recruit_main_full .dt_box {
        width: 100%;
        background: none;
        padding: 0 0 8px 0;
    }

    .recruit_main_full .fl_box {
        justify-content: flex-start;
    }

    .recruit_main_full .dd_box {
        width: 100%;
        padding: 0;
        border: none;
    }
}

.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 225px;
    height: 48px;
    margin: 30px auto 0px;
    outline: none;
    background-color: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    border: none !important;
    border-radius: 3px;
}