@charset "UTF-8";

/*2*/
@media screen and (max-width:1000px) {
    /*SP*/
}

@media screen and (min-width:1001px),
print {
    /*PC&TB*/
}

/************************************************************/
/*   共通　20240917   */
/************************************************************/
.windowWidth {
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
}

@media screen and (max-width:1000px) {

    /*SP*/
    .contentsWidth {
        width: calc(100% - 20px);
        display: grid;
        justify-items: center;
        align-items: center;
    }
}

@media screen and (min-width:1001px),
print {

    /*PC&TB*/
    .contentsWidth {
        width: 100%;
        max-width: 1000px;
        display: grid;
        justify-items: center;
        align-items: center;
    }
}

@media screen and (max-width:1000px) {

    /*SP*/
    .noHeader .breadcrumb {
        padding-top: 0 !important;
        margin: 15px 0 0 0;
    }
}

/************************************************************/
/*   フッター　20240917   */
/************************************************************/
@media screen and (max-width:1000px) {

    /*SP*/
    .footer-wrap {
        background-color: #343434;
        padding: 20px 10px;
    }

    .footer_set {
        width: 100%;
        display: grid;
        grid-gap: 30px;
    }

    .footer_box_L {
        display: grid;
        grid-template-columns: repeat(2, 0.5fr);
        grid-gap: 20px 10px;
    }

    .footer_box_R {
        display: grid;
        justify-content: center;
        grid-gap: 15px;
    }

    /* ナビ */
    .footer_menu_set {
        display: grid;
        grid-auto-rows: min-content;
        grid-gap: 30px;
    }

    .footer_menu_set ul li:first-child {
        font-weight: bold;
        font-size: 16px;
        margin: 0;
        list-style: none;
    }

    .footer_menu_set ul li {
        margin: 5px 0 0 1.25em;
        list-style-type: disc;
        color: #fff;
        font-size: 14px;
    }

    .footer_menu_set:last-of-type {
        grid-column: 1 / 3;
    }

    .footer_menu_set:last-of-type ul {
        display: grid;
        grid-template-columns: repeat(2, 0.5fr);
    }

    .footer_menu_set:last-of-type ul li:first-child {
        grid-column: 1 / 3;
    }

    /* ロゴ */
    .footer_logo_box {
        width: 220px;
    }

    .footer_logo_box img {
        width: 100%;
    }

    .footer_logo_box a {
        display: block;
    }

    /* SNS */
    .footer_sns_set {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        grid-gap: 15px;
    }

    .footer_sns_box {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        background-color: #fff;
        overflow: hidden;
    }

    .footer_sns_box a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .footer_sns_box a img {
        width: 100%;
        max-width: 100%;
    }

    .footer_sns_box a:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width:1001px),
print {

    /*PC&TB*/
    .footer-wrap {
        background-color: #343434;
        padding: 40px 10px;
    }

    .footer_set {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 302px;
        grid-gap: 30px;
    }

    .footer_box_L {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-gap: 40px;
    }

    .footer_box_R {
        display: grid;
        grid-auto-rows: min-content;
        grid-gap: 20px;
    }

    /* ナビ */
    .footer_menu_set {
        display: grid;
        grid-auto-rows: min-content;
        grid-gap: 30px;
    }

    .footer_menu_set ul li:first-child {
        font-weight: bold;
        font-size: 16px;
        margin: 0;
        list-style: none;
    }

    .footer_menu_set ul li {
        margin: 10px 0 0 1.25em;
        list-style-type: disc;
        color: #fff;
        font-size: 14px;
    }

    /* ロゴ */
    .footer_logo_box {
        width: 100%;
    }

    .footer_logo_box a {
        display: block;
    }

    /* SNS */
    .footer_sns_set {
        display: grid;
        grid-template-columns: repeat(auto-fill, 50px);
        grid-gap: 15px;
        direction: rtl;
    }

    .footer_sns_box {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        background-color: #fff;
        overflow: hidden;
    }

    .footer_sns_box a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .footer_sns_box a img {
        width: 100%;
        max-width: 100%;
    }

    .footer_sns_box a:hover {
        opacity: 0.8;
    }
}

/************************************************************/
/*   トップページ　採用情報　20240917   */
/************************************************************/
#top-recruit {
    box-shadow: none;
}

@media screen and (max-width:1000px) {

    /*SP*/
    .top_recruit_set {
        width: 100%;
        padding: 10px 0 0 0;
        display: grid;
        grid-gap: 20px;
    }

    .top_recruit_img {
        display: grid;
        justify-content: center;
    }

    .top_recruit_img img {
        width: 100%;
        max-width: 784px;
    }

    .top_recruit_link {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 15px;
        padding: 20px 0 0 0;
    }

    .top_recruit_link a {
        width: 80%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        grid-gap: 10px;
        padding: 10px 10px;
        border: 1px solid #9696B4;
        background-color: #fff;
    }

    .top_recruit_link a img {
        width: 50px;
    }

    .top_recruit_link a:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width:1001px),
print {

    /*PC&TB*/
    .top_recruit_set {
        width: 100%;
        padding: 60px 0 0 0;
        display: grid;
        grid-template-columns: 50% 1fr;
        grid-gap: 40px;
    }

    .top_recruit_img img {
        width: 100%;
        max-width: 100%;
    }

    .top_recruit_link {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
        padding: 30px 0 0 0;
    }

    .top_recruit_link a {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        grid-gap: 10px;
        padding: 15px 10px;
        border: 1px solid #9696B4;
        background-color: #fff;
    }

    .top_recruit_link a img {
        width: 50px;
    }

    .top_recruit_link a:hover {
        opacity: 0.8;
    }
}

/************************************************************/
/*   サイトマップ　20240920   */
/************************************************************/
@media screen and (max-width:1000px) {

    /*SP*/
    .sitemap_set {
        display: grid;
        grid-gap: 10px;
    }

    .sitemap_set ul {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #dcdcdc;
    }

    .sitemap_set ul li {
        list-style: disc;
        margin-left: 1.25em;
    }

    .sitemap_set ul li:first-child {
        list-style: none;
        margin: 0;
        font-weight: bold;
    }

    .sitemap_set ul li:first-child a {
        font-weight: bold;
    }
}

@media screen and (min-width:1001px),
print {

    /*PC&TB*/
    .sitemap_set {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .sitemap_set ul {
        width: 100%;
        padding: 20px;
        border: 1px solid #dcdcdc;
    }

    .sitemap_set ul li {
        list-style: disc;
        margin-left: 1.25em;
    }

    .sitemap_set ul li:first-child {
        list-style: none;
        margin: 0;
    }
}

.sitemap_set a:hover {
    text-decoration: underline;
}