@charset "UTF-8";
/* 全ページ共通のレイアウト */
:root {
    --f-notosans: "Noto Sans JP", sans-serif;
    --f-notoserif: "Noto Serif JP", serif;
    --font-tektur: "Tektur", sans-serif;
    --blue1: #0b1644;
    --blue2: #0077f5;
    --blue3: #00d8ff;
    --blue4: #004ea2;
    --blue5: #004da0;
    --blue6: #04307c;
    --blue7: #cce4fd;
    --blue8: #b2d6fc;
    --blue9: #29abe2;
    --blue10: #ddedff;
    --red1: #c1272d;
    --grey1: #9ba9bf;
}

html {
    color: #333;
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    position: relative;
    word-break: break-word;
    font-family: var(--f-notosans);
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 1.6rem;
    line-height: 2.25;
    letter-spacing: 0.1em;
}

address {
    font-style: normal;
}

table,
tr,
td,
th {
    border-collapse: collapse;
    margin: 0;
}

main table {
    margin: 10px 0;
}

main td,
main th {
    padding: 4px 10px;
}

img {
    align-self: flex-start;
    border: none;
    max-width: 100%;
    width: auto;
    height: auto;
}

a {
    color: #333;
    text-decoration: none;
}
p a {
    color: var(--blue5);
    text-decoration: underline;
}
a,
a img {
    transition: opacity 0.15s;
}
a:hover,
a:active,
a:hover img,
a:active img {
    opacity: 0.8;
}

ol,
ul {
    margin: 20px 0 20px 10px;
}

li > ul,
li > ol {
    margin-top: 0;
    margin-bottom: 0;
}

p {
    margin: 0 0 1em 0;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    transition: opacity 0.15s;
}
button:hover,
button:active {
    opacity: 0.8;
}

* {
    box-sizing: border-box;
}

.goTop {
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    width: 80px;
    cursor: pointer;
}
.c-title1 {
    position: relative;
    font-family: var(--f-notoserif);
    font-weight: bold;
    text-align: center;
}
.c-title1:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue2);
    width: 60px;
    height: 6px;
}
.c-title2 {
    background-color: var(--blue7);
}
.c-title3 {
    font-size: 2.4rem;
    letter-spacing: 0;
    position: relative;
    margin: 30px 0;
}
.c-title3:before,
.c-title3:after {
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.c-title3:before {
    width: 100px;
    z-index: 1;
    background-color: var(--blue6);
}
.c-title3:after {
    width: 100%;
    background-color: var(--blue2);
}
.c-title4 {
    color: var(--blue5);
    text-align: center;
}
.c-table1 {
    width: 100%;
}
.c-table1 th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: left;
}
.c-table2 th,
.c-table2 td {
    border: 1px solid #ccc;
}
.c-table2 thead th,
.c-table2 thead td {
    background-color: #f2f2f2;
    text-align: center;
    font-weight: bold;
}
.c-table2 tbody th {
    font-weight: normal;
    text-align: left;
}
.c-table2 tbody td {
    text-align: center;
}
.c-linkPdf,
.c-linkArea a,
.c-linkBtn1 {
    display: block;
    width: fit-content;
    border: 2px solid var(--blue4);
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: relative;
    background-color: var(--blue4);
    transition: 0.15s;
}
.c-linkBtn1 {
    margin: 0 auto;
    min-width: 300px;
}
.c-linkPdf {
    background-image: url(../img/icon-pdf.png);
    background-repeat: no-repeat;
}
.c-linkArea a:hover,
.c-linkBtn1:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--blue4);
}
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri1:before,
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri1:after,
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri2:before,
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri2:after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri1:before {
    border-color: #ffffff transparent transparent transparent;
    z-index: 1;
}
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri1:after {
    border-color: var(--blue4) transparent transparent transparent;
}
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri2:before {
    border-color: transparent transparent #ffffff transparent;
    z-index: 1;
}
:is(.c-linkPdf, .c-linkArea a, .c-linkBtn1) .tri2:after {
    border-color: transparent transparent var(--blue4) transparent;
}
.c-linkArea {
    display: flex;
    flex-wrap: wrap;
}
/* header */
header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.l-header__mainNav {
    display: flex;
    align-items: center;
}
.l-header__mainNav .siteLogo {
    margin: 0;
}
.l-header__mainNav .siteLogo a img {
    display: block;
}
.l-header__mainNav .linkRecruit,
.l-header__mainNav .linkTel,
.l-header__mainNav .linkMynavi {
    display: flex;
    align-items: center;
    background-color: var(--blue2);
    color: #fff;
    font-weight: bold;
    line-height: 1;
}
.l-header__mainNav .linkRecruit {
    background-color: var(--blue9);
}
.l-header__mainNav .linkRecruit,
.l-header__mainNav .linkTel {
    justify-content: center;
    letter-spacing: 0;
}
.l-header__mainNav .linkMynavi {
    padding: 2px;
}
header .navButton {
    position: fixed;
    background-color: var(--blue4);
    z-index: 10010;
    transition: opacity 0.15s, border-color 0.15s,
        background-color 0.15s ease-out;
}
header .navButton span {
    display: block;
    background-color: #fff;
    position: absolute;
    transition: 0.2s;
}
header .navButton:hover,
header .navButton:active {
    opacity: 1;
}
header .navButton:hover span,
header .navButton:active span {
    background-color: var(--blue3);
}
header .navButton.active {
    background-color: transparent;
    border-color: transparent;
}
header .navButton.active:hover,
header .navButton.active:active {
    border-color: transparent;
}
header .navButton.active span:nth-child(2) {
    opacity: 0;
}
.l-header__subNav {
    display: none;
    position: fixed;
    right: 0;
    background-color: var(--blue1);
    max-width: 100%;
    z-index: 10002;
}
.l-header__subNav a {
    color: #fff;
    transition: color 0.15s;
}
.l-header__subNav a:hover,
.l-header__subNav a:active {
    color: var(--blue3);
    opacity: 1;
}
.l-header__subNav .child > li:before {
    display: inline-block;
    content: "＞";
    color: var(--blue2);
}
.l-header__subNav .link-recruit {
    background-color: var(--blue9);
    display: block;
    width: 200px;
    font-size: 2.2rem;
    text-align: center;
    font-family: var(--font-tektur);
    font-weight: bold;
    padding: 5px 5px 1px;
}
.l-header__subNav .root.li-banner img {
    display: block;
}

