@charset "utf-8";

/* HEADER */

header {
    position: fixed;
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    z-index: 999;
    background-color: rgba(255, 255, 255, .8);
    font-size: 1rem;
}

@media screen and (max-width:768px) {
    header {
        padding-top: 0.62rem;
        padding-bottom: 0.62rem;
    }
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 77.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.25rem;
}

h1:hover {
    opacity: .7;
    transition: .5s;
}

h1 .logo-flex {
    display: flex;
    align-items: center;
}

h1 img {
    width: 3.44rem;
}

@media screen and (max-width:768px) {
    h1 img {
        width: 2.8rem;
    }
}

h1 .logo-right {
    font-family: 'zen Maru Gothic', serif;
    margin-left: 0.62rem;
    margin-bottom: 0.3rem;
}

.logo-right .logo-heading {
    font-weight: 600;
    color: #6C4A40;
    letter-spacing: 0.05em;
}

@media screen and (max-width:768px) {
    .logo-right .logo-heading {
        letter-spacing: 0em;
        font-size: 0.8rem;
    }
}

h1 .logo-right .logo-main {
    font-weight: 900;
    font-size: 2.25rem;
    color: #6C4A40;
    display: flex;
    align-items: center;
}

@media screen and (max-width:768px) {
    h1 .logo-right .logo-main {
        font-size: 1.88rem;
        margin-top: -0.7rem;
    }
}

/* @media screen and (max-width:412px) {
    h1 .logo-right .logo-main {
        font-size: 1.5rem;
        margin-top: -0.9rem;
    }
} */

h1 .logo-right .logo-main span {
    font-size: 1.375rem;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.88rem;
}

@media screen and (max-width:768px) {
    h1 .logo-right .logo-main span {
        font-size: 1rem;
    }
}

h1 .logo-right .logo-main span::before {
    content: "〜";
    font-size: 1rem;
    position: absolute;
    left: -16px;
    top: 1px;
}

@media screen and (max-width:768px) {
    h1 .logo-right .logo-main span::before {
        left: -12px;
    }
}

h1 .logo-right .logo-main span::after {
    content: "〜";
    font-size: 1rem;
    position: absolute;
    top: 1px;
    right: -16px;
}

@media screen and (max-width:768px) {
    h1 .logo-right .logo-main span::after {
        right: -11px;
    }
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}

@media screen and (max-width:1280px) {
    header nav {
        justify-content: flex-end;
        width: initial;
        margin-right: 6rem;
    }
}

@media screen and (max-width:768px) {
    header nav {
        margin-right: 4rem;
    }
}

@media screen and (max-width:412px) {
    header nav {
        margin-right: 2.4rem;
    }
}

nav .menu-pc {
    display: flex;
    align-items: center;
}

@media screen and (max-width:1280px) {
    nav .menu-pc {
        display: none;
    }
}

nav .menu-pc li {
    margin-left: 3.13rem;
}

nav .header-recruit {
    margin: 0 10px;
}

@media screen and (max-width:768px) {
    nav .header-recruit {
        margin: 0 7px;
    }
}

nav .menu-pc a:hover {
    color:#DAC0BA;
    transition: .5s;
}

nav .header-recruit-box {
    border: 1px solid #BA866A;
    border-radius: 15px;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .header-recruit-box:hover {
    background-color: #BA866A;
    transition: .5s;
}

nav .header-recruit-box .header-recruit {
    display: flex;
    align-items: center;
    color: #BA866A;
}

nav .header-recruit-box:hover .header-recruit {
    color: #fff;
    transition: .5s;
}

nav .header-recruit img {
    width: 1.5rem;
}

@media screen and (max-width:768px) {
    nav .header-recruit img {
        width: 1.2rem;
    }
}

nav .header-recruit span {
    letter-spacing: .3em;
    margin-left: .3em;
    font-family: 'zen Maru Gothic', serif;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    nav .header-recruit span {
        letter-spacing: .1em;
        margin-left: .2em;
        font-size: 0.88rem;
    }
}

nav .menu-media {
    display: flex;
    align-items: center;
}

@media screen and (max-width:1280px) {
    nav .menu-media {
        display: none;
    }
}

nav .menu-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #BA866A;
    border: 1px solid #BA866A;
    color: #fff;
    font-size: 1.375rem;
    margin-left: 1.25rem;
}

nav .menu-media a i {
    margin-left: 2px;
}

nav .menu-media a:hover {
    background-color: #fff;
    color: #BA866A;
    transition: .5s;
}

/* MENU SP */

nav .menu-sp {
    display: none;
}

nav .menu-sp {
    position: fixed;
    display: none;
    z-index: 150;
    background-color: rgba(255, 255, 255, .8);
    width: 60%;
    height: 100vh;
    top: 0;
    right: 0;
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 60px;
    padding: 3.13rem;
    box-sizing: border-box;
}

@media screen and (max-width:412px) {
    nav .menu-sp {
        width: 75%;
    }
}

nav .menu-sp li {
    border-bottom: 1px dashed #6C4A40;
    margin-bottom: 0.88rem;
    padding-bottom: 0.88rem;
}


.sp-block-menu {
    display: none;
}

nav .menu-sp i {
    font-size: 1.375rem;
}

@media screen and (max-width:1280px) {
    .sp-block-menu {
        display: block;
    }
}

.sp-menu-box {
    display: flex;
    align-items: center;
}

nav .sp-menu-box .menu-media-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #BA866A;
    border: 1px solid #BA866A;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 1.1rem;
}

@media screen and (max-width:412px) {
    nav .sp-menu-box .menu-media-sp {
        width: 33px;
        height: 33px;
    }
}

nav .sp-menu-box .menu-media-sp i {
    margin-left: 1.5px;
}

