body{
    font-family: "Yu Mincho";
    color: #735C48;
    font-weight: bold;
}

/*=========================================================================*/
/* ･･････ヘッダー部分･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.header{
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.header__logo{
    display: flex;
    line-height:60px;
}

.header__link{
    display: flex;
}

/* ････････････Element････････････ */

.header__logo-image{
    width: 60px;
}

.header__logo-title{
    font-size: 40px;
    padding: 0 10px;
    line-height:60px;
}

.header__logo-subtitle{
    font-weight: normal;
}

.header__link-item{
    width: 50px;
    margin: 5px;
}


/*=========================================================================*/
/* ･･････ナビゲーションリンク部分･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.nav__list{
    background-color: #84BF04;  /* ････････････変更････････････ */
    display: flex;
    text-align: center;
}

/* ････････････Element････････････ */

.nav__list a{
    display: block;
    text-decoration: none;
    color: white;
    font-size: 15px;
}

.nav__list a:hover {
    opacity: 0.7;
}

.nav__list:first-child{
    border-left: 0.5px solid #B5BF69;/* ････････････変更････････････ */
}

.nav__list-item{
    width: 25%;
    padding: 9px 0;
    border-right: 0.5px solid #B5BF69;/* ････････････変更････････････ */
}

.li_position{
    position: relative;
}

.nav-sublist{
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 10;
    display: none;
}

.nav-sublist-item{
    background-color: #84BF04;  /* ････････････変更････････････ */
    border-bottom: 0.5px solid #B5BF69;/* ････････････変更････････････ */
    padding: 8px 0;
}

.li_position:hover .nav-sublist{
    display: block;
    z-index: 10;
}



/*=========================================================================*/
/* ･･････メインページ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.main{
    background-color: #F2F2F0;/* ････････････変更････････････ */
}

/*=========================================================================*/
/* ･･････　あいさつ　･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.greeting__wrapper{
    background-color: white;
    width: 80%;
    margin: 0 auto;
    padding: 4rem 0; /* ････････････変更････････････ */
    text-align: center;
}

.greeting__contents{
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.greeting__contents-list{
    padding: 1rem;
    margin: 0 auto;
    width: 50%;
}


/* ････････････Element････････････ */

.greeting__title{
    width: 300px;
    margin: auto;
    padding: 0 0 1rem 0; /* ････････････変更････････････ */
    border-bottom:1px solid #BFAB99;
}

.greeting__image{
    width: 50%;
    margin: auto;
    padding: 2rem 0 1rem 0;
}

.greeting__name{
    padding: 1rem 0 ;
}

.greeting__name span{
    font-size: 25px;
}

.greeting__text{
    padding: 1rem 0;
    width: 80%;
    margin: 0 auto;
}

.greeting__contents-listItem:first-child{
    font-size: 17px;
    border-bottom: 1px solid rgb(128, 128, 128, 0.5);
}

.greeting__contents-listItem{
    text-align: left;
    line-height: 2rem;
}

.greeting__text-detail{
    text-align: right;
    padding: 2px 0;
}



/*=========================================================================*/
/* ･･････　スタッフ　･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.staff_wrapper{
    background-color: white;
    width: 80%;
    margin: 0 auto;
    padding: 4rem 0; /* ････････････変更････････････ */
    text-align: center;
}

.staff__contents-outer{
    display: flex;
    padding-top: 2rem;
}

.staff__contents{
    margin: 2rem;
    box-shadow: 0 5px 5px rgba(109, 107, 107, 0.32);
}

.staff__contents-list{
    width: 90%;
    padding: 2.5rem 0;
    margin: 0 auto;
}

/* ････････････Element････････････ */

.staff__title{
    width: 500px;
    margin: auto;
    padding: 0 0 1rem 0; /* ････････････変更････････････ */
    border-bottom:1px solid #BFAB99;
}

.staff__contents-name{
    padding: 1rem 0 0 0;
}

.staff__contents-name span{
    font-size: 20px;
}

.staff__contents-image{
    width: 40%;
    margin: 2rem auto;
}

.staff__contents-listItem{
    text-align: left;
    line-height: 2rem;
    font-size: 15px;
}

.staff__contents-listItem:first-child{
    font-size: 17px;
    border-bottom: 1px solid rgb(128, 128, 128, 0.5);
}



/*=========================================================================*/
/* ･･････ フッター ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.footer{
    width: 100%;/* ････････････変更････････････ */
    margin: auto;/* ････････････変更････････････ */
    background-color:rgb(255, 242, 205);
    background-color: #BFAB99;/* ････････････変更････････････ */
}

.footer__wrapper{
    width: 80%;
    margin: 0 auto;
    display: flex;
    padding: 3rem 0;
    justify-content: space-between;
}

.footer__wrapper-text{
    width: 50%;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.footer__wrapper-map{
    width: 45%;
    margin: 0 1rem;
}


/* ････････････Element････････････ */

.footer__wrapper-textList :first-child{
    font-size: 30px;
    padding: 15px 0;
}

.footer__wrapper-textList li{
    font-size: 15px;
    line-height: 35px;
    border-bottom: 0.5px solid rgb(82, 24, 24);
}

.footer_logo{
    display: block;/* ････････････変更････････････ */
    background-color: #84BF04;/* ････････････変更････････････ */
    padding: 0.1rem 0;/* ････････････変更････････････ */
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: normal;
    color: white;
    text-align: center;
}