/* footer */
footer {
    background-color: var(--blue5);
    color: #fff;
}
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer > *:not(.l-footer__contact) {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}
.l-footer__contact .contactLink:hover,
.l-footer__contact .contactLink:active {
    opacity: 1;
}
.l-footer__nav a {
    color: #fff;
    transition: color 0.15s;
}
.l-footer__nav a:hover,
.l-footer__nav a:active {
    color: var(--blue3);
    opacity: 1;
}
.l-footer__nav > ul > li > a {
    display: block;
    width: max-content;
    font-weight: bold;
}
.l-footer__nav > ul > li > a + .c-nav_bnr {
    margin-top: 10px;
}
.l-footer__nav > ul > li > a + .c-nav_bnr img {
    display: block;
}
.l-footer__nav .link-recruit {
    display: block;
    background-color: var(--blue9);
    text-align: center;
    width: 200px;
    font-size: 2.2rem;
    font-family: var(--font-tektur);
    font-weight: bold;
    padding: 5px 5px 1px;
}
.l-footer__nav .child li:before {
    display: inline-block;
    content: "＞";
    font-size: 1rem;
}
footer .siteLogo {
    display: block;
}
footer .siteLogo img {
    display: block;
}
footer .copyright {
    font-size: 1.2rem;
    text-align: center;
}

.c-nav_bnr {
    display: block;
    margin: auto;
    width: 200px;
}

footer .c-nav_bnr {
    width: 200px;
}
footer .c-nav_bnr img {
    width: 200px;
}
footer a.link-albirex {
    display: block;
    width: fit-content;
    max-width: 300px;
    margin: 30px auto 50px;
}
footer .link-albirex img {
    display: block;
}