@media screen and (max-width:412px) {
    nav .sp-menu-box .menu-media-sp i {
        margin-left: 2px;
    }
}

/* HAMBURGER MENU */

.hamburger {
    position: absolute;
    top: 3rem;
    right: 1.12rem;
    cursor: pointer;
    width: 40px;
    height: 24px;
    z-index: 300;
    display: none;
}

@media screen and (max-width:1280px) {
    .hamburger {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .hamburger {
        top: 1.6rem;
        width: 37px;
    }
}

@media screen and (max-width:412px) {
    .hamburger {
        top: 1.35rem;
        width: 35px;
    }
}

.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 3px;
    background-color: #6C4A40;
    border-radius: 5px;
    width:100%;
    z-index: 250;
}

@media screen and (max-width:768px) {
    .hamburger span {
        height: 2.5px;
    }
}

.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 7px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 19px;
    transform: translateY(-6px) rotate(33deg);
}

.menu-add {
    font-size: 0.59rem;
    margin-top: 1.18rem;
    text-align: center;
}

@media screen and (max-width:412px) {
    .menu-add {
        font-size: 0.4rem;
        margin-top: 1.18rem;
    }
}

/* SP RECRUIT BTN */

.header-content .sp-recruit-btn {
    display: none;
}

@media screen and (max-width:1280px) {
    .header-content .sp-recruit-btn {
        position: fixed;
        z-index: 998;
        bottom: 1.25rem;
        left: 50%;
        transform: translate(-50%, 0);
        font-size: 1.18rem;
        padding-bottom: 0;
    }
}

.header-content .sp-recruit-btn a {
    background-color: #Fff;
    color: #BA866A;
    width: 15rem;
}

.header-content .btn-area a img {
    width: 1.5rem;
}

.header-content .sp-recruit-btn a span {
    letter-spacing: .3em;
    margin-left: .3em;
    font-family: 'zen Maru Gothic', serif;
    font-weight: 500;
}

/* FOOTER */

footer {
    width: 100%;
}

footer .main-footer {
    display: flex;
    align-items: start;
    justify-content: space-between;
    max-width: 77.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.16rem;
    padding-top:3.13rem;
    padding-bottom:3.13rem;
}

@media screen and (max-width:768px) {
    footer .main-footer {
        display: block;
    }
}

.footer-left {
    width: 50%;
}

@media screen and (max-width:768px) {
    .footer-left {
        width: 100%;
    }
}

.footer-left:hover {
    opacity: .8;
    transition: .5s;
}

/* LOGO */

footer .footer-logo {
    margin-bottom: 1.88rem;
}

.footer-left .logo-flex {
    display: flex;
    align-items: center;
}

.footer-left img {
    width: 3.44rem;
}

.footer-left .logo-right {
    font-family: 'zen Maru Gothic', serif;
    margin-left: 0.62rem;
}

.footer-left .logo-right .logo-main {
    font-weight: 900;
    font-size: 2.25rem;
    color: #6C4A40;
    display: flex;
    align-items: center;
}

.footer-left .logo-heading {
    font-size: 1rem;
}

.footer-left .logo-right .logo-main span {
    font-size: 1.375rem;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.88rem;
}

.footer-left .logo-right .logo-main span::before {
    content: "〜";
    font-size: 1rem;
    position: absolute;
    left: -16px;
    top: 1px;
}

.footer-left .logo-right .logo-main span::after {
    content: "〜";
    font-size: 1rem;
    position: absolute;
    right: -16px;
}

footer .footer-work-time {
    display: flex;
    align-items: center;
}

footer .footer-work-time .footer-open-time {
    margin-left: 1.25rem;
}

/* FOOTER RIGHT */

.footer-right {
    width: 50%;
}

@media screen and (max-width:768px) {
    .footer-right {
        width: 100%;
    }
}

.footer-right address {
    font-style: normal;
    margin-bottom: 1.25rem;
}

.footer-right a:hover .post-code {
    color: #BA866A;
    transition: .5s;
}

.footer-right a:hover address {
    color: #BA866A;
    transition: .5s;
}

.footer-right .footer-media {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.footer-right .footer-number {
    font-size: 1.88rem;
}

.footer-right .footer-media-title {
    margin-right: 1.25rem;
}

.footer-right .footer-media .tel-number {
    font-weight: bold;
    color:#34AC39;
}

.footer-right .footer-media .tel-number:hover {
    color:#7bd87e;
    transition: .5s;
}

.footer-right .footer-email:hover {
    color: #BA866A;
    transition: .5s;
}

.footer-right .footer-email:hover a {
    color: #BA866A;
    transition: .5s;
}

footer .sub-footer {
    width: 100%;
    background-color: #BA866A;
    height:2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .sub-footer p {
    text-align: center;
    color: #fff;
}

/* H3 */

h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.88rem;
}

h3 span {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2.5rem;
    font-weight: bold;
}

h3 span::before {
    content: '';
    display: block;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    background-color: #BA866A;
    position: absolute;
    left: 0;
}

h3 span::after {
    content: '';
    display: block;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    background-color: #34AC39;
    position: absolute;
    left: 1.16rem;
}

h3 img {
    width: 2.5rem;
    margin-left: 0.31rem;
    margin-bottom: 0.62rem;
}

/* H4 */

h4 {
    font-size: 1.88rem;
    line-height: 1.9em;
    font-family: 'zen Maru Gothic', serif;
    font-weight: 700;
    margin-bottom: 1.88rem;
}

@media screen and (max-width:768px) {
    h4 {
        font-size: 1.5rem;
        margin-bottom: 1.88rem;
        text-align: justify;
    }
}


/* H5 */

h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

@media screen and (max-width:768px) {
    h5 {
        font-size: 1.25rem;
    }
}
