@charset "UTF-8";
/* =======================
common
========================*/
html {
    font-size: 62.5%;
    font-family: "Zen Old Mincho";
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    color: #141414;
    font-family: "Hiragino Mincho ProN";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
}

.topbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 18px;
    border-radius: 50%;
    background-color: #968861;
    box-shadow: 2px 2px 4px 2px rgba(20, 20, 20, 0.2);
    color: #141414;
    font-family: "Times New Roman";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    position: fixed;
    bottom: 5%;
    right: 5%;
}

.topbtn:hover {
    background-color: #AB9F80;
}

/* =======================
fadein
========================*/
.fadein {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadein.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* =======================
header
========================*/
.header {
    padding: 0 5.3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #141414;
    height: 80px;
}

.logo {
    width: 100px;
}

.nav {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    padding: 20px 5.3%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active{
    transform: translateX(0);
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic img {
    width: 100px;
}

.nav__list {
    padding: 40px 0;
}

.nav__item {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 52px;
}

.nav__item:hover {
    color: #968861;
}

.nav.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    transform: translateX(0);
}

.header__btn{
    display: block;
    width: 32.5px;
    height: 18px;
    cursor: pointer;
}

/* header pc */
@media screen and (min-width:769px) {
    .header {
        padding: 40px 9.3% 40px 9.3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 120px;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__header {
        display: none;
    }

    .nav__list {
        display: flex;
        gap: 24px;
        margin-top: 0;
        padding: 0 0;
    }

    .nav__item {
        font-size: 1.6rem;
        margin-top: 0;
    }

    .header__btn {
        display: none;
    }
}

/* =======================
recruit
========================*/
.recruit__img__sp {
    display: block;
    width: 100%;
}

.recruit__container {
    background-color: #141414;
    padding: 40px 15px;
}

.recruit__title {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.recruit__description {
    margin-top: 40px;
    color: #FFF;
    line-height: 2;
}

.job__description {
    padding: 80px 15px;
    background-color: #F6F3EC;
}

.job__description__title {
    color: #141414;
    font-family: "Times New Roman";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.75;
}

.job__description__title__jp {
    color: #141414;
    font-family: "Hiragino Mincho ProN";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 3.6rem;
}

.job__description__container {
    margin-top: 64px;
}

.job__description__content {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
}

.job__description__content:first-of-type {
    margin-top: 0;
}

.job__description__column {
    width: 100px;
    flex-shrink: 0; 
    font-weight: 600;
}

.job__description__matter {
    margin-left: 24px;
    flex: 1;
    word-break: break-word;
}

.br__sp {
    display: block;
}

/* recruit pc */
@media screen and (min-width:769px) {
    .recruit__img__sp {
        display: none;
    }

    .recruit__wrapper {
        width: 100%;
        background-image: url("../image/recruit.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
    }

    .recruit__container {
        background-color: transparent;
        padding: 13% 15.3%;
    }

    .recruit__title {
        font-size: 12rem;
    }

    .recruit__description {
        margin-top: 80px;
        color: #FFF;
        line-height: 2;
    }

    .job__description {
        padding: 120px 17.4%;
    }

    .job__description__title {
        font-size: 8rem;
        text-align: center;
    }

    .job__description__container {
        margin: 80px auto 0;
        max-width: 900px;
        width: 100%;
    }

    .job__description__column {
        width: 160px;
        line-height: 2;
    }

    .job__description__matter {
        margin-left: 80px;
        line-height: 2;
        flex: 1;
        word-break: break-word;
    }

    .br__sp {
        display: none;
    }
}

/* =======================
entry
========================*/

.entry {
    padding: 80px 15px;
    background-color: #F6F3EC;
}

.entry__title {
    color: #141414;
    font-family: "Times New Roman";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.75;
    text-align: center;
}

.entry__container {
    margin-top: 64px;
}

.entry__content {
    margin-top: 24px;
}

.entry__content:first-of-type {
    margin-top: 0;
}

.entry__column {
    font-weight: 600;
    margin-bottom: 16px;
}

.entry__attention {
    color: #EC2121;
}

.form__input {
    align-self: stretch;
    width: 100%;
    background-color: #FFF;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}

.form__textarea {
    align-self: stretch;
    width: 100%;
    height: 160px;
    background-color: #FFF;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}

.entry__check {
    margin: 64px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.checkbox__label input[type="checkbox"] {
    display: none;
}

.checkbox__custom {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #FFF;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.checkbox__label input[type="checkbox"]:checked + .checkbox__custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #968861;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.under__line {
    text-decoration-line: underline;
    text-decoration-color: #141414;
    text-decoration-style: solid;
}

.entry__btn {
    margin: 64px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    height: 64px;
    background: #968861;
    transition: background-color 0.3s ease;
}

.entry__btn button {
    all: unset;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    font-size: 1.6rem;
}

.entry__btn button:hover {
    background-color: #AB9F80;
    border-radius: 5px;
}

/* entry pc */
@media screen and (min-width:769px) {
    .entry {
    padding: 120px 15.3%;
}

.entry__title {
    font-size: 8rem;
}

.entry__container {
    margin-top: 80px;
}

.entry__check {
    text-align: center;
    margin-top: 80px;
}

.entry__btn {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    height: 100px;
    background: #968861;
    transition: background-color 0.3s ease;
}

.entry__btn button {
    all: unset;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    font-size: 2.4rem;
}

.entry__btn button:hover {
    background-color: #AB9F80;
    border-radius: 5px;
}
}


/* =======================
footer
========================*/

.footer {
    background-color: #141414;
    padding: 80px 5.3%;
    text-align: center;
}

.footer__logo {
    width: 100px;
}

.copy {
    margin-top: 40px;
    color: #FFF;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* shop info pc */
@media screen and (min-width:769px) {
    .footer {
        padding: 80px 15.2%;
    }

    .footer__logo {
        width: 200px;
    }

    .copy {
        margin-top: 80px;
    }
}
