@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;

    list-style: none;
    color: inherit;
}

html {
    font-size: 62.5%;
    /* 1rem = 10 px */
}




/*********************************

header

*********************************/

.header {
    width: 100%;
    height: 5rem;
    background-color: #8D7050;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 102
;
}

.logo {
    font-family: "Noto Serif JP", serif;
    background-color: #574532;
    font-size: 2.3rem;
    padding: 0 2.4rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.navigation-lists {
    font-size: 1.2rem;
    height: 5rem;
    color: #fff;
    display: flex;
}

.navigation-list {
    font-family: "Noto Serif JP", serif;
    display: flex;
    align-items: center;
    margin-right: 2.4rem;
}

.navigation-list a {
    display: block;
    cursor: pointer;
}

.navigation-list:last-child {
    background-color: #864130;
    display: flex;
    justify-content: center;
    margin-right: 0;
    padding: 2.4rem;
}

.hamburger-menu {
    display: none;
}

/*********************************

sp-Navigation

*********************************/

.sp-navigations {
    display: none;
}




/* ----------------------------------
    共通パーツ
----------------------------------- */

.main-width {
    max-width: 1200px;
    width: 100%;
    margin: 100px auto 100px auto;
    padding: 0 30px;

}

.section_title {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    margin-bottom: 30px;
}

/* ----------------------------------
    header
----------------------------------- */

header {
    width: 100%;
    height: 76px;
}

header #hd_logo {
    width: 136px;
    margin: 30px 40px;
}

.staff_image {
    max-width: 1400px;
    margin: 0 auto;
}

.staff_image img {
    width: 100%;
    height: calc(50vh);
    object-fit: cover;
}

.staff h3 {
    font-size: 3rem;
}

.staff h3::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    border-bottom: solid #ff0000 1px;
    /*borderの指定*/
    margin-top: 20px;
    margin-bottom: 40px;
    /*余白の指定*/
}

.staff .flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.staff .flex-box::after {
    display: block;
content:"";
    width: 31%;
}

.staff .staff-info {
    width: 31%;
    text-align: center;
    margin-bottom: 100px;
    font-size: 2rem;
}


/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.88rem;
    padding: 55px 0;
    text-align: center;
}

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


    .title-large {
        font-size: 2.5rem;
        margin-bottom: 3.5rem;
    }

    /*********************************

Header

*********************************/


    .hamburger-menu {
        display: block;
        font-size: 3rem;
        color: #fff;
        position: absolute;
        top: 0;
        right: 30px;
        z-index: 101;
        background-color: #8D7050;
    }

    .navigation {
        display: none;
    }


.sp-navigations.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-size: 2.5rem;
    background-color: #8D7050;
    color: #fff;
    z-index: 100;
}

.sp-navigations.show .sp-navigation-lists {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sp-navigations.show .sp-navigation-lists .navigation-list {
    margin-bottom: 6rem;
}

.sp-navigations.show .navigation-list:last-child {
    background-color: #8D7050;
    padding: 0;
}

}





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

    /*-------------------------------------------
    Mainvisual
    -------------------------------------------*/
    .staff_image img {
        height: calc(50vh - 60px);
        object-fit: cover;
    }

    .staff .staff-info {
        width: 43%;
    }

}

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

    /*-------------------------------------------
    Mainvisual
    -------------------------------------------*/
    .staff_image img {
        height: calc(50vh - 60px);
        object-fit: cover;
    }

    .staff .flex-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .staff .staff-info {
        width: 100%;
        margin-bottom: 60px;
    }

    .main-width {
        margin: 60px auto 60px auto;
    }

}