@charset "UTF-8";

/* ====================================================
   Layout CSS - ヘッダー・フッター・ナビゲーション
   recruit/assets/css/layout.css
==================================================== */

/* ▼▼▼ ヘッダー
====================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background-color: #fff;
}

.header_inner {
    height: 100%;
    padding-left: 25px;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.header_logo {
    display: flex;
    align-items: end;
}

.header_logo-img {
    width: 100%;
    max-width: 220px;
}

.header_logo-img img {
    width: 100%;
}

.header_area {
    display: flex;
    height: 100%;
}

.header_gnav {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
    margin-right: 10px;
    overflow: visible;
}

.header_gnav-corporate {
    color: #231815;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    padding-right: 20px;
    margin: 0 20px 13px 0;
}

.header_gnav-corporate::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 13px;
    height: 12px;
    transform: translateY(-50%);
    background-image: url(../img/common/icon_header_computer_01_pc.svg);
    background-size: cover;
}

.header_logo-text {
    width: 100%;
    max-width: 120px;
    margin-left: 11px;
}

.header_logo-text img {
    width: 100%;
}

.header_gnav-list {
    display: flex;
    align-items: start;
    height: 35px;
}

.header_gnav-item {
    display: flex;
    height: 100%;
}

.header_gnav-link {
    color: #1A1311;
    font-size: 15px;
    font-weight: 600;
    margin: 0 17px;
    cursor: pointer;
    white-space: nowrap;
}

/* ▼▼▼ メガメニュー（PC版のみ）
====================================================== */
.header_gnav-item_mega {
    position: relative;
}

.header_gnav-item_mega::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url(../img/common/line_header_01_pc.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.header_gnav-item_mega:hover::after {
    transform: scaleX(1);
}

.header_gnav-mega {
    visibility: hidden;
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    max-width: 82%;
    z-index: 1000;
    opacity: 0;
    overflow: hidden;
    background-color: #efefee;
    padding: 30px 4% 25px 3.5%;
    border-radius: 0 0 0 30px;
}

.header_gnav-item_mega:hover {
    cursor: pointer;
}

/* header_gnav-link ホバー時、または親アイテム・メガメニュー上にマウスがある時に表示 */
.header_gnav-item_mega:hover .header_gnav-mega,
.header_gnav-item_mega .header_gnav-link:hover + .header_gnav-mega,
.header_gnav-item_mega .header_gnav-link:hover ~ .header_gnav-mega,
.header_gnav-item_mega:focus-within .header_gnav-mega,
.header_gnav-item_mega .header_gnav-mega:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s;
}

.header_gnav-mega_inner {
    display: flex;
    align-items: center;
}

.header_gnav-mega_area {
    display: flex;
    margin-left: 5%;
    gap: 4%;
}

.header_gnav-mega_left {
    width: 100%;
    max-width: 25%;
}

.header_gnav-mega_main img {
    width: 100%;
}

.header_gnav-mega_sub {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-left: 35px;
    margin-top: 12px;
}

