@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 0 auto;
    padding: 0 30px;
}

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

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

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

.health_image {
    max-width: 1400px;
    margin: 0 auto;
    object-fit: cover;

}

.health_image img {
    width: 100%;
}

.text-wrapper {

    margin: 100px 0 100px 0;
}

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

.content-image {
    max-width: 1200px;
    margin: 0 auto;
    object-fit: cover;
}

.content-image img {
    width: 100%;
    object-fit: cover;
}

.content-title h3 {
    width: 100%;
    font-size: 2.5rem;
}



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


.content-title p {
    font-size: 1.8rem;
    line-height: 3.6rem;
}



/*-------------------------------------------
swiper
-------------------------------------------*/

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

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-wrapper .swiper-slide {
    padding: 0 5px;
}

/*-------------------------------------------
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: 600px) {

    /*-------------------------------------------
    Mainvisual
    -------------------------------------------*/
    .health_image img {
        object-fit: cover;
    }

}