header {
    width: 92%;
    max-width: 1152px;
    padding: 40px 0 12px;
    margin: 0 auto;
    height: auto;
    display: block;
}

header img {
    width: 60px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

header .breadcrumb {
    margin-bottom: 40px;
}

header .breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

header .breadcrumb ul li+li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    margin: 0 10px;
}

header .breadcrumb ul li:first-child a {
    color: #000;
    text-decoration: none;
}

header .breadcrumb ul li:first-child a:hover {
    text-decoration: underline;
}

main {
    width: 92%;
    max-width: 1152px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {

    header,
    main {
        width: 88%;
    }
}

/* 採用情報一覧 */
.recruit-list .list-container {
    margin-bottom: 120px;
}

.recruit-list .recruit-msg {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    margin-bottom: 40px;
    border-radius: 20px;
    background-color: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.recruit-list .recruit-msg img {
    width: 90%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
    object-fit: cover;
}

.recruit-list .ttl-container {
    border-left: 10px solid #E35B5C;
    background-color: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.recruit-list .ttl-box {
    display: flex;
    align-items: center;
    padding: 10px 50px;
    margin-bottom: 10px;
    background-color: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.recruit-list .ttl-box .city {
    display: inline-block;
    background-color: #FFD065;
    border-radius: 4px;
    width: 90px;
    text-align: center;
    padding: 0px;
    box-sizing: border-box;
}

.recruit-list .ttl-box .shop {
    padding-left: 20px;
    font-size: 24px;
    font-weight: 600;
}

.recruit-list .txt-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 30px 40px;
    margin-bottom: 20px;
    border-radius: 20px;
    background-color: #FEF1B3;
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
}

.recruit-list .txt-container::after {
    content: "";
    position: absolute;
    padding: 0px 30px;
    margin: 0 30px;
    left: 0;
    right: 0;
    width: auto;
    bottom: 20px;
    height: 1px;
    background-color: #000;
    border-radius: 1px;
}

.recruit-list .txt-box {
    flex: 6;
    min-width: 0;
}

.recruit-list .txt-box ul li {
    margin-bottom: 12px;
    font-weight: 600;
}

.recruit-list .txt-box p {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.recruit-list .txt-btnbox {
    flex: 4;
    display: flex;
    gap: 20px;
    min-width: 0;
}

.recruit-list .txt-btnbox div {
    flex: 1;
    min-width: 0;
    position: relative;
}

.recruit-list .txt-btnbox div a {
    display: block;
    width: 100%;
    padding: 14px 26px;
    background-color: #E35B5C;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.recruit-list .txt-btnbox div a:hover {
    background-color: #cc4f52;
}

.recruit-list .txt-btnbox div:active {
    transform: translateY(2px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.txt-btnbox div a::before,
.txt-btnbox div a::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 10px;
    height: 2px;
    background: #fff;
}

.txt-btnbox div a::before {
    top: 50%;
    transform: translateY(-3px) rotate(45deg);
}

.txt-btnbox div a::after {
    top: 50%;
    transform: translateY(3px) rotate(-45deg);
}



@media screen and (max-width: 1024px) {
    .recruit-list .txt-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .recruit-list .txt-box {
        width: 100%;
    }

    .recruit-list .txt-btnbox {
        flex-direction: row;
        width: 100%;
    }

    .recruit-list .txt-btnbox div {
        flex: 1;
    }
}

@media screen and (max-width: 767px) {

    .recruit-list .recruit-msg {
        flex-direction: column;
        align-items: center;
    }

    .recruit-list .txt-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .recruit-list .ttl-box {
        width: 100%;
        padding: 10px 6px;
    }

    .recruit-list .ttl-box .shop {
        padding-left: 10px;
        font-size: 18px;
        font-weight: 600;
    }

    .recruit-list .txt-btnbox {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .recruit-list .txt-btnbox div {
        width: 100%;
        flex: none;
    }

    .recruit-list .txt-btnbox p div {
        width: 100%;
        white-space: normal;
    }
}

/* 採用詳細 */

.recruit-info .wrap {
    padding: 40px;
    margin-bottom: 120px;
    border-radius: 20px;
    background-color: #fff;
}

.recruit-info .tbl {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
    margin-bottom: 30px;
}

.recruit-info .tbl th,
.recruit-info .tbl td {
    padding: 8px 12px;
    vertical-align: top;
    background-color: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.recruit-info .tbl th {
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    width: 180px;
    background-color: #FFD065;
    text-align: left;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 600;
}

.recruit-info .tbl td {
    border-right: 1px solid #000;
    border-left: none;
}

.recruit-info .info-btnbox {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.recruit-info .tel,
.apply a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 390px;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
}

.recruit-info .tel {
    border: 1px solid #000;
    background-color: #fff;
}

.apply a {
    background-color: #E35B5C;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s, transform 0.1s;
}

.apply a:hover {
    background-color: #cc4f52;
}

.apply a:active {
    transform: translateY(2px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.rtn {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.rtn a {
    position: relative;
    display: block;
    background: #B9B9B9;
    background: #aeaeae;
    min-width: 300px;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    padding: 14px 28px 14px 44px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.rtn a:hover {
    background-color: #999;
}

.rtn a:active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transform: translateY(2px);
}

.rtn a,
.apply a {
    position: relative;
    overflow: hidden;
}

.apply a::before,
.apply a::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 10px;
    height: 2px;
    background: #fff;
}

.apply a::before {
    top: 50%;
    transform: translateY(-3px) rotate(45deg);
}

.apply a::after {
    top: 50%;
    transform: translateY(3px) rotate(-45deg);
}

.rtn a::before,
.rtn a::after {
    content: "";
    position: absolute;
    left: 16px;
    width: 10px;
    height: 2px;
    background: #fff;
}

.rtn a::before {
    top: 50%;
    transform: translateY(-3px) rotate(-45deg);
}

.rtn a::after {
    top: 50%;
    transform: translateY(3px) rotate(45deg);
}

@media screen and (max-width: 767px) {
    .recruit-info .wrap {
        padding: 40px 20px;
        margin-bottom: 80px;
    }

    .recruit-info .tbl th,
    .recruit-info .tbl td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .recruit-info .tbl td {
        border-top: none;
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 10px;
    }

    .recruit-info .tbl th {
        border: 1px solid #000;
        border-bottom: none;
        background-color: #FFD065;
        padding: 10px;
        font-weight: 600;
    }

    .recruit-info .tbl tr:last-child td {
        border-bottom: 1px solid #000;
    }

    .recruit-info .info-btnbox {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .recruit-info .tel,
.apply a {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
    }

    .recruit-info .rtn a {
        width: 76%;
        width: 50%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
    }
}

/* 個人情報保護方針 */
.privacy-policy {
    margin-bottom: 120px;
}

.privacy-policy .privacy-policy-info {
    max-width: 900px;
    margin: 20px auto 80px;
    padding: 60px 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-policy .privacy-policy-ttl {
    margin-top: 60px;
    font-size: 20px;
    font-weight: 700;
    border-left: 6px solid #f5b400;
    padding-left: 12px;
    color: #222;
}

.privacy-policy .privacy-policy-ttl:last-of-type {
    margin-top: 0px;
    font-size: 20px !important;
    font-weight: 400;
    border-left: none;
    padding-left: 0px;
    color: #fff;
}

.privacy-policy .privacy-policy-txt {
    margin: 16px 0;
    font-size: 16px;
}

.privacy-policy div:last-of-type {
    font-weight: 400;
    text-align: left;
    font-size: 20px;
}

.privacy-policy .privacy-policy-endtxt {
    text-align: right;
}

.privacy-policy .sign {
    text-align: right;
    font-weight: 600;
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .privacy-policy {
        padding: 40px 0px;
        margin-bottom: 80px;
    }

    .privacy-policy .privacy-policy-info {
        padding: 30px 10px;
        margin: 40px auto;
    }

    .privacy-policy .privacy-policy-ttl {
        font-size: 18px;
    }

    .privacy-policy .privacy-policy-txt {
        font-size: 15px;
    }

    .privacy-policy .sign {
        font-size: 16px;
    }
}

/* 404 */
.notfound {
    padding: 40px;
    margin-bottom: 120px;
    border-radius: 20px;
    background-color: #fff;
}

.notfound .wrap {
    min-height: calc(100vh - 569px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.notfound-subttl {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 20px;
}

.notfound-ttl {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 20px;
}

.notfound-txt {
    margin-bottom: 40px;
}

/* .notfound .rtn {
    display: flex;
    justify-content: center;
}

.notfound .rtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    background-color: #B9B9B9;
    color: #000;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
}

.notfound .rtn a:hover {
    background-color: #999;
}

.notfound .rtn a:active {
    transform: translateY(2px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
} */

@media screen and (max-width: 767px) {
    .notfound {
        margin-bottom: 60px;
    }
}

/* フッター */
footer {
    padding: 50px 0;
    background-color: #888;
}

footer .footer-container {
    width: 92%;
    max-width: 1152px;
    margin: 0 auto;
}

footer .footer-company {
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
}

footer .footer-add {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

footer .footer-link {
    margin-bottom: 30px;
}

.footer-link a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    gap: 6px;
}

/* 疑似要素でアイコン表示 */
.footer-link a::after {
    content: "";
    background: url(../img/outlink-icn.png);
    background-size: contain;
    width: 16px;
    height: 16px;
}

footer .footer-link a:hover {
    text-decoration: underline;
}


footer .footer-copy {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    footer .footer-container {
        width: 88%;
    }
}

/* topへボタン */
.page-top {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    width: 48px;
}