/* =======================================
コンテンツ共通
========================================*/
/* ここから768以上
--------------------------------------- */
@media all and (min-width: 768px) {
    body {
        min-width: 1240px;
    }
    .tableScroll {
        display: block !important;
    }
    .c-title1 {
        font-size: 5rem;
        line-height: 1.2;
        padding-bottom: 23px;
        margin: 80px 0 50px;
    }
    .c-title2 {
        font-size: 2.4rem;
        padding: 0 10px;
        line-height: 1.75;
        margin: 20px 0;
    }
    .c-title3 {
        line-height: 1.833;
        padding-bottom: 4px;
    }
    .c-title4 {
        font-size: 4rem;
        line-height: 1.5;
        margin: 30px 0;
    }
    .c-table1 {
        width: 100%;
        line-height: 1.625;
    }
    .c-table1 th,
    .c-table1 td {
        border: 1px solid #ccc;
        height: 50px;
    }
    .c-table1 th {
        width: 25%;
    }
    .c-table2 {
        width: 100%;
        line-height: 1.445;
    }
    .c-table2 th {
        width: 80.5%;
    }
    .c-linkBtn1 {
        padding: 11px 20px;
    }
    .c-linkBtn1 .tri1:before {
        top: -3px;
        left: -3px;
        border-width: 19px 19px 0 0;
    }
    .c-linkBtn1 .tri1:after {
        top: -2px;
        left: -2px;
        border-width: 20px 20px 0 0;
    }
    .c-linkBtn1 .tri2:before {
        bottom: -3px;
        right: -3px;
        border-width: 0 0 19px 19px;
    }
    .c-linkBtn1 .tri2:after {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 20px 20px;
    }
    .c-linkPdf {
        font-size: 2.4rem;
        line-height: 1.416;
        letter-spacing: -1.5px;
        padding: 21px 60px 21px 110px;
        background-position: center left 55px;
        background-size: 45px auto;
    }
    .c-linkPdf .tri1:before {
        top: -3px;
        left: -3px;
        border-width: 18px 18px 0 0;
    }
    .c-linkPdf .tri1:after {
        top: -2px;
        left: -2px;
        border-width: 20px 20px 0 0;
    }
    .c-linkPdf .tri2:before {
        bottom: -3px;
        right: -3px;
        border-width: 0 0 18px 18px;
    }
    .c-linkPdf .tri2:after {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 20px 20px;
    }
    .c-linkArea a {
        padding: 5px 20px;
        min-width: 230px;
    }
    .c-linkArea a .tri1:before {
        top: -3px;
        left: -3px;
        border-width: 17px 14px 0 0;
    }
    .c-linkArea a .tri1:after {
        top: -2px;
        left: -2px;
        border-width: 18px 15px 0 0;
    }
    .c-linkArea a .tri2:before {
        bottom: -3px;
        right: -3px;
        border-width: 0 0 17px 14px;
    }
    .c-linkArea a .tri2:after {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 18px 15px;
    }
    .c-linkArea {
        margin: 100px auto 90px;
        max-width: 1240px;
        padding: 0 20px;
        gap: 10px;
    }
    /* header */
    .l-header__mainNav {
        position: absolute;
        top: 50px;
        left: 50px;
        width: calc(100% - 410px);
        justify-content: space-between;
        z-index: 1000;
    }
    .l-header__mainNav .siteLogo {
        width: 290px;
    }
    .l-header__mainNav .lowerLink {
        display: flex;
        align-items: center;
        gap: 27.5px;
    }
    .l-header__mainNav .lowerLink a {
        color: #fff;
        display: flex;
        align-items: center;
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 60px;
        height: 60px;
        min-width: 60px;
        width: max-content;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.357;
        letter-spacing: 0;
        word-break: keep-all;
        text-align: center;
    }
    .l-header__mainNav .lowerLink a:hover,
    .l-header__mainNav .lowerLink a:active {
        color: var(--blue3);
        opacity: 1;
        transition: color 0.15s;
    }
    .l-header__mainNav .lowerLink .linkAbout {
        background-image: url(../img/icon-about.png);
    }
    .l-header__mainNav .lowerLink .linkEquipment_car {
        background-image: url(../img/icon-equipment_car.png);
    }
    .l-header__mainNav .lowerLink .linkEquipment_kitchen {
        background-image: url(../img/icon-equipment_kitchen.png);
    }
    .l-header__mainNav .lowerLink .linkBankin {
        background-image: url(../img/icon-bankin.png);
    }
    .l-header__mainNav .lowerLink .linkCatalog {
        background-image: url(../img/icon-catalog.png);
    }
    .l-header__mainNav .link-recruit-tel {
        position: fixed;
        top: 45px;
        right: 110px;
        width: 210px;
        height: 70px;
        z-index: 10001;
        display: flex;
    }
    .l-header__mainNav :is(.linkRecruit, .linkTel) {
        flex: 1;
    }
    .l-header__mainNav :is(.linkRecruit, .linkTel) > div {
        margin: 0 auto;
    }
    .l-header__mainNav .linkRecruit {
        font-size: 2rem;
        font-family: var(--font-tektur);
    }
    .l-header__mainNav .linkTel {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        padding: 0;
        text-align: center;
    }
    /* .l-header__mainNav .linkMynavi {
    position: fixed;
    top: 45px;
    right: 110px;
    height: 70px;
    width: 70px;
    z-index: 10001;
  } */
    header .navButton {
        top: 45px;
        right: 40px;
        width: 70px;
        height: 70px;
    }
    header .navButton span {
        width: 30px;
        height: 2px;
        left: 20px;
    }
    header .navButton span:first-child {
        top: 23px;
    }
    header .navButton span:nth-child(2) {
        top: 35px;
    }
    header .navButton span:last-child {
        top: 47px;
    }
    header .navButton.active span:first-child {
        top: 35px;
        left: 18px;
        width: 35px;
        transform: rotate(35deg);
    }
    header .navButton.active span:last-child {
        top: 35px;
        left: 18px;
        width: 35px;
        transform: rotate(-35deg);
    }
    .l-header__subNav {
        top: 0;
        width: 790px;
        overflow-y: auto;
        padding: 175px 0 100px 65px;
        letter-spacing: 0.05em;
        line-height: 1.625;
    }
    .l-header__subNav .linkWrap {
        display: flex;
        gap: 10px;
    }
    .l-header__subNav .linkWrap > ul {
        width: 230px;
    }
    .l-header__subNav .root + .root {
        margin-top: 30px;
    }
    .l-header__subNav .root + .root.li-banner {
        margin-top: 15px;
    }
    .l-header__subNav .child {
        display: block !important;
        margin-top: 8px;
        margin-left: 10px;
    }
    .l-header__subNav .child > li {
        margin-top: 7px;
    }
    .l-header__subNav .child > li:before {
        font-size: 1rem;
        margin-right: 6px;
    }
    .l-header__subNav .child li a {
        font-size: 1.4rem;
    }
    /* footer */
    footer {
        letter-spacing: 0.05em;
        padding-bottom: 25px;
    }
    @layer {
        footer > *:not(.l-footer__contact) {
            max-width: 1040px;
        }
    }
    .l-footer__contact {
        padding: 100px 20px;
        background: url(../img/img-contact_back.jpg) no-repeat center / cover;
    }
    .l-footer__contact .contactLink {
        display: block;
        max-width: 1000px;
        margin: 0 auto;
    }
    .l-footer__contact .contactLink img.pcOnly {
        display: block;
    }
    .l-footer__nav {
        margin-top: 100px;
        line-height: 1.625;
    }
    .l-footer__nav > ul {
        display: flex;
    }
    .l-footer__nav > ul > li {
        width: 25%;
        padding: 0 9px;
        border-right: 1px solid #fff;
    }
    .l-footer__nav > ul > li:first-child {
        border-left: 1px solid #fff;
    }
    .l-footer__nav > ul > li > a + a {
        margin-top: 25px;
    }
    .l-footer__nav .child {
        display: block !important;
        margin-top: 7px;
        margin-left: 8px;
    }
    .l-footer__nav .child + a {
        margin-top: 25px;
    }
    .l-footer__nav .child li + li {
        margin-top: 7px;
    }
    .l-footer__nav .child li:before {
        margin-right: 7px;
    }
    .l-footer__nav .child li a {
        font-size: 1.4rem;
    }
    header .c-nav_bnr,
    footer .c-nav_bnr {
        margin-left: 0;
    }
    footer .siteLogo {
        width: 390px;
        margin: 50px auto 40px;
    }
}
/* ここまで768以上
--------------------------------------- */