.header_gnav-mega_sub::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url(../img/common/ico_header_circle_01_pc.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header_gnav-mega_column {
    position: relative;
    width: 100%;
    max-width: 31%;
}

.header_gnav-mega_column_people {
    max-width: 50%;
}

.header_gnav-mega_link {
    display: block;
    color: #1A1311;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.6;
    position: relative;
}

.header_gnav-mega_img img {
    width: 100%;
}

.header_gnav-mega_text {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.05em;
    margin-top: 9px;
    margin-left: 15px;
}

.header_gnav-mega_text::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 12px;
    background-image: url(../img/common/arrow_header_megamenu_01_pc.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header_gnav-sub {
    display: none;
}

.header_entry {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 220px;
    height: 100%;
}

.header_entry-btn {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 100%;
    padding: 4px 14px 0 30px;
    background-color: #3fb7d2;
    transition: opacity 0.3s ease;
}

.header_entry-btn:hover {
    cursor: pointer;
}

.header_entry-btn_career {
    background-color: #2964ac;
}

.header_entry-btn:hover {
    color: #fff;
    opacity: 0.7;
}

/* ▼▼▼ ヘッダーENTRYドロップダウン
====================================================== */
.header_entry-item {
    width: 100%;
    height: 50%;
}

.header_entry-item_dropdown {
    position: relative;
}

.header_entry-dropdown {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    overflow: hidden;
}

.header_entry-item_dropdown:hover .header_entry-dropdown,
.header_entry-item_dropdown .header_entry-btn:hover ~ .header_entry-dropdown,
.header_entry-item_dropdown .header_entry-dropdown:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

.header_entry-dropdown_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 14px 30px;
    color: #3fb7d2;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    border: 1px solid #3fb7d2;
    transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.header_entry-dropdown_link:last-child {
    border-top: none;
}

.header_entry-dropdown_link:hover {
    color: #fff;
    background: #3fb7d2;
    opacity: 1;
}

.header_entry-dropdown_icon {
    display: inline-block;
    width: 14px;
    height: 12px;
    background-image: url(../img/common/icon_header_entry_01_pc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header_sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .header {
        height: 43px;
    }

    .header_container {
        padding-left: 10px;
    }

    .header_logo-img {
        max-width: 160px;
    }

    .header_logo-text {
        max-width: 92px;
    }

    .header_gnav {
        display: block;
        transition: 0.5s ease-in-out;
        float: none;
        width: 100%;
        height: 100vh;
        padding: 40px 0 100px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        overflow: auto;
        transform: translateY(-100%);
        background-color: #fff;
        background-image: url(../img/common/bg_header_drawer_01_sp.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .header_gnav.open {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .header_gnav ul > li {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        text-indent: 0;
    }

    .header_gnav-corporate {
        display: none;
    }

    .header_gnav-list {
        flex-direction: column;
        height: auto;
        padding: 0 50px;
    }

    .header_gnav-item {
        display: block;
        position: relative;
        margin-top: 34px;
    }

    .header_gnav-item:first-of-type {
        margin-top: 0;
    }
    .header_gnav-item_recruit {
        display: none;
    }
    .header_gnav-item_faq {
        display: none;
    }
    .header_gnav-item_main::after {
        position: absolute;
        content: "";
        z-index: -1;
        top: 10px;
        right: 0;
        left: auto;
        width: calc(98% - var(--link-width, 0px));
        height: 1px;
        background-color: #fff;
        background-image: none;
        transform: scale(1);
    }

    .header_gnav-item_job {
        margin-top: 14px;
    }

    .header_gnav-link {
        display: inline-block;
        position: relative;
        z-index: 1;
        color: #fff;
        font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
        font-size: 16px;
        font-weight: 700;
        margin-left: 0;
        cursor: auto;
    }

    .header_gnav-mega {
        display: none;
    }

    .header_gnav-sub {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px 27px;
        margin-top: 10px;
    }

    .header_gnav-sub_item {
        font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
        position: relative;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1;
        letter-spacing: 0;
        padding-left: 13px;
        transition: opacity 0.3s ease;
    }

    .header_gnav-sub_item_entry::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -18px;
        transform: translateY(-50%);
        width: 17px;
        height: 16px;
        background-image: url(../img/common/icon_header_computer_01_sp.svg);
        background-size: cover;
        background-position: center;
    }

    .header_gnav-sub_item:hover {
        color: #fff;
        opacity: 0.7;
    }

    .header_gnav-sub_item span {
        position: absolute;
        top: 50%;
        left: 0;
        font-size: 9.8px;
        transform: translateY(-50%);
    }

    .header_pc {
        display: none;
    }

    .header_sp {
        display: block;
    }

    .header_gnav-bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 66px;
        margin-top: 35px;
    }

    .header_gnav-link_bottom_corp {
        position: relative;
    }

    .header_gnav-link_bottom_corp::after {
        position: absolute;
        content: "";
        top: 50%;
        right: -22px;
        transform: translateY(-50%);
        background-image: url(../img/common/icon_header_computer_01_sp.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 17px;
        height: 16px;
    }

    .header_gnav-link_bottom {
        font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
        color: #FFF;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0;
    }

    .header_gnav-link_bottom:hover {
        color: #fff;
        opacity: 0.7;
    }

    .header_gnav-group {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 34px;
    }

    .header_gnav_logo {
        width: 100%;
        max-width: 160px;
    }

    .header_gnav_text {
        width: 100%;
        max-width: 90px;
        margin-left: 11px;
    }

    .header_entry {
        display: none;
    }

    .header_entry-dropdown {
        display: none;
    }
}

.header_menu {
    display: none;
}

@media screen and (max-width: 767px) {
    .header_inner {
        padding-left: 0;
    }
    .header_menu {
        display: block;
        width: 43px;
        height: 43px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2000;
    }
    .header_icon {
        display: block;
        width: 16px;
        height: 1px;
        border-top: 1px solid #202326;
        position: absolute;
        top: 53%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
        transition: all 0.3s;
    }
    .header_icon::before, .header_icon::after {
        content: "";
        width: 16px;
        border-top: 1px solid #202326;
        position: absolute;
        transition: all 0.3s;
        right: 0;
    }
    .header_icon::before {
        top: -7px;
    }
    .header_icon::after {
        bottom: -6px;
    }
    .header_icon.active {
        border-color: transparent;
    }
    .header_icon.active::before,
    .header_icon.active::after {
        border-color: #fff;
    }
    .header_icon.active::before {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        top: -1px;
        right: 0;
    }
    .header_icon.active::after {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        bottom: 0;
        right: 0;
    }
}

/* ▼▼▼ フッター
===================================== */
.footer {
    width: 100%;
    background: #fff;
    padding: 72px 0 30px;
    clear: both;
    overflow: hidden;
}

.footer_inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 25px;
}

/* フッター上部 */
.footer_top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 30px;
}

/* ロゴ */
.footer_logo {
    flex-shrink: 0;
    width: 100%;
    max-width: 248px;
}

.footer_logo img {
    width: 100%;
    height: auto;
}

/* メインナビゲーション */
.footer_nav {
    display: flex;
    margin-left: 54px;
    gap: 30px;
}

.footer_nav-column {
}

.footer_nav-title {
    display: block;
    color: #231815;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 11px;
    text-decoration: none;
    white-space: nowrap; /* 改行させない */
}

a.footer_nav-title:hover {
    opacity: 0.7;
}

.footer_nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_nav_item {
    margin-bottom: 7px;
}

.footer_nav_item:last-child {
    margin-bottom: 0;
}

.footer_nav_link {
    position: relative;
    color: #231815;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.6;
    display: block;
    padding-left: 15px;
    margin-left: 10px;
    white-space: nowrap;
}

.footer_nav_link::before {
    content: "▶︎";
    position: absolute;
    top: 0;
    left: 0;
}

.footer_nav-link_pc {
    display: block;
}

.footer_nav_link:hover {
    opacity: 0.7;
}

/* ENTRYセクション */
.footer_entry {
    flex-shrink: 0;
    min-width: 220px;
}

.footer_entry-block {
    margin-bottom: 30px;
}

.footer_entry-block:last-child {
    margin-bottom: 0;
}

.footer_entry-title {
    display: block;
    color: #231815;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
}

a.footer_entry-title:hover {
    opacity: 0.7;
}

.footer_entry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_entry-list_item {
    margin-bottom: 10px;
}

.footer_entry-list_item:last-child {
    margin-bottom: 0;
}

.footer_entry-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #231815;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding-left: 16px;
    margin-left: 10px;
}

.footer_entry-link::before {
    content: "▶︎";
    position: absolute;
    top: 0;
    left: 0;
}

.footer_entry-link:hover {
    opacity: 0.7;
}

.footer_entry-icon {
    display: inline-block;
    width: 16px;
    height: 14px;
    margin-left: 8px;
    background-image: url(../img/common/icon_header_computer_01_pc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* フッター下部 */
.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 870px;
    margin-left: auto;
}

.footer_bottom-links {
    display: flex;
    gap: 50px;
}

.footer_bottom-link {
    color: #231815;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.footer_bottom-link:hover {
    opacity: 0.7;
}

.footer_bottom-link_corp {
    display: flex;
    align-items: center;
}

.footer_bottom-icon {
    display: inline-block;
    width: 16px;
    height: 14px;
    margin-left: 8px;
    background-image: url(../img/common/icon_header_computer_01_pc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer_copyright {
    color: #231815;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1300px) {
    .footer_logo {
        flex-shrink: 1;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer_inner {
        padding: 0 20px;
    }

    .footer_top {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 30px;
    }

    .footer_logo {
        width: 160px;
        margin: 0 auto;
    }

    .footer_nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-left: 0;
    }

    .footer_nav-column {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 15px;
    }

    .footer_nav-column:last-child {
        border-bottom: none;
    }

    .footer_nav-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 20px;
    }

    .footer_nav-list li {
        margin-bottom: 0;
    }

    .footer_nav-list a {
        font-size: 12px;
    }

    .footer_nav-link_pc {
        display: none;
    }

    .footer_entry {
        width: 100%;
        min-width: auto;
    }

    .footer_entry-block {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e5e5e5;
    }

    .footer_entry-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer_entry-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_entry-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 20px;
    }

    .footer_entry-list li {
        margin-bottom: 0;
    }

    .footer_entry-list a {
        font-size: 12px;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 0;
    }

    .footer_bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }

    .footer_bottom-link {
        font-size: 13px;
    }

    .footer_copyright {
        font-size: 11px;
        text-align: center;
    }
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    position: fixed;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .pagetop {
        padding: 10px;
    }
}
.pagetop::after {
    content: "";
    width: 11px;
    height: 11px;
    border-left: #FFF 1px solid;
    border-top: #FFF 1px solid;
    position: absolute;
    top: calc(50% - 3px);
    right: calc(50% - 6px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
    font-size: 12px;
    color: #fff;
}