@media all and (max-width: 1280px) {
    /* header */
    .l-header__mainNav .lowerLink {
        display: none;
    }
}

/* ここから767以下
--------------------------------------- */
@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
        line-height: 1.714;
        letter-spacing: 0.05em;
    }
    main {
        margin-top: 60px;
    }
    main td,
    main th {
        padding: 7.5px 10px;
    }
    .tableScroll {
        position: relative;
        overflow-x: auto;
    }
    .tableScroll .scrollIcon {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        width: 100px;
    }
    .c-title1 {
        font-size: 3.4rem;
        line-height: 1.176;
        padding-bottom: 23px;
        margin: 90px 0 50px;
    }
    .c-title2 {
        background-color: var(--blue8);
        font-size: 2.1rem;
        padding: 9px 20px 9.5px;
        line-height: 1.5;
        margin: 30px 0 25px;
        position: relative;
    }
    .c-title2.tableTitle:before,
    .c-title2.tableTitle:after {
        position: absolute;
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        top: 50%;
        right: 20px;
        background-color: #333;
        transition: transform 0.2s;
    }
    .c-title2.tableTitle:after {
        transform: rotate(-90deg);
    }
    .c-title2.tableTitle.active:after {
        transform: rotate(0);
    }
    .c-title3 {
        line-height: 1.416;
        padding-bottom: 7px;
    }
    .c-title4 {
        font-size: 2.9rem;
        line-height: 1.344;
        margin: 40px 0;
    }
    .c-table1 {
        width: 100%;
        max-width: 500px;
    }
    .c-table2 {
        width: 100%;
        min-width: 400px;
    }
    .c-table1 th,
    .c-table1 td {
        display: block;
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
    }
    .c-table1 tr:last-child td:last-child {
        border-bottom: 1px solid #ccc;
    }
    .c-table1 th {
        width: 100%;
    }
    .c-table2 {
        line-height: 1.3;
    }
    .c-table2 th {
        width: 300px;
    }
    .c-table2 td {
        width: 100px;
    }
    .c-linkBtn1 {
        padding: 16px 30px;
    }
    .c-linkBtn1 .tri1:before {
        top: -3px;
        left: -3px;
        border-width: 18px 28px 0 0;
    }
    .c-linkBtn1 .tri1:after {
        top: -2px;
        left: -2px;
        border-width: 19px 29px 0 0;
    }
    .c-linkBtn1 .tri2:before {
        bottom: -3px;
        right: -3px;
        border-width: 0 0 18px 28px;
    }
    .c-linkBtn1 .tri2:after {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 19px 29px;
    }
    .c-linkPdf {
        font-size: 1.8rem;
        line-height: 1;
        letter-spacing: -1px;
        padding: 19px 17px 19px 58px;
        background-position: center left 20px;
        background-size: 27px auto;
        margin: 0 auto;
    }
    .c-linkPdf .tri1:before {
        top: -2px;
        left: -2px;
        border-width: 18px 18px 0 0;
    }
    .c-linkPdf .tri1:after {
        top: -2px;
        left: -2px;
        border-width: 20px 20px 0 0;
    }
    .c-linkPdf .tri2:before {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 18px 18px;
    }
    .c-linkPdf .tri2:after {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 20px 20px;
    }
    .c-linkArea {
        align-items: center;
    }
    .c-linkArea a {
        max-width: 165px;
        width: calc(50% - 2.5px);
        padding: 6px 17px;
    }
    .c-linkArea a .tri1:before {
        top: -2px;
        left: -2px;
        border-width: 13px 16px 0 0;
    }
    .c-linkArea a .tri1:after {
        top: -2px;
        left: -2px;
        border-width: 15px 18px 0 0;
    }
    .c-linkArea a .tri2:before {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 13px 16px;
    }
    .c-linkArea a .tri2:after {
        bottom: -2px;
        right: -2px;
        border-width: 0 0 15px 18px;
    }
    .c-linkArea {
        gap: 5px;
        margin: 100px auto 90px;
        padding: 0 20px;
        max-width: 375px;
    }
    /* header */
    .l-header__mainNav {
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        padding-left: 10px;
        padding-right: 60px;
        background-color: var(--blue1);
        z-index: 10001;
    }
    .l-header__mainNav .siteLogo {
        width: 180px;
    }
    .l-header__mainNav .link-recruit-tel {
        margin-left: auto;
        height: 100%;
    }
    .l-header__mainNav .linkRecruit,
    .l-header__mainNav .linkTel {
        height: 50%;
        width: 85px;
        justify-content: center;
    }
    .l-header__mainNav .linkTel {
        font-size: 1.2rem;
        letter-spacing: 0.025em;
    }
    .l-header__mainNav .linkTel span {
        font-size: 1.4rem;
        margin-top: 4px;
    }
    .l-header__mainNav .linkMynavi {
        height: 60px;
        width: 60px;
    }
    header .navButton {
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
    }
    header .navButton.active {
        opacity: 1;
    }
    header .navButton span {
        width: 22px;
        height: 1.5px;
        left: 19px;
    }
    header .navButton span:first-child {
        top: 21px;
    }
    header .navButton span:nth-child(2) {
        top: 30px;
    }
    header .navButton span:last-child {
        top: 39px;
    }
    header .navButton.active span:first-child {
        top: 30px;
        left: 17px;
        width: 27px;
        transform: rotate(40deg);
    }
    header .navButton.active span:last-child {
        top: 30px;
        left: 17px;
        width: 27px;
        transform: rotate(-40deg);
    }
    .l-header__subNav {
        display: none;
        top: 0;
        width: 100%;
        overflow-y: auto;
        padding: 80px 20px 50px 20px;
        letter-spacing: 0.025em;
        line-height: 1.857;
    }
    .l-header__subNav .linkWrap {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .l-header__subNav .root {
        position: relative;
        margin-top: 12px;
    }
    .l-header__subNav .root + .root.li-banner {
        margin-top: 10px;
    }
    .l-header__subNav .root > button {
        position: absolute;
        top: 0;
        right: 0;
        width: 21px;
        height: 21px;
    }
    .l-header__subNav .root > button:before,
    .l-header__subNav .root > button:after {
        display: block;
        content: "";
        width: 21px;
        height: 1px;
        background-color: #fff;
        top: 10.5px;
        left: 0;
        transition: transform 0.15s;
    }
    .l-header__subNav .root > button:after {
        transform: rotate(-90deg);
    }
    .l-header__subNav .root > button.active:after {
        transform: rotate(0);
    }
    .l-header__subNav .child {
        display: none;
        padding-top: 10px;
        margin-left: 5px;
    }
    .l-header__subNav .child > li {
        margin-top: 7px;
    }
    .l-header__subNav .child > li:before {
        font-size: 1rem;
        margin-right: 7px;
    }
    .l-header__subNav .child li a {
        font-size: 1.2rem;
    }
    .l-header__subNav .link-recruit {
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }
    /* footer */
    footer {
        letter-spacing: 0.025em;
        padding-bottom: 25px;
    }
    footer > *:not(.l-footer__contact) {
        max-width: 440px;
    }
    .l-footer__contact {
        padding: 35px 20px;
        background: url(../img/sp/img-contact_back_sp.jpg) no-repeat center /
            cover;
    }
    .l-footer__contact .contactLink {
        display: block;
        max-width: 335px;
        margin: 0 auto;
    }
    .l-footer__contact .contactLink img.spOnly {
        display: block;
    }
    .l-footer__nav {
        margin-top: 60px;
        line-height: 1.625;
        position: relative;
    }
    .l-footer__nav .root {
        position: relative;
    }
    .l-footer__nav .root > button {
        position: absolute;
        top: 0;
        right: 0;
        width: 21px;
        height: 21px;
    }
    .l-footer__nav .root > button:before,
    .l-footer__nav .root > button:after {
        display: block;
        content: "";
        width: 21px;
        height: 1px;
        background-color: #fff;
        top: 10.5px;
        left: 0;
        transition: transform 0.15s;
    }
    .l-footer__nav .root > button:after {
        transform: rotate(-90deg);
    }
    .l-footer__nav .root > button.active:after {
        transform: rotate(0);
    }
    .l-footer__nav > ul > li > a {
        margin-top: 12px;
    }
    .l-footer__nav > ul > li > a + a {
        margin-top: 16px;
    }
    .l-footer__nav .link-recruit {
        margin-left: auto;
        margin-right: auto;
    }
    .l-footer__nav .child {
        display: none;
        margin-top: 9px;
        margin-left: 5px;
    }
    .l-footer__nav .child li + li {
        margin-top: 7px;
    }
    .l-footer__nav .child li:before {
        margin-right: 7px;
    }
    .l-footer__nav .child li a {
        font-size: 1.2rem;
    }
    footer .siteLogo {
        width: 281px;
        margin: 50px auto 40px;
        padding: 0;
    }
}